├── .gitignore ├── README.md ├── __init__.py ├── data_utils.py ├── env_setup.sh ├── execute.py ├── neuralconvo.ini ├── seq2seq.ini ├── seq2seq_model.py ├── seq2seq_serve.ini ├── ui ├── .gitignore ├── README.md ├── __init.py__ ├── app.py ├── requirements.txt ├── setup.sh ├── static │ ├── css │ │ ├── normalize.css │ │ └── style.css │ ├── js │ │ ├── index.js │ │ ├── jquery-latest.js │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ ├── jquery.mCustomScrollbar.min.css │ │ └── jquery.min.js │ ├── res │ │ ├── botim.png │ │ ├── hd1.jpg │ │ └── hd2.jpg │ └── scss │ │ └── style.scss └── templates │ └── index.html └── working_dir ├── vocab20000.dec └── vocab20000.enc /.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/data_utils.py -------------------------------------------------------------------------------- /env_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/env_setup.sh -------------------------------------------------------------------------------- /execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/execute.py -------------------------------------------------------------------------------- /neuralconvo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/neuralconvo.ini -------------------------------------------------------------------------------- /seq2seq.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/seq2seq.ini -------------------------------------------------------------------------------- /seq2seq_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/seq2seq_model.py -------------------------------------------------------------------------------- /seq2seq_serve.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/seq2seq_serve.ini -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/__init.py__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/app.py -------------------------------------------------------------------------------- /ui/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/requirements.txt -------------------------------------------------------------------------------- /ui/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/setup.sh -------------------------------------------------------------------------------- /ui/static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/static/css/normalize.css -------------------------------------------------------------------------------- /ui/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/static/css/style.css -------------------------------------------------------------------------------- /ui/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/static/js/index.js -------------------------------------------------------------------------------- /ui/static/js/jquery-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/static/js/jquery-latest.js -------------------------------------------------------------------------------- /ui/static/js/jquery.mCustomScrollbar.concat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/static/js/jquery.mCustomScrollbar.concat.min.js -------------------------------------------------------------------------------- /ui/static/js/jquery.mCustomScrollbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/static/js/jquery.mCustomScrollbar.min.css -------------------------------------------------------------------------------- /ui/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/static/js/jquery.min.js -------------------------------------------------------------------------------- /ui/static/res/botim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/static/res/botim.png -------------------------------------------------------------------------------- /ui/static/res/hd1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/static/res/hd1.jpg -------------------------------------------------------------------------------- /ui/static/res/hd2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/static/res/hd2.jpg -------------------------------------------------------------------------------- /ui/static/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/static/scss/style.scss -------------------------------------------------------------------------------- /ui/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/ui/templates/index.html -------------------------------------------------------------------------------- /working_dir/vocab20000.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/working_dir/vocab20000.dec -------------------------------------------------------------------------------- /working_dir/vocab20000.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/tensorflow_chatbot/HEAD/working_dir/vocab20000.enc --------------------------------------------------------------------------------