gitextract_wj3qb2ee/ ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── chatbot/ │ ├── __init__.py │ ├── _models.py │ ├── components/ │ │ ├── __init__.py │ │ ├── base/ │ │ │ ├── __init__.py │ │ │ └── _rnn.py │ │ ├── bot_ops.py │ │ ├── decoders.py │ │ ├── embedder.py │ │ ├── encoders.py │ │ └── input_pipeline.py │ ├── dynamic_models.py │ ├── globals.py │ └── legacy/ │ ├── __init__.py │ ├── _decode.py │ ├── _train.py │ └── legacy_models.py ├── configs/ │ ├── example_attention.yml │ ├── example_cornell.yml │ ├── example_reddit.yml │ ├── example_ubuntu.yml │ ├── ubuntu_basic.yml │ └── website_config.yml ├── data/ │ ├── __init__.py │ ├── _dataset.py │ ├── data_helper.py │ ├── dataset_wrappers.py │ ├── reddit_preprocessor.py │ └── regex.py ├── main.py ├── notebooks/ │ ├── Analysis.ipynb │ ├── DataVizUtils.ipynb │ ├── README.md │ ├── RedditPipelineAndVisualization.ipynb │ ├── TensorFlow Notes.ipynb │ ├── __init__.py │ └── ubuntu_reformat.ipynb ├── requirements.txt ├── setup.py ├── tests/ │ ├── __init__.py │ ├── test_config.py │ ├── test_config.yml │ ├── test_data/ │ │ ├── train_from.txt │ │ ├── train_from.txt.ids121 │ │ ├── train_to.txt │ │ ├── train_to.txt.ids121 │ │ ├── trainvoc121_seq15.tfrecords │ │ ├── trainvoc121_seq20.tfrecords │ │ ├── valid_from.txt │ │ ├── valid_from.txt.ids121 │ │ ├── valid_to.txt │ │ ├── valid_to.txt.ids121 │ │ ├── validvoc121_seq15.tfrecords │ │ ├── validvoc121_seq20.tfrecords │ │ └── vocab121.txt │ ├── test_data.py │ ├── test_dynamic_models.py │ ├── test_legacy_models.py │ └── utils.py ├── utils/ │ ├── __init__.py │ ├── bot_freezer.py │ └── io_utils.py └── webpage/ ├── __init__.py ├── app.yaml ├── config.py ├── deepchat/ │ ├── __init__.py │ ├── main/ │ │ ├── __init__.py │ │ ├── errors.py │ │ ├── forms.py │ │ └── views.py │ ├── models.py │ ├── static/ │ │ ├── assets/ │ │ │ ├── plots/ │ │ │ │ ├── accuracy.json │ │ │ │ ├── configs.json │ │ │ │ ├── training.json │ │ │ │ └── validation.json │ │ │ └── test_data/ │ │ │ ├── train_from.txt │ │ │ ├── train_to.txt │ │ │ ├── valid_from.txt │ │ │ ├── valid_to.txt │ │ │ └── vocab121.txt │ │ ├── css/ │ │ │ ├── style_modifications.css │ │ │ └── theme.css │ │ ├── js/ │ │ │ ├── bootstrapify.js │ │ │ ├── chat_processing.js │ │ │ ├── jqBootstrapValidation.js │ │ │ └── user_form.js │ │ └── vendor/ │ │ ├── bootstrap-3.3.7-dist/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ └── bootstrap.css │ │ │ └── js/ │ │ │ ├── bootstrap.js │ │ │ └── npm.js │ │ ├── font-awesome/ │ │ │ ├── css/ │ │ │ │ └── font-awesome.css │ │ │ ├── fonts/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── less/ │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss/ │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ └── jquery/ │ │ └── jquery.easing.1.3.js │ ├── templates/ │ │ ├── 404.html │ │ ├── about.html │ │ ├── admin/ │ │ │ └── index.html │ │ ├── base.html │ │ ├── index.html │ │ ├── macros/ │ │ │ └── forms.html │ │ └── plots.html │ └── web_bot.py ├── manage.py ├── migrations/ │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions/ │ └── 236b966ecd2f_.py ├── requirements.txt ├── runtime.txt └── tests/ ├── __init__.py ├── test_database.py └── test_simple.py