tensorlayer / seq2seq-chatbot

Chatbot in 200 lines of code using TensorLayer
https://github.com/tensorlayer/tensorlayer
836 stars 315 forks source link

how to train my own data #4

Open DhruvMevada opened 6 years ago

DhruvMevada commented 6 years ago

How any I chane the dataset . Can I take the dataset of mine rather then twitter data & corpus movie data if yes then how?

zsdonghao commented 6 years ago

hi, if you like to train your own data, you should make sure the data import to python script have the same format with the twitter data we are using.

Alternatively, you can prepare the file with the same format with twitter data, and import it to the python program in the same way.

wagamamaz commented 6 years ago

Either programming or data preparation.

vishal2612200 commented 6 years ago

DhruvMevada you can train your chatbot on your data also,for that purpose you have to do data preprocessing before training your chatbot. you have to make the use of field separator in your data for separating the text from ID's . your data should be in csv format.And please do data cleaning on your data to get the best result for example you can see my respository also to see how data preprocessing is done while using data in chatbot

jessedoka commented 3 years ago

@zsdonghao What format would the data be in. I have comments in one file and replies in the other file.