The LUIS has been a great tool. We started to set out to write a chatbot and we wanted to consume LUIS services. We want LUIS to identify various Microsoft Products from a given text.
Let's say, I want LUIS to identify sharepoint 2010
, sharepoint 2013
, visual studio 2013
, visual studio 2010" etc as Technology Products. We tried adding "Products" feature and added coma separated values as shown above. However the model sticks to only sharepoint
, visual
- basically single word. It is not able to identify the phrase.
After training with some data, it is able to identify sharepoint
and visual
as Technology (entity) however, the whole phrase as needed is not working.
Then we switched over to simple RegEx also with this (SharePoint)\s*(2013|2007|2010)
very straight forward. It is still not able to identify it as a single phrase.
Can somebody help me with this?