An open API service indexing awesome lists of open source software.

https://github.com/akusarma/aicte-hackathon-project


https://github.com/akusarma/aicte-hackathon-project

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Chatbot
### To run please run the following commands
> for linux
```bash
$ python3 -m venv venv
$ venv/bin/activate
$ pip3 install requirements.txt
$ python3
$ >> import nltk
$ >> nltk.download('punkt')
$ >> exit()
$ python3 train.py
$ python3 app.py
```
- - -

> for windows
```powershell
> python -m venv venv
> venv\Scripts\activate
> pip install requirements.txt
> python
> >> import nltk
> >> nltk.download('punkt')
> >> exit()
> python train.py
> python app.py
```
Then open http://127.0.0.1:5000 in the web browser
- - -