Show / Hide Table of Contents

Class DocumentClassificationModelMetrics

Metrics for Document Classification Model.

Inheritance
object
ModelMetrics
DocumentClassificationModelMetrics
Inherited Members
ModelMetrics.DatasetSummary
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 DocumentClassificationModelMetrics : ModelMetrics

Properties

LabelMetricsReport

Declaration
[Required(ErrorMessage = "LabelMetricsReport is required.")]
[JsonProperty(PropertyName = "labelMetricsReport")]
public List<DocumentClassificationLabelMetricsReport> LabelMetricsReport { get; set; }
Property Value
Type Description
List<DocumentClassificationLabelMetricsReport>

List of metrics entries per label.

Remarks

Required

OverallMetricsReport

Declaration
[Required(ErrorMessage = "OverallMetricsReport is required.")]
[JsonProperty(PropertyName = "overallMetricsReport")]
public DocumentClassificationOverallMetricsReport OverallMetricsReport { get; set; }
Property Value
Type Description
DocumentClassificationOverallMetricsReport
Remarks

Required

In this article
Back to top