AI-102 Question 401
Select 3You are tasked with automating the process of extracting specific information, such as invoice numbers, customer names, and total amounts, from a large set of scanned invoices. You decide to use Azure Form Recognizer. Which of the following steps should you take to achieve this using prebuilt models?
- A
Use the prebuilt Invoice model in Azure Form Recognizer.
- B
Manually label all the scanned invoices and train a custom model in Azure Form Recognizer.
- C
Upload the scanned invoices to Azure Blob Storage and connect Azure Form Recognizer to the storage account.
- D
Send the scanned invoices to the prebuilt Receipt model in Azure Form Recognizer.
- E
Analyze the results returned by the prebuilt Invoice model to extract the required information.
Show answer and explanation
Correct answers: A, C, E
Explanation
Azure Form Recognizer offers prebuilt models like the Invoice model, which is purpose-built for extracting data from invoices. By uploading the scanned invoices to Azure Blob Storage and connecting Form Recognizer to the storage account, you can efficiently process a large set of documents. Finally, analyzing the results from the prebuilt Invoice model ensures you can extract the required fields accurately without the need for custom model training.
- A. Correct.
The prebuilt Invoice model is specifically designed to extract common fields from invoices, such as invoice numbers, dates, and totals. This is the correct model to use for this task.
- B. Incorrect.
Manually labeling and training a custom model is not necessary when using prebuilt models, as they are already trained for specific document types like invoices.
- C. Correct.
Azure Form Recognizer can process documents stored in Azure Blob Storage. To use the service efficiently with a large set of documents, connecting to Azure Blob Storage is a best practice.
- D. Incorrect.
The prebuilt Receipt model is designed for extracting information from receipts, not invoices. Using this model would not provide the desired results for invoice data extraction.
- E. Correct.
The results from the prebuilt Invoice model must be analyzed to extract the specific fields of interest, such as invoice numbers, customer names, and total amounts.