├── .gitignore ├── README.md ├── lotr_data.txt ├── main.py └── the_awesome_lotr_sentences_file.txt /.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickvanhulst/tf_chatbot_lotr/HEAD/README.md -------------------------------------------------------------------------------- /lotr_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickvanhulst/tf_chatbot_lotr/HEAD/lotr_data.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickvanhulst/tf_chatbot_lotr/HEAD/main.py -------------------------------------------------------------------------------- /the_awesome_lotr_sentences_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickvanhulst/tf_chatbot_lotr/HEAD/the_awesome_lotr_sentences_file.txt --------------------------------------------------------------------------------