├── .gitignore ├── README.md ├── chat.py ├── config ├── all-dialogs.yml ├── check_tiny.yml ├── cornell-movie-dialogs.yml └── twitter-dialogs.yml ├── data └── tiny_processed_data │ ├── test_ids.dec │ ├── test_ids.enc │ ├── train_ids.dec │ ├── train_ids.enc │ └── vocab ├── data_loader.py ├── hook.py ├── main.py ├── model.py ├── requirements.txt ├── scripts ├── prepare_Cornell_Movie-Dialogs_Corpus.sh └── prepare_Twitter-Dialogs_Corpus.sh ├── seq2seq_attention ├── __init__.py ├── decoder.py └── encoder.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/chat.py -------------------------------------------------------------------------------- /config/all-dialogs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/config/all-dialogs.yml -------------------------------------------------------------------------------- /config/check_tiny.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/config/check_tiny.yml -------------------------------------------------------------------------------- /config/cornell-movie-dialogs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/config/cornell-movie-dialogs.yml -------------------------------------------------------------------------------- /config/twitter-dialogs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/config/twitter-dialogs.yml -------------------------------------------------------------------------------- /data/tiny_processed_data/test_ids.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/data/tiny_processed_data/test_ids.dec -------------------------------------------------------------------------------- /data/tiny_processed_data/test_ids.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/data/tiny_processed_data/test_ids.enc -------------------------------------------------------------------------------- /data/tiny_processed_data/train_ids.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/data/tiny_processed_data/train_ids.dec -------------------------------------------------------------------------------- /data/tiny_processed_data/train_ids.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/data/tiny_processed_data/train_ids.enc -------------------------------------------------------------------------------- /data/tiny_processed_data/vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/data/tiny_processed_data/vocab -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/data_loader.py -------------------------------------------------------------------------------- /hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/hook.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | hb-config 2 | nltk 3 | tqdm 4 | requests -------------------------------------------------------------------------------- /scripts/prepare_Cornell_Movie-Dialogs_Corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/scripts/prepare_Cornell_Movie-Dialogs_Corpus.sh -------------------------------------------------------------------------------- /scripts/prepare_Twitter-Dialogs_Corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/scripts/prepare_Twitter-Dialogs_Corpus.sh -------------------------------------------------------------------------------- /seq2seq_attention/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/seq2seq_attention/__init__.py -------------------------------------------------------------------------------- /seq2seq_attention/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/seq2seq_attention/decoder.py -------------------------------------------------------------------------------- /seq2seq_attention/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/seq2seq_attention/encoder.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongjunLee/conversation-tensorflow/HEAD/utils.py --------------------------------------------------------------------------------