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

How does the intent in luis work?

How does it actually work for the intent ? cause in my program i have more than 5 intents and it just shows if i test "hello" it say 0.20 in welcome while the other is just 0 and some have 0.01 or other and adding all of them up doesn't reach 1.0,…
user3646742
  • 199
  • 12
-1
votes
2 answers

use case for LUIS (Microsoft Cognitive Service)

we want to use LUIS to get the entities and intent from a user question and identify the entities that belong to our domain, so what we're doing is training LUIS with a lot of entities that comes from our context domain. Is this a valid and…
-1
votes
1 answer

LUIS rest api only returning one entity

I'm new in using LUIS in azure and it's working fine so far. I've mapped an hierarchical entitiy (employee) with it's two children (firstname, lastname) to all utterances of an intents. So far so good. If I use the test tool on the upper right side…
-1
votes
2 answers

Scripting for LUIS and QNA Maker

We are planning to do scripting for updating the LUIS and QNA Maker for Dev/testing/production environment. Is there any possibility of doing it in the current version of LUIS and QNA Maker?
-1
votes
1 answer

Inconsistent Intent Classification and Score Prediction in 2 LUIS models with same utterances

We are trying to move LUIS model from Dev to Testing environment. But we are facing a challenge where in after moving the LUIS model, the confidence produced by LUIS for each intent, for a given utterance is different in both the models. That is,…
-1
votes
1 answer

Bot Framework LUIS and QNA integration

We are building a chat bot with LUIS and QNA in c#. The approach is like when nointent is reached in LUIS it will invoke QNA maker and try to see if the asked question is available there or not . But if QNA mathes the asked question with multiple…
user8662086
-1
votes
1 answer

Cannot select multiple words to create an entity on

I am not able to select multiple words when creating an entity from an intent utterance. I've tried in both Chrome and Edge. This is all I can find on the…
Kevin D.
  • 143
  • 8
-1
votes
1 answer

LUIS Pre-Built Domains missing Utilities

The documentation for LIUS pre-built domains says there is a domain called "Utilities" https://learn.microsoft.com/en-us/azure/cognitive-services/luis/luis-reference-prebuilt-domains#list-of-prebuilt-domains However, when searching from the "Add…
Kevin D.
  • 143
  • 8
-1
votes
2 answers

to recognize name of person with prebuilt entities in luis

I have created a new Intent in luis App And i gave a sample example as I am john smith how can we get or recognize name of any person(john smith) in luis
Techie
  • 19
  • 5
-1
votes
1 answer

C# bot framework exception seem to be not handled properly between the emulator and the web chat test on the botframework website

So far I have the following code to be used to check whether a LUIS JSON response contains a entity or not public static class StatusHelper { public static bool EntityCheck(LuisResult result) { try { var…
-1
votes
1 answer

Modifying builtin LUIS "datetimeV2' intent

Wondering if there is a way to extend the DateTime built-in feature of LUIS. While it handles "before" well, it doesn't seem to handle off versions like "preceding" or "in advance of" but I can't seem to get into the built-in DateTime to…
-1
votes
1 answer

How to unable Enable bing spell checker in Luis?

I am facing the issue with the spell checker option in LUIS, As i am checked it and published. When i see again its showing as unchecked. I had purchased Bing spell check key too. Please help me with this...
Samadhan
  • 389
  • 1
  • 5
  • 18
-1
votes
1 answer

LUIS Timex Date

I've trying to get the date from LUIS response which comes in a timex key, but I only have managed to get to the list and unable to typecast it back to dictionary. Is there a way to get to the key-value pair. private const string EntityCustomerID =…
user6083088
  • 1,047
  • 1
  • 9
  • 27
-1
votes
1 answer

What is the List entity count(x/50) in Luis apart from Entity count?

In LUIS AI tool there is a "list entity count" shown. What is it actually?
Gp_1993
  • 89
  • 11
-1
votes
1 answer

How to connect the data retrieved from SQL database in activity method to luis intent and display the data using luis intent

I want to connect the data retrieved from SQL database in activity method to luis intent and display the data using luis intent. What should I add in my Luis intent in SimpleLUISDialog.cs to display the data in database after I type in the…
Xian Jun
  • 39
  • 4