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
2
votes
1 answer

Is there a best practice to deal with periods in LUIS training set and queries?

Some utterances I deal with are made from several sentences, and I have noticed that existence / non existence of periods are often changing the intent detected. For the sake of example - "Hi. I'd like to order." may result with different intent…
2
votes
1 answer

Can we use LUIS and Text Analytics API together

i need to develop a chat bot on azure for user interaction i have used LUIS and now want the bot to perform analyze the chat and suggest user the necessary changes. So, should i use text analytic API for it and does LUIS and text analytic API can be…
2
votes
1 answer

Difference between Phrase lists and list entities?

I have started working with Microsoft bot framework and LUIS. I have problem understanding difference between Phrase lists and list entities? Can you help me? Examples would be great. Thanks
Ilia Chigogidze
  • 2,055
  • 2
  • 10
  • 10
2
votes
2 answers

how can I get json data in to the c# object?

Below is my class for the json output: class PwdResetRequest { public class TopScoringIntent { public string intent { get; set; } public double score { get; set; } } public class Intent …
D.Prasad
  • 21
  • 2
2
votes
2 answers

Luis why im not getting normalized value entity

Can anybody explain me if my intent is with word vilniuje im getting vilniuje as entity and not vilnius? or how can i get vilnius instead of vilniuje? Im using node for that here is my code there im getiing entityt var cityEntity =…
Karolis
  • 21
  • 3
2
votes
2 answers

What is considered an endpoint hit/utterance?

In my LUIS dashboard there are currently 6 registered endpoint hits. Sometimes a connection from my own computer is considered an endpoint hit and occasionally the messages I sent to the bot end up under Review Endpoint Utterances. What triggers the…
robert
  • 187
  • 2
  • 10
2
votes
1 answer

LUIS entity not recognised

I trained my luis model to recognize an intent called "getDefinition" with example utterances such as: "What does BLANK mean" or "Can you explain BLANK to me?". It recognizes the intent correctly. I also added an entity called "topic" and trained it…
Sarthak Srivastava
  • 1,490
  • 3
  • 15
  • 33
2
votes
1 answer

How to track quota usage per end-user for LUIS service?

For a Microsoft Bot Framework app made using C#.NET I would like to track the usage of LUIS AI for each end user. I would like to know if there is any in-built option available in Azure, LUIS service, Application Insights, Microsoft Bot Framework…
2
votes
1 answer

Bot Framework and LUIS An error occurred while sending the request

I upgrade my bot framework to 3.13.0.3 and my LUIS dialog stop working. My bot start but when I write the word about the intent the bot show again the initial message and stay in this loop. I did verify the app ID and key, If I make a request to…
2
votes
1 answer

Bot builder Sdk is the only way to create chatbot with luis? how to add bot response in luis

I have created a agent in luis with entities and intents and I am unable to add bot response in luis as i can do it in Google API AI can I use luis directly from my node App ??
Techie
  • 19
  • 5
2
votes
1 answer

What happened to the regex features?

There used to be a feature in Luis called "Regex Features". You can still find it in google. Microsoft seems to have erased all evidence of it ever existing. Is it still supported in Luis? The Json for my Luis app still contains the regex features…
user8689373
  • 115
  • 1
  • 11
2
votes
1 answer

LUIS issues with special characters

(TEXT) is converted to ( TEXT ) in LUIS when we identify an entity name. Issues with special characters. Refer the image in below: Here monthly iq dashboard hospitalists is converted to reportname --> "monthly iq dashboard ( hospitalists )" in…
Suba
  • 21
  • 3
2
votes
3 answers

Is LUIS limited for use?

I have been receiving exception in my application saying Exception: Response status code does not indicate success: 403 (Quota Exceeded). Does this means we are only allowed 1000 hits per application per month on the LUIS? Anyother justification…
Sandip
  • 252
  • 2
  • 13
2
votes
2 answers

Call LUIS from FormFlow in C#

I am using the Microsoft bot framework to create a bot for questioning the user and then understanding the answer. The user is questioned using the FormFlow API in bot framework and answers are retrieved. Here is the code for the formflow: public…
2
votes
2 answers

Is there any common method which will hit all the intents in the LUIS Dialog?

I would like to know if anyone knows any way to call a custom method all the time whenever any Luis Intent method is invoked. Basically I am trying to add a loader message to user when a Bot is getting data from LuisDialog.
Sandip
  • 252
  • 2
  • 13