Show / Hide Table of Contents

Class KeyValueDetectionOverallMetricsReport

Overall Metrics report for Key Value Detection Model.

Inheritance
object
KeyValueDetectionOverallMetricsReport
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 KeyValueDetectionOverallMetricsReport

Properties

ConfidenceEntries

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

List of key value detection confidence report.

Remarks

Required

DocumentCount

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

Total test documents in the label.

MeanAveragePrecision

Declaration
[Required(ErrorMessage = "MeanAveragePrecision is required.")]
[JsonProperty(PropertyName = "meanAveragePrecision")]
public float? MeanAveragePrecision { get; set; }
Property Value
Type Description
float?

Mean average precision under different thresholds

Remarks

Required

In this article
Back to top