Class DocumentClassificationConfidenceEntry
Confidence Entry.
Inherited Members
Namespace: Oci.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
public class DocumentClassificationConfidenceEntry
Properties
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