A collection of AI/ML projects for learning and portfolio demonstration.
| Project | Description | Stack |
|---|---|---|
| IMDB Sentiment Analysis | Sentiment classification on movie reviews | scikit-learn, FastAPI, React |
| MNIST | Handwritten digit recognition | TBD |
Each project has its own virtual environment and dependencies.
# Navigate to a project
cd <project-name>
# Create virtual environment
python3 -m venv .venv
# Activate it
source .venv/bin/activate
# Install dependencies
pip install -r requirements.txt