Search code examples
azureocrazure-cognitive-servicesazure-form-recognizer

Azure | Form Recognizer pre selection of documents?


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.


Solution

  • 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)