AI-102 Exam QuestionsBrowse all questions from this exam

AI-102 Exam - Question 119


You are building a Language Understanding model for an e-commerce platform.

You need to construct an entity to capture billing addresses.

Which entity type should you use for the billing address?

Show Answer
Correct Answer: B

B

A regular expression entity extracts an entity based on a regular expression pattern you provide. It ignores case and ignores cultural variant. Regular expression is best for structured text or a predefined sequence of alphanumeric values that are expected in a certain format. For example:

Incorrect Answers:

C: The prebuilt geographyV2 entity detects places. Because this entity is already trained, you do not need to add example utterances containing GeographyV2 to the application intents. GeographyV2 entity is supported in English culture.

The geographical locations have subtypes:

D: Pattern.any is a variable-length placeholder used only in a pattern's template utterance to mark where the entity begins and ends.

E: A list entity represents a fixed, closed set of related words along with their synonyms. You can use list entities to recognize multiple synonyms or variations and extract a normalized output for them. Use the recommend option to see suggestions for new words based on the current list.

Reference:

https://docs.microsoft.com/en-us/azure/cognitive-services/luis/luis-concept-entity-types

Discussion

17 comments
Sign in to comment
ExamPrep2021Option: A
Jun 8, 2021

My guess is A. An ML entity can be composed of smaller sub-entities, each of which can have its own properties. For example, Address could have the following structure: Address: 4567 Main Street, NY, 98052, USA Building Number: 4567 Street Name: Main Street State: NY Zip Code: 98052 Country: USA

MarceloManhaes
Jul 4, 2024

I agree it is clear that is ML entity, the sample above is on the URL https://learn.microsoft.com/en-us/azure/ai-services/LUIS/concepts/entities

LKLK10Option: A
Jun 13, 2021

ML. Answer is A

azurelearner666
Jun 30, 2021

Right! (the correct response is A, Machine Learned) See https://docs.microsoft.com/en-us/azure/cognitive-services/luis/luis-concept-entity-types It is a Machine Learned Entity (check ML Entity with Structure in the link, as it is an Address example… )

ap1234paOption: A
Jan 17, 2023

Wherever it is address it is ML

David_mlOption: A
Oct 19, 2022

A is correct

EliteAllenOption: C
Jun 14, 2023

C. geographyV2 The geographyV2 prebuilt entity in Language Understanding (LUIS) is designed to recognize and label entities that are geographical locations, such as city, state, or country. This would be suitable for capturing billing addresses in an e-commerce platform.

M25
Sep 1, 2023

https://learn.microsoft.com/en-us/azure/ai-services/luis/luis-reference-prebuilt-geographyv2?tabs=V3 The prebuilt geographyV2 entity detects places. The geographical locations have subtypes: poi point of interest city name of city countryRegion name of country or region continent name of continent state name of state or province I guess you could charge a bill for the Statue of Liberty on Ellis Island as a (fixed) “poi”, but a more generalized rule would rather look for an Address entity with sub-entities (variable) as an ML Entity with Structure type

omankomanOption: A
May 29, 2024

ML Entity with Structure An ML entity can be composed of smaller sub-entities, each of which can have its own properties. For example, an Address entity could have the following structure: Address: 4567 Main Street, NY, 98052, USA Building Number: 4567 Street Name: Main Street State: NY Zip Code: 98052 Country: USA

zellckOption: A
Jun 29, 2023

A is the answer. https://learn.microsoft.com/en-us/azure/cognitive-services/LUIS/concepts/entities#machine-learned-ml-entity Machine learned entity uses context to extract entities based on labeled examples. It is the preferred entity for building LUIS applications. It relies on machine-learning algorithms and requires labeling to be tailored to your application successfully. Use an ML entity to identify data that isn’t always well formatted but have the same meaning. An ML entity can be composed of smaller sub-entities, each of which can have its own properties. For example, an Address entity could have the following structure: Address: 4567 Main Street, NY, 98052, USA Building Number: 4567 Street Name: Main Street State: NY Zip Code: 98052 Country: USA

zellck
Jun 29, 2023

Same as Question 7. https://www.examtopics.com/discussions/microsoft/view/60239-exam-ai-102-topic-3-question-7-discussion

ExamDevOption: A
Sep 12, 2023

Correct answer is A

jakespeedOption: A
Oct 5, 2023

ML Entity with Structure An ML entity can be composed of smaller sub-entities, each of which can have its own properties. For example, an Address entity could have the following structure: Address: 4567 Main Street, NY, 98052, USA Building Number: 4567 Street Name: Main Street State: NY Zip Code: 98052 Country: USA

rdemontisOption: A
Nov 4, 2023

duplicated question https://learn.microsoft.com/en-us/azure/ai-services/LUIS/concepts/entities

evangelistOption: A
Jan 27, 2024

Given these options, A. Machine Learned is the most appropriate choice for capturing billing addresses. Billing addresses are complex entities with a lot of variability in their format and structure. A machine-learned entity is capable of understanding and extracting such complex information from natural language inputs, which makes it suitable for this purpose. It can learn from examples and capture the billing address as an entity based on the context in which it appears, which is essential for handling the wide range of ways in which addresses can be presented.

nanaw770Option: A
May 24, 2024

A is right answer.

reigenchimpoOption: A
Jun 12, 2024

I know you don't know what I'm talking about, but if you think as Crossroads leads you, the answer is A.

etellezOption: D
Jun 14, 2024

Copilot says Pattern.any The Pattern.any entity type is designed to capture free-form text, which makes it suitable for capturing billing addresses that can come in various formats. It uses pattern matching to predict and extract data.

HaraTadahisaOption: A
Jun 22, 2024

I say this answer is A.

krzkrzkraOption: A
Jul 14, 2024

Selected Answer: A