https://github.com/akusarma/aicte-hackathon-project
https://github.com/akusarma/aicte-hackathon-project
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/akusarma/aicte-hackathon-project
- Owner: AkuSarma
- Created: 2023-04-30T12:42:47.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-30T12:44:30.000Z (almost 2 years ago)
- Last Synced: 2025-01-27T16:47:05.894Z (3 months ago)
- Language: CSS
- Size: 187 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
- - -