Forum Discussion
Jenkins NS
Apr 05, 2017MCT
Natural language processing with SharePoint search
Hello All, In my current development, my customer looking for a natural language processing search result. Example: I have two list one have products and other have availability and region. ...
Rajesh Sitaraman
Apr 05, 2017Brass Contributor
I don't think there is a possibility for this with, out of the box configuration but you can build it in a custom way.
- Use Microsoft cognitive service LUIS (Language understanding intelligent service) and create a model
- You need train the model to break intent and entities, for example in your query - Is laptop available in England - where "available" is your intent and laptop and England are entities
- Once you have intent and entities then it will be easy to use the search APIs against appropriate managed properties
Jenkins NS
Apr 19, 2017MCT
Thanks Rajesh sitaraman