I am working on a chat bot which uses LUIS and I have lots of entities in my project. Since LUIS is not identifying spelling mistakes and synonyms , we are working on adding these manually. But since this is a lot of manual effort, I wanted to know if there any smart way of generating synonyms and spelling mistakes for the list of entities I have added in my LUIS.
Can anyone let me know if you have any idea on this? Help here is much appreciated.
I would recommend using Machine Learned entities. Instead of trying to list out the entities and account for synonyms, you just tag the entities in the training utterances and it will learn to pick out those entities even if they are not in your training set. This doesn't work so well for misspellings because the spelling will not be corrected in the entity recognition.
Specifically for spelling, I would recommend using a Bing Search resource for spell checking. If you are using v2 of LUIS recognizer, you can add it directly into your definition like so.
If you are using v3 of LUIS recognizer, I believe you have to make an API call separately and return the spell-checked result to use in your call to LUIS.