T
T
Taras Serevann2019-11-11 17:34:28
Search engines
Taras Serevann, 2019-11-11 17:34:28

How to implement an expert system / search engine on node.js with NLP?

The task is to make a chat bot - an expert system.
For example, the user writes:
- I have problems sleeping
- how to get rid of sleep problems
- I don't sleep well
The algorithm should understand that the answer "Solving problems with sleep" should be dropped from the database. How to correctly implement such a system?
It is planned to store about 1000 responses.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Ruslan., 2019-11-11
@LaRN

This is not an easy task.
First, you need to translate the request into a vector using something like
https://www.npmjs.com/package/word2vec
And then, using the resulting vector, find suitable topics in the database.
Google for word2vec...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question