Deep Learning project for text sentiment analysis, audio and image classifications.
- Deep learning project using Flask
v3.1.0
- Web project using Next.js
v14.2.17
- Python
v3.12
- Python API is located at
app.py
- Python models for prediction are located at
/model
directory - API interaction for predictions and their forms are located at
/app/_components
directory
- Create venv
cd deep_learning
python -m venv venv
- Activate venv
venv/Scripts/activate
Make sure to activate venv inside
deep_learning
directory
- Install root depedencies
npm install
- Install
web
depedencies
cd web
npm install
- Install
deep_learning
depedencies
cd deep_learning
venv/Scripts/activate # activate venv
pip install -r requirements.txt
Make sure to activate venv before install the depedencies
- Run
web
project
npm run dev:next
- Run
deep_learning
project
npm run dev:py
- Run project concurrently
npm run dev
Make sure to activate venv before running
deep_learning
project