Misleading Naming on Recognizers
See original GitHub issue@anastasiia-zolochevska As with the Node SDK, you can use the LUIS recognizer and Regex recognizer as middleware or just inline:
_luis = new LuisRecognizerMiddleware(
this.Configuration["MICROSOFT_LUIS_APP_ID"],
this.Configuration["MICROSOFT_LUIS_APP_PASSWORD"]);
}
var intents = await _luis.Recognize(context);
In Node, this is fairly clear because the recognizer is just called LuisRecognizer
, and samples show it being used as middleware. In C#, calling the recognizer LuisRecognizerMiddleware
implies that it’s only a piece of middleware. Several developers have been under the impression that the only way to use LUIS is to call the raw endpoint.
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (8 by maintainers)
Top Results From Across the Web
What's in a Name? The Perils of Using Name-Based ...
We found that gender recognition algorithms are prone to misgendering individuals, particularly women, trans people, nonbinary people, people ...
Read more >False recall and recognition of brand names increases ...
The present study investigates the effect of a week's delay on false memories for brand names. Participants were presented with lists of brand ......
Read more >Defective recognition and naming of famous people from ...
Defective recognition and naming of famous people from voice in patients with unilateral temporal lobe tumours.
Read more >The Problem of Global Name Recognition in E-Discovery
The result is a reduction in false positives and negatives in discerning targeted individuals. In this connected world it would be wise for...
Read more >How important is the name in predicting false ... - APA PsycNET
... false recognition rates. Contrary to the judicial assumption participants largely ignored the brand names when making their decisions based on memory.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@ryanvolum totally agree with your points. The luis middleware is actually using the luis NuGet package which is why the client isn’t in our source code. I think having the middleware expose a recognizer might be too confusing and we maybe need to look to separate the two out so that the middleware simply uses a recognizer behind the scenes. Not an easy one.
Closing, as the LUIS PRs and other recognizer code has changed to be unrecognizable from when this was filed.