├── .gitignore ├── .idea ├── misc.xml ├── modules.xml ├── tensorflow_chatbot-download.iml ├── vcs.xml └── workspace.xml ├── __init__.py ├── __pycache__ ├── data_utils.cpython-35.pyc └── seq2seq_model.cpython-35.pyc ├── data ├── __init__.py ├── test.dec ├── test.enc ├── train.dec └── train.enc ├── data_utils.py ├── env_setup.sh ├── execute.py ├── neuralconvo.ini ├── seq2seq.ini ├── seq2seq_model.py └── seq2seq_serve.ini /.gitignore: -------------------------------------------------------------------------------- 1 | ui/ 2 | working_dir/ 3 | backup/ -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/tensorflow_chatbot-download.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/.idea/tensorflow_chatbot-download.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__pycache__/data_utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/__pycache__/data_utils.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/seq2seq_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/__pycache__/seq2seq_model.cpython-35.pyc -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/test.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/data/test.dec -------------------------------------------------------------------------------- /data/test.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/data/test.enc -------------------------------------------------------------------------------- /data/train.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/data/train.dec -------------------------------------------------------------------------------- /data/train.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/data/train.enc -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/data_utils.py -------------------------------------------------------------------------------- /env_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/env_setup.sh -------------------------------------------------------------------------------- /execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/execute.py -------------------------------------------------------------------------------- /neuralconvo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/neuralconvo.ini -------------------------------------------------------------------------------- /seq2seq.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/seq2seq.ini -------------------------------------------------------------------------------- /seq2seq_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/seq2seq_model.py -------------------------------------------------------------------------------- /seq2seq_serve.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhenry/tensorflow-seq2seq-chatbot-zh/HEAD/seq2seq_serve.ini --------------------------------------------------------------------------------