Concepts
Confidence Score
Each field in the response will have two attributes:
- value: The extracted value of the field.
- conf_score: A confidence score ranging from 0 to 1, representing the model's confidence in the extracted value.
Example:
{
"totalAmount": {
"value": 45.99,
"conf_score": 0.98
}
}In this structure, the totalAmount key has two components:
value: Contains the actual parsed value (45.99as a float).conf_score: Contains the confidence score (0.98).