Class DocumentClassificationResult<T>
- Namespace
- AiDotNet.Document.Interfaces
- Assembly
- AiDotNet.dll
Result of document classification.
public class DocumentClassificationResult<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
DocumentClassificationResult<T>
- Inherited Members
Properties
Confidence
Gets or sets the confidence score as generic type.
public T Confidence { get; set; }
Property Value
- T
ConfidenceValue
Gets or sets the confidence score as double.
public double ConfidenceValue { get; set; }
Property Value
PredictedCategory
Gets or sets the predicted document category.
public string PredictedCategory { get; set; }
Property Value
ProcessingTimeMs
Gets or sets the processing time in milliseconds.
public double ProcessingTimeMs { get; set; }
Property Value
TopPredictions
Gets or sets the top-K predictions with their scores.
public IList<(string Category, double Score)> TopPredictions { get; set; }