Skip to content

Text sentiment analisys

Notifications You must be signed in to change notification settings

hibatillah/deeplearning_team1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Text Sentiment Analysis

Team 1 Deep Learning project using text sentiment analysis.

Tech Stack

  • Deep learning project using Flask v3.1.0
  • Web project using Next.js v14.2.17

Development

  1. Clone this repository
git clone https://github.com/hibatillah/deeplearning_team1
  1. Create virtual environment for python
# ./deep_learning
python -m venv venv
  1. Activate virtual environment (venv)
# ./deep_learning
venv\Scripts\activate

venv active based on session.

  1. Install Depedencies
# ./deep_learning
pip install -r requirements.txt
# ./
# ./web
npm install
  1. Run project
npm run dev

This command will run web and deep_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.

  1. Open web project at localhost:3000 and deep_learning project at localhost:8000