Contains information regarding predicted values returned by Amazon Textract operations, including the predicted value and the confidence in the predicted value.

interface Prediction {
    Confidence?: number;
    Value?: string;
}

Properties

Properties

Confidence?: number

Amazon Textract's confidence in its predicted value.

Value?: string

The predicted value of a detected object.