Show / Hide Table of Contents

Class KeyValueDetectionConfidenceEntry

Key Value Detection Confidence Entry.

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

Properties

Accuracy

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

accuracy under the threshold

Remarks

Required

F1Score

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

f1Score under the threshold

Remarks

Required

Precision

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

Precision under the threshold

Remarks

Required

Recall

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

Recall under the threshold

Remarks

Required

Threshold

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

Threshold used to calculate precision and recall.

Remarks

Required

In this article
Back to top