├── .gitignore ├── LICENSE ├── README.md ├── chatbot_train ├── cornell_char_seq2seq_train.py ├── cornell_word_seq2seq_glove_train.py ├── cornell_word_seq2seq_train.py ├── data │ ├── cornell-dialogs │ │ ├── movie_lines_cleaned.txt │ │ └── movie_lines_cleaned_10k.txt │ ├── gunthercox │ │ ├── ai.yml │ │ ├── botprofile.yml │ │ ├── computers.yml │ │ ├── conversations.yml │ │ ├── emotion.yml │ │ ├── food.yml │ │ ├── gossip.yml │ │ ├── greetings.yml │ │ ├── history.yml │ │ ├── humor.yml │ │ ├── literature.yml │ │ ├── money.yml │ │ ├── movies.yml │ │ ├── politics.yml │ │ ├── psychology.yml │ │ ├── science.yml │ │ ├── sports.yml │ │ └── trivia.yml │ └── train-v1.1.json ├── gunthercox_char_seq2seq_train.py ├── gunthercox_word_seq2seq_glove_train.py ├── gunthercox_word_seq2seq_train.py └── models │ ├── cornell │ ├── char-architecture.json │ ├── char-context.npy │ ├── char-input-char2idx.npy │ ├── char-input-idx2char.npy │ ├── char-target-char2idx.npy │ ├── char-target-idx2char.npy │ ├── char-weights.h5 │ ├── word-architecture.json │ ├── word-context.npy │ ├── word-glove-architecture.json │ ├── word-glove-context.npy │ ├── word-glove-target-idx2word.npy │ ├── word-glove-target-word2idx.npy │ ├── word-glove-weights.h5 │ ├── word-input-idx2word.npy │ ├── word-input-word2idx.npy │ ├── word-target-idx2word.npy │ ├── word-target-word2idx.npy │ └── word-weights.h5 │ └── gunthercox │ ├── char-architecture.json │ ├── char-context.npy │ ├── char-input-char2idx.npy │ ├── char-input-idx2char.npy │ ├── char-target-char2idx.npy │ ├── char-target-idx2char.npy │ ├── char-weights.h5 │ ├── word-architecture.json │ ├── word-context.npy │ ├── word-glove-architecture.json │ ├── word-glove-context.npy │ ├── word-glove-target-idx2word.npy │ ├── word-glove-target-word2idx.npy │ ├── word-glove-weights.h5 │ ├── word-input-idx2word.npy │ ├── word-input-word2idx.npy │ ├── word-target-idx2word.npy │ ├── word-target-word2idx.npy │ └── word-weights.h5 ├── chatbot_web ├── __init__.py ├── cornell_char_seq2seq_predict.py ├── cornell_word_seq2seq_glove_predict.py ├── cornell_word_seq2seq_predict.py ├── flaskr.py ├── gunthercox_char_seq2seq_predict.py ├── gunthercox_word_seq2seq_glove_predict.py ├── gunthercox_word_seq2seq_predict.py ├── static │ └── style.css └── templates │ ├── cornell_char_reply.html │ ├── cornell_word_glove_reply.html │ ├── cornell_word_reply.html │ ├── gunthercox_char_reply.html │ ├── gunthercox_word_glove_reply.html │ ├── gunthercox_word_reply.html │ ├── home.html │ └── layout.html ├── notes └── references.md ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/README.md -------------------------------------------------------------------------------- /chatbot_train/cornell_char_seq2seq_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/cornell_char_seq2seq_train.py -------------------------------------------------------------------------------- /chatbot_train/cornell_word_seq2seq_glove_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/cornell_word_seq2seq_glove_train.py -------------------------------------------------------------------------------- /chatbot_train/cornell_word_seq2seq_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/cornell_word_seq2seq_train.py -------------------------------------------------------------------------------- /chatbot_train/data/cornell-dialogs/movie_lines_cleaned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/cornell-dialogs/movie_lines_cleaned.txt -------------------------------------------------------------------------------- /chatbot_train/data/cornell-dialogs/movie_lines_cleaned_10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/cornell-dialogs/movie_lines_cleaned_10k.txt -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/ai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/ai.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/botprofile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/botprofile.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/computers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/computers.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/conversations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/conversations.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/emotion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/emotion.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/food.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/food.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/gossip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/gossip.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/greetings.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/history.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/humor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/humor.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/literature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/literature.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/money.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/money.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/movies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/movies.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/politics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/politics.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/psychology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/psychology.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/science.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/science.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/sports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/sports.yml -------------------------------------------------------------------------------- /chatbot_train/data/gunthercox/trivia.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/gunthercox/trivia.yml -------------------------------------------------------------------------------- /chatbot_train/data/train-v1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/data/train-v1.1.json -------------------------------------------------------------------------------- /chatbot_train/gunthercox_char_seq2seq_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/gunthercox_char_seq2seq_train.py -------------------------------------------------------------------------------- /chatbot_train/gunthercox_word_seq2seq_glove_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/gunthercox_word_seq2seq_glove_train.py -------------------------------------------------------------------------------- /chatbot_train/gunthercox_word_seq2seq_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/gunthercox_word_seq2seq_train.py -------------------------------------------------------------------------------- /chatbot_train/models/cornell/char-architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/char-architecture.json -------------------------------------------------------------------------------- /chatbot_train/models/cornell/char-context.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/char-context.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/char-input-char2idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/char-input-char2idx.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/char-input-idx2char.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/char-input-idx2char.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/char-target-char2idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/char-target-char2idx.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/char-target-idx2char.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/char-target-idx2char.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/char-weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/char-weights.h5 -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-architecture.json -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-context.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-context.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-glove-architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-glove-architecture.json -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-glove-context.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-glove-context.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-glove-target-idx2word.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-glove-target-idx2word.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-glove-target-word2idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-glove-target-word2idx.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-glove-weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-glove-weights.h5 -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-input-idx2word.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-input-idx2word.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-input-word2idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-input-word2idx.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-target-idx2word.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-target-idx2word.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-target-word2idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-target-word2idx.npy -------------------------------------------------------------------------------- /chatbot_train/models/cornell/word-weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/cornell/word-weights.h5 -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/char-architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/char-architecture.json -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/char-context.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/char-context.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/char-input-char2idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/char-input-char2idx.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/char-input-idx2char.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/char-input-idx2char.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/char-target-char2idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/char-target-char2idx.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/char-target-idx2char.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/char-target-idx2char.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/char-weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/char-weights.h5 -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-architecture.json -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-context.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-context.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-glove-architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-glove-architecture.json -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-glove-context.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-glove-context.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-glove-target-idx2word.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-glove-target-idx2word.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-glove-target-word2idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-glove-target-word2idx.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-glove-weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-glove-weights.h5 -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-input-idx2word.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-input-idx2word.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-input-word2idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-input-word2idx.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-target-idx2word.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-target-idx2word.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-target-word2idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-target-word2idx.npy -------------------------------------------------------------------------------- /chatbot_train/models/gunthercox/word-weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_train/models/gunthercox/word-weights.h5 -------------------------------------------------------------------------------- /chatbot_web/__init__.py: -------------------------------------------------------------------------------- 1 | from .flaskr import app -------------------------------------------------------------------------------- /chatbot_web/cornell_char_seq2seq_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/cornell_char_seq2seq_predict.py -------------------------------------------------------------------------------- /chatbot_web/cornell_word_seq2seq_glove_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/cornell_word_seq2seq_glove_predict.py -------------------------------------------------------------------------------- /chatbot_web/cornell_word_seq2seq_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/cornell_word_seq2seq_predict.py -------------------------------------------------------------------------------- /chatbot_web/flaskr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/flaskr.py -------------------------------------------------------------------------------- /chatbot_web/gunthercox_char_seq2seq_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/gunthercox_char_seq2seq_predict.py -------------------------------------------------------------------------------- /chatbot_web/gunthercox_word_seq2seq_glove_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/gunthercox_word_seq2seq_glove_predict.py -------------------------------------------------------------------------------- /chatbot_web/gunthercox_word_seq2seq_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/gunthercox_word_seq2seq_predict.py -------------------------------------------------------------------------------- /chatbot_web/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/static/style.css -------------------------------------------------------------------------------- /chatbot_web/templates/cornell_char_reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/templates/cornell_char_reply.html -------------------------------------------------------------------------------- /chatbot_web/templates/cornell_word_glove_reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/templates/cornell_word_glove_reply.html -------------------------------------------------------------------------------- /chatbot_web/templates/cornell_word_reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/templates/cornell_word_reply.html -------------------------------------------------------------------------------- /chatbot_web/templates/gunthercox_char_reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/templates/gunthercox_char_reply.html -------------------------------------------------------------------------------- /chatbot_web/templates/gunthercox_word_glove_reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/templates/gunthercox_word_glove_reply.html -------------------------------------------------------------------------------- /chatbot_web/templates/gunthercox_word_reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/templates/gunthercox_word_reply.html -------------------------------------------------------------------------------- /chatbot_web/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/templates/home.html -------------------------------------------------------------------------------- /chatbot_web/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/chatbot_web/templates/layout.html -------------------------------------------------------------------------------- /notes/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/notes/references.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask == 0.12.2 2 | keras 3 | numpy 4 | nltk 5 | scikit-learn 6 | h5py 7 | tensorflow -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen0040/keras-chatbot-web-api/HEAD/setup.py --------------------------------------------------------------------------------