LUIS Application for Music Festival

Which act is playing on the main stage?

Question

You are authoring a Language Understanding (LUIS) application to support a music festival.

You want users to be able to ask questions about scheduled shows, such as: 'Which act is playing on the main stage?'

The question 'Which act is playing on the main stage?' is an example of which type of element?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

B

Utterances are input from the user that your app needs to interpret.

https://docs.microsoft.com/en-us/azure/cognitive-services/LUIS/luis-concept-utterance

The question, "Which act is playing on the main stage?" is an example of an utterance.

An utterance is a spoken or written statement that is processed by a natural language processing (NLP) system like LUIS. Utterances can be in the form of questions, commands, or statements, and they are used to train the NLP model to recognize different intents and entities.

In the case of the music festival LUIS application, the intent is the user's overall goal or objective when asking the question, and the entity is the specific piece of information that the user is asking for (in this case, the act playing on the main stage). The intent for this utterance might be something like "Get show information," while the entity might be "main stage" or "act."

To train LUIS to recognize different intents and entities, you would provide a set of example utterances that cover different variations and ways of asking the same question. LUIS uses machine learning algorithms to analyze these example utterances and determine the most likely intent and entity for each one. Once the model is trained, it can be used to recognize new utterances and provide appropriate responses based on the user's intent and entity.