Reputation: 83
Does Form Recognizer has the ablity to pre-select/pre-diffrentiate documents before they get worked over by the Form Recognizer recognition tool?
E.g. It would be able to diffrentiate between bills or notes and would only use the recognition tool for bills.
Upvotes: 0
Views: 919
Reputation: 312
As other answers had suggested, you could implement your own classifier. You could call the model, and exam the confidence score of return value, if it's too low, then it's not the document you want to process.
If you want to build 2 models, one for bills, one for notes, each model extract different sets of key/values, then Form Recognize team is working on a feature to find the most appropriate form for you, please stay tuned.
thanks
-xin (from MSFT Form Recognize Team)
Upvotes: 3
Reputation: 51
Azure Form recognizer is a cognitive service that uses machine learning technology to identify and extract text, key/value pairs and table data from form documents, whether they are PNG, JPEG, TIFF or PDF.
With Form recognizer, You cannot find the type of the document or differentiate document. You need to train any type of form before the extraction of data.
For the purpose of segregation, you have to use some other service/tool. For example, Azure Computer Vision service can be used to find the type of image.
Upvotes: 2
Reputation: 14609
No, that's not a feature from Form Recognizer.
You can implement your own classifier (for images documents) using Custom Vision for example
Upvotes: 1