A simple Flask web app for testing interactively image classification models trained on the Fashion MNIST dataset. User can upload an image or draw in the canvas to get predictions from four different machine learning models.
Prerequisites: Python 3.8 or higher, pip.
- Clone this repository:
git clone https://github.com/yourusername/closet-tune-app.git
cd closet-tune-app
- Create virtual environment (optionally but recommended):
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
Or set it up via VS Code
- Install required dependencies
pip install -r requirements.txt
- Run the app
flask --app app run
- Open in your browser
Quick demos of the app in action:
- Fashion MNIST Model Training Repository - Trained models and exploration notebooks.