An AI-powered image classifier web app built using TensorFlow, Flask, and TailwindCSS. It classifies images using a CNN model trained on CIFAR-10.
- Upload any image and get a classification prediction
- Trained on the CIFAR-10 dataset
- Clean and responsive UI using TailwindCSS
- Easy to deploy on platforms like Render or Heroku
- Python 3.10+
- TensorFlow / Keras
- Flask
- Tailwind CSS
- Gunicorn (for deployment)
git clone https://github.com/Mdbaizidtanvir/image-classifier.git
cd image-classifier
# Create virtual env
python -m venv venv
source venv/bin/activate # or venv\Scripts\activate on Windows
# Install dependencies
pip install -r requirements.txt
# Run the app
python app.py