tensorlayer / seq2seq-chatbot

Chatbot in 200 lines of code using TensorLayer

Home Page:https://github.com/tensorlayer/tensorlayer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to train my own data

DhruvMevada opened this issue · comments

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

commented

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.

Either programming or data preparation.

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

commented

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