diff --git a/README.md b/README.md index 2f53aa0..9e4de05 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,22 @@ Creating a simple Python chatbot using natural language processing and deep learning. +## Installation + +```shell script +pip install -r requirements.txt +``` + +## Getting started + +### Train + +```shell script +python train_chatbot.py +``` + +### Run chatbot GUI + +```shell script +python chatgui.py +``` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..84e98d6 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +nltk==3.5 +keras==2.4.3 +tensorflow==2.4.0 +numpy==1.19.4 \ No newline at end of file