I am working with Microsoft LUIS and things are going smoothly for well defined interactions (i.e., closed lists). I have the use case for a simple feedback bot. The utterance would look simply like, 'my feedback is {whatever they say}'. How would one define things in LUIS for a feedbackIntent such that the extracted entity value is that free form spoken text? Google's api.ai has @sys.any and AWS Lex addresses this fundamental case as well.
luis intent with free form entity handling
121 Views Asked by john At
1
There are 1 best solutions below
Related Questions in ENTITY
- JPA, Hibernate can I do composite primary key which one element is foreign kay @OneToMany?
- PostGreSQL - Entity insert - Dduplicate key value violates unique constraint
- Return more that one entity in RESTful response?
- Zf2 entity create a custom filters
- Missing Foreign Keys when mapping Child Entities from JSON / How to generate them?
- Find where row value is inside a list
- Specify entity name while generating from existing database table symfony2
- Symfony update managed Entity elsewhere
- Doctrine persist entity with inverse relation not work
- Symfony 2 value on Enitty field
- Symfony2 - Find by a parent property object
- Create random falling objects in unity C#
- Multiple behaviours for single entity
- Java Jpa Query searching an Entityes Related By Id
- Check if my query not return entity
Related Questions in AZURE-LANGUAGE-UNDERSTANDING
- How to detect relationships using Microsoft Cognitive services?
- MS Luis.ai | Maximum number of utterances per intent/app
- Can I create and deploy Microsoft bot with LUIS but without azure services?
- Microsoft Bot Framework, LUIS, take some action when the message dont have a intent
- Multiple forms in Microsoft bot framework
- How to Resolve this issue "Could not find a stock quote for GOOGL or some other company names"
- Luis Pre-built Entities geography not working with countrys
- Cannot publish my LUIS application
- How to use LUIS None Intent in c# without train utterance at LUIS
- How to have LuisRecognizer with a separate model for each language
- Using hierarchical entity as an action filter in LUIS
- luis intent and entity detection of slack data into chat bot
- Trigger action in LUIS using same entity more than once
- Programatically create, train and publish a LUIS model
- Best way to identify product number using LUIS with Microsoft Bot Framework
Related Questions in FREEFORM
- Boot up in Free form mode for android O
- Freeform window animation issue while toggle to fullscreen mode in Android R
- App Launching in Corner For FreeFormWindow Support
- Is Android's freeform app multi-window mode supported on Android Automotive OS?
- python NLP parsing unstructured data
- VBA to check if object is inside or outside of freeform area
- how to determine a freeform shape is an open or closed contour?
- MicroStrategy: Creating a table from multiple count(metrics) from different datasets
- Talend Sqoop is split my free form queries into different varibale
- luis intent with free form entity handling
- Mapping freeform XML/JSON to Moxy/JAXB annotated class
- Freeform Reporting tool
- How to accès HTML data-attribute with Twig?
- How to generate freeform rdlc reports with one page per row
- Removing duplicates from dropdown using javascript
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I was having issues highlighting multiple words in the GUI for some reason. I could have likely tagged things via the REST API. Anyway it looks like the following is working toward the right combination. I added a custom built in entity of Communication.Message and then had utterances like 'the feedback is foobar' where foobar was tagged as a Communication.Message entity. I have variations like 'I think foobar' etc.