Mood-Detection is a simple image classification web app that detects human emotions from images using a lightweight convolutional neural network.
It uses:
- 🧠 PyTorch and Torchvision for building and loading the model (currently a TinyVGG architecture)
- 🎛️ Streamlit for a clean and interactive web UI
The model currently classifies input images into one of the following moods:
- 😠 Angry
- 😢 Sad
- 😐 Neutral
- 😄 Happy
git clone https://github.com/your-username/Mood-Detection.git
cd Mood-Detectionpython -m virtualenv venv # For Windows (or)
python3 -m venv venv # For macOS/Linuxvenv\Scripts\activate # For Windows
source venv/bin/activate # For macOS/Linuxpip install -r requirements.txtcd src
streamlit run app.py