├── .gitignore ├── LICENSE ├── README.md ├── chat.py ├── intents.json ├── model.py ├── nltk_utils.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huwprosser/pytorch-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huwprosser/pytorch-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huwprosser/pytorch-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huwprosser/pytorch-chatbot/HEAD/chat.py -------------------------------------------------------------------------------- /intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huwprosser/pytorch-chatbot/HEAD/intents.json -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huwprosser/pytorch-chatbot/HEAD/model.py -------------------------------------------------------------------------------- /nltk_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huwprosser/pytorch-chatbot/HEAD/nltk_utils.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huwprosser/pytorch-chatbot/HEAD/train.py --------------------------------------------------------------------------------