user9567546
user9567546

Reputation: 11

Entity detection in LUIS

LUIS does not seem to be good at recognizing entities from utterances that are fed to it. Specifically, if the entity marked in an utterance differs from the sentence that is actually invoked, it is unable to match the entity. For example, If I add an utterance to LUIS:

I want to know more about xyz.

In real world usage, I will replace xyz with some other word, like, say, I want to know more about bot framework. Or, I want to know more about dialogflow

In this case, LUIS is unable to detect 'bot framework' as the entity.

Is there any way around this? Specifically, can i get LUIS to identify the entity that the user has entered, if it does not match with the entity in the sample utterance?

If not, is there any other bot framework that handles this better?

Upvotes: 1

Views: 432

Answers (1)

Fei Han
Fei Han

Reputation: 27793

To make your LUIS app recognize intents and entities better, and improve your LUIS app's performance, you can try:

  • label more utterances and train LUIS for some of those values (bot framework, dialogflow etc)
  • use Phrase lists feature

Upvotes: 3

Related Questions