RecognizedForm Class
Represents a form that has been recognized by a trained or prebuilt model. The fields property contains the form fields that were extracted from the form. Tables, text lines/words, and selection marks are extracted per page and found in the pages property.
New in version v2.1: The form_type_confidence and model_id properties, support for to_dict and from_dict methods
- Inheritance
-
builtins.objectRecognizedForm
Constructor
RecognizedForm(**kwargs)
Variables
- form_type
- str
The type of form the model identified the submitted form to be.
- form_type_confidence
- str
Confidence of the type of form the model identified the submitted form to be.
- model_id
- str
Model identifier of model used to analyze form if not using a prebuilt model.
A dictionary of the fields found on the form. The fields dictionary keys are the name of the field. For models trained with labels, this is the training-time label of the field. For models trained without labels, a unique name is generated for each field.
- page_range
- FormPageRange
The first and last page number of the input form.
A list of pages recognized from the input document. Contains lines, words, selection marks, tables and page metadata.
Methods
from_dict |
Converts a dict in the shape of a RecognizedForm to the model itself. |
to_dict |
Returns a dict representation of RecognizedForm. |
from_dict
Converts a dict in the shape of a RecognizedForm to the model itself.
from_dict(data: dict) -> azure.ai.formrecognizer._models.RecognizedForm
Parameters
Returns
RecognizedForm
Return type
to_dict
Feedback
Submit and view feedback for