thawro's picture
Added configuration files
f8f0ea7
metadata
title: flowers-classification
sdk: docker
emoji: 🌍
colorFrom: gray
colorTo: green

About

Image classification model trained using PyTorch Lightning framework and shared on Hugging Face with the use of gradio and Docker.

  • Architecture: simple Deep Convolutional Neural Network (DeepCNN)
  • Dataset: 102 Category Flower Dataset
  • Experiments: all experiments are logged to the WandB project which can be found here

Tech stack

Commands

  1. Train the model:
make train_model
  1. Run docker with gradio app:
docker build -t flowers .
docker run -it -p 7860:7860 --name flowers_app flowers