├── .DS_Store ├── .gitignore ├── .idea ├── cloud-computing-chatbot.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── bot.py ├── chatdemo.py ├── data ├── chatbot_model.h5 ├── classes.pkl ├── intents.json └── words.pkl ├── static ├── chat.css └── chat.js ├── templates ├── index.html └── message.html └── train_chatbot.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/cloud-computing-chatbot.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/.idea/cloud-computing-chatbot.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/bot.py -------------------------------------------------------------------------------- /chatdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/chatdemo.py -------------------------------------------------------------------------------- /data/chatbot_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/data/chatbot_model.h5 -------------------------------------------------------------------------------- /data/classes.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/data/classes.pkl -------------------------------------------------------------------------------- /data/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/data/intents.json -------------------------------------------------------------------------------- /data/words.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/data/words.pkl -------------------------------------------------------------------------------- /static/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/static/chat.css -------------------------------------------------------------------------------- /static/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/static/chat.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/templates/message.html -------------------------------------------------------------------------------- /train_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwincai/cloud-computing-chatbot/HEAD/train_chatbot.py --------------------------------------------------------------------------------