Show / Hide Table of Contents

Class DatasetSummary

Summary of count of samples used during model training.

Inheritance
object
DatasetSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
public class DatasetSummary

Properties

TestSampleCount

Declaration
[JsonProperty(PropertyName = "testSampleCount")]
public int? TestSampleCount { get; set; }
Property Value
Type Description
int?

Number of samples used for testing the model.

TrainingSampleCount

Declaration
[JsonProperty(PropertyName = "trainingSampleCount")]
public int? TrainingSampleCount { get; set; }
Property Value
Type Description
int?

Number of samples used for training the model.

ValidationSampleCount

Declaration
[JsonProperty(PropertyName = "validationSampleCount")]
public int? ValidationSampleCount { get; set; }
Property Value
Type Description
int?

Number of samples used for validating the model.

In this article
Back to top