Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
nltk==3.5
keras==2.4.3
tensorflow==2.4.0
numpy==1.19.4