A sentiment analysis application with a model build using IMDb movie reviews
- Create a virtual environment
python -m venv .venv - Activate virtual environment
source .venv/bin/activate - Upgrade pip
python -m pip install --upgrade pip - Add .gitignote
echo "*" > .venv/.gitignore - Install the necessary dependencies in requirements.txt file
pip install -r requirements.txt - Run the Sentiment Analysis Model.ipynb to create the pipeline on your filesystem
- Start the Fastapi backend by running
fastapi dev main.py