Exam AI-102 All QuestionsBrowse all questions from this exam
Question 200

HOTSPOT

-

You have an Azure subscription that contains an Azure AI Document Intelligence resource named DI1.

You build an app named App1 that analyzes PDF files for handwritten content by using DI1.

You need to ensure that App1 will recognize the handwritten content.

How should you complete the code? To answer, select the appropriate options in the answer area.

    Correct Answer:

Discussion
Mehe323

The first answer should be read: Read OCR - Extract print and handwritten text including words, locations, and detected languages. https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/concept-model-overview?view=doc-intel-4.0.0

AlviraTony

Prebuilt-read is correct which can classify the test extracted as handwrittern or printed

Murtuza

The given answers by exam topics is CORRECT

audlindr

Reference: https://learn.microsoft.com/en-us/dotnet/api/overview/azure/ai.formrecognizer-readme?view=azure-dotnet#use-the-prebuilt-general-document-model

Harry300

why document and not the read model? the code appears in both examples on that website

Mehe323

It is read: Read OCR - Extract print and handwritten text including words, locations, and detected languages. https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/concept-read?view=doc-intel-4.0.0

krzkrzkra

1. "prebuilt-document" 2. 0.75

reiwanotora

1. "prebuilt-document" 2. 0.75

rookiee1111

prebuilt-read that is the correct one https://learn.microsoft.com/en-gb/training/modules/use-prebuilt-form-recognizer-models/3-use-general-document-read-layout-models

Murtuza

It appears that the code snippet you’ve provided is in C#. Let’s break it down You’re iterating through the DocumentStyle objects within the result.Styles You’re invoking an AnalyzeDocumentOperation from an AnalyzeDocumentFromUriAsync method call. The operation is awaited until completion For each style, you’re checking if it’s handwritten (based on the IsHandwritten property) and if its confidence level is greater than 0.1