Questions tagged [azure-language-understanding]

Questions about Language Understanding Intelligence Service (LUIS), an API within Microsoft Cognitive Services that teaches your apps to understand commands from your users.

Language Understanding Intelligence Service (LUIS) is part of Microsoft Cognitive Service that understands language contextually, so your app can communicate with people in the way they speak. Create a model customized to your domain and use natural language processing to train in a matter of minutes.

LUIS models can be used on any device because your models are deployed to a personal HTTP endpoint with one click. To learn more about LUIS, visit the Microsoft Cognitive Services website and create your free account at http://luis.ai.

1375 questions
3
votes
2 answers

LUIS - microsoft cognitive services phrase list feature to identify phrases as Entities

The LUIS has been a great tool. We started to set out to write a chatbot and we wanted to consume LUIS services. We want LUIS to identify various Microsoft Products from a given text. Let's say, I want LUIS to identify sharepoint 2010, sharepoint…
3
votes
1 answer

How can i go back to previous user conversation once i click the back button In Confirmation Dialog?

I am currently working on Bot framework technology, in one of my project I want to go back to the user conversation once I click the back button in FORM like this below figure. I know when user enter back in bot framework emulator it will go back…
Pradeep
  • 5,101
  • 14
  • 68
  • 140
3
votes
1 answer

LUIS builtin.number entity parsing

I am looking to integrate LUIS in my bot and one of the elements I need is a number, so naturally I wanted to use the builtin.number entity. I quickly discovered that while the entity is recognized, the output it provides is still a string value…
AlexDrenea
  • 7,981
  • 1
  • 32
  • 49
3
votes
1 answer

entities-only intents in NLP engines (LUIS/Wit/others)?

Say I need to build a simple order status bot. I wonder whats the best way to form the intents: I could have 2 intents like this a. "Hi, I'd like to know the status of my order", "where's my order" etc. - intent QuerySTatus b. "Joe Levi,…
Lior
  • 40,466
  • 12
  • 38
  • 40
3
votes
2 answers

Parse LUIS builtin.datetime.date

I have built a Luis model, and I have encountered issues parsing the builtin.datetime.date for an entry like "this weeked" returns 2016-W20-WE (or something similar) which doesnt parse successfuly using DateTime.Parse. I came across this post which…
Matt Evans
  • 7,113
  • 7
  • 32
  • 64
3
votes
0 answers

LUIS Speech OnIntent event does not fire (projectoxford.ai)

Getting the SpeechIntent from voice never works (Even in given source code). How to reproduce - Steps. In ProjectOxford.ai sample programs, download the "SpeechToText-WPF-Sample". In www.projectoxford.ai, login with your Hotmail id and get…
Venkat
  • 1,105
  • 1
  • 8
  • 12
2
votes
0 answers

How does CLU automatically split utterances?

CLU can automatically split the utterances into a training set and a testing set. But how does it decide what utterances go into which set? At first I thought it would choose at random. But when I ran multiple training jobs the resulting scores were…
Martijn
  • 739
  • 9
  • 26
2
votes
1 answer

Bot Framework LUIS ignore specific words

I'm using Bot Framework Composer v2.1.2 and I created an intent "Cancel" with following trigger phrases: cancel quit abort exit never mind forget about it back However during conversations when user is answering multiple choice questions (yes/no)…
2
votes
1 answer

LUIS refresh dispatch programmatically

I have an application that uses QNA APIs to add FAQs to a specific KB that is connected to a dispatch app. When the user create FAQ from my applications it is not added to the dispatch app unless I manually run the command dispatch refresh Is there…
2
votes
2 answers

LUIS gives 403 error “Out of call volume quota.” when testing in portal with using Authoring Resource F0

As I am trying to test LUIS app, it is throwing 403 error with this message:"Out of call volume quota for LUIS.Authoring F0 pricing tier. Please retry after 9 days. To increase your call volume switch to a paid tier." I am using the Azure Authoring…
2
votes
1 answer

LUIS Portal - Review endpoint utterances : Delete suggestion fails

I am running into errors in the LUIS portal and I'm not sure what is causing them. Whenever I try to delete some utterances from the "Review endpoint utterances" page for my app, it's failing for many of them (see attached screenshot). I have…
2
votes
1 answer

Adding the Adaptive Card JSON to the bot script - C#

I am new to Bot Framework and just started using the Echo Bot example using C# . However, in the end, I want to integrate my bot to Teams channel and one of the dialogue flow will need to consolidate information from multiple API and send it to the…
2
votes
2 answers

Train microsoft LUIS to differentiate don't want and want

Suppose we have an utterance like I don't want a car but I want a bike. We would have an entity list having 'Car and bike' to find out the model the user wants or not. However, how shall we determine entity for DON'T WANT and WANT. How do we know…
2
votes
2 answers

How do you identify questions that the bot could not answer

My organisation is starting to experiment with the Microsoft bot framework. One of the questions our enterprise architect has asked is as follows: How do we identify questions that the bot was unable to answer? I've checked the documentation but I'm…
2
votes
1 answer

What is the difference of a machined learned entity with a list entity constraint vs using a list entity itself when using LUIS NLU entities?

In the v3 api for building LUIS apps I notice an emphasis on Machined learned entities. When working with them I notice something that concerns me and I was hoping to get more insight into the matter. The idea is that when using a machined…