Reputation: 845
I have developed a bot using Microsoft Azure Bot framework
but now I am trying to see if there is a way to see what were some of the utterances
that were missed/not mapped to an intent
. I tried to look around but couldn't find anything related to this. Is it possible to see the log of missed utterances
?
Upvotes: 1
Views: 338
Reputation: 8292
LUIS provides a feature called Active Learning where it tracks utterances it is relatively unsure of, and places them in a list called Suggested Utterances. More information can be found here: https://learn.microsoft.com/en-us/azure/cognitive-services/luis/label-suggested-utterances
In the active learning process, LUIS examines all the utterances that have been sent to it, and calls to your attention the ones that it would like you to label. LUIS identifies the utterances that it is relatively unsure of and asks you to label them. Suggested utterances are the utterances that your LUIS app suggests for labeling.
Upvotes: 0
Reputation: 14787
There is no built-in capability in Bot Framework
or LUIS
for this. You will have to log the utterances that go through the None
intent somewhere or use some analytics service like (App Insights) to get the information you are looking for.
Some initial information at https://learn.microsoft.com/en-us/bot-framework/portal-analytics-overview
Upvotes: 1