suriyadeepan / practical_seq2seq

A simple, minimal wrapper for tensorflow's seq2seq module, for experimenting with datasets rapidly
http://suriyadeepan.github.io/2016-12-31-practical-seq2seq/
GNU General Public License v3.0
569 stars 270 forks source link

How to convert this chat bot to technical bot ? #8

Closed phpmind closed 7 years ago

phpmind commented 7 years ago

Hi suriyadeepan,

How can i use this chat bot to query from the database on demand and based on show result.

Basically, I am looking for something like API.AI like feature, where I can add intend and entities and based on that i can query.

Can you please guide me?

Thanks

suriyadeepan commented 7 years ago

You can't. Generative chatbots are still in experimental phase. A retrieval-based model is what you are looking for.

phpmind commented 7 years ago

suriyadeepan@ I agree with you but if you look at API.AI, WIT.AI and MicrosoftBot they all have some kind of features to convert chat bot into any tech bot. A limitation is they store data customer and in my case, it is not possible to use them.

chatterbot is another example but chatterbot is not using seq2seq or either tensorflow.

http://chatterbot.readthedocs.io/en/stable/

Thanks