Team 1 Deep Learning project using text sentiment analysis.
- Deep learning project using Flask
v3.1.0
- Web project using Next.js
v14.2.17
- Clone this repository
git clone https://github.com/hibatillah/deeplearning_team1
- Create virtual environment for python
# ./deep_learning
python -m venv venv
- Activate virtual environment (venv)
# ./deep_learning
venv\Scripts\activate
venv active based on session.
- Install Depedencies
# ./deep_learning
pip install -r requirements.txt
# ./
# ./web
npm install
- Run project
npm run dev
This command will run
web
anddeep_learning
project concurrently.
Run project separately using next command.
# for web
npm run dev:next
# for deep_learning
npm run dev:py
Important
Use all commands to run in the project root.
Make sure to activate venv
before running the project, specifically for deep_learning
project.
- Open
web
project at localhost:3000 anddeep_learning
project at localhost:8000