Spaces:
Sleeping
Sleeping
Arnab Sinha commited on
Commit ·
b12618f
1
Parent(s): 59563c2
Convert to Hugging Face Gradio app
Browse files- Add Gradio interface (app.py) for CIFAR-100 classification
- Update README with comprehensive Space documentation
- Add requirements.txt with necessary dependencies
- Create demo model generation script
- Remove old static HTML/CSS files
- Add proper .gitignore for Python/ML projects
Features:
- Interactive image classification for 100 CIFAR categories
- Top-5 predictions with confidence scores
- Professional Gradio interface with examples
- ResNet-18 architecture optimized for 32x32 images
- .gitignore +40 -0
- README.md +113 -5
- app.py +248 -0
- create_demo_model.py +34 -0
- index.html +0 -19
- requirements.txt +6 -0
- style.css +0 -28
.gitignore
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.pyc
|
| 4 |
+
*.pyo
|
| 5 |
+
*.pyd
|
| 6 |
+
.Python
|
| 7 |
+
env/
|
| 8 |
+
venv/
|
| 9 |
+
.env
|
| 10 |
+
.venv
|
| 11 |
+
|
| 12 |
+
# Model checkpoints
|
| 13 |
+
*.pth
|
| 14 |
+
*.pt
|
| 15 |
+
checkpoints/
|
| 16 |
+
outputs/
|
| 17 |
+
|
| 18 |
+
# Data
|
| 19 |
+
data/
|
| 20 |
+
*.tar.gz
|
| 21 |
+
|
| 22 |
+
# Logs
|
| 23 |
+
*.log
|
| 24 |
+
logs/
|
| 25 |
+
|
| 26 |
+
# IDE
|
| 27 |
+
.vscode/
|
| 28 |
+
.idea/
|
| 29 |
+
*.swp
|
| 30 |
+
*.swo
|
| 31 |
+
|
| 32 |
+
# OS
|
| 33 |
+
.DS_Store
|
| 34 |
+
Thumbs.db
|
| 35 |
+
|
| 36 |
+
# Jupyter
|
| 37 |
+
.ipynb_checkpoints/
|
| 38 |
+
|
| 39 |
+
# Gradio
|
| 40 |
+
flagged/
|
README.md
CHANGED
|
@@ -1,12 +1,120 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: indigo
|
| 6 |
-
sdk:
|
|
|
|
|
|
|
| 7 |
pinned: false
|
| 8 |
license: apache-2.0
|
| 9 |
-
short_description:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: CIFAR-100 ResNet-18 Classifier
|
| 3 |
+
emoji: 🖼️
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: indigo
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 4.44.0
|
| 8 |
+
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: apache-2.0
|
| 11 |
+
short_description: ResNet-18 model for CIFAR-100 image classification with 100 categories
|
| 12 |
+
tags:
|
| 13 |
+
- computer-vision
|
| 14 |
+
- image-classification
|
| 15 |
+
- pytorch
|
| 16 |
+
- resnet
|
| 17 |
+
- cifar-100
|
| 18 |
---
|
| 19 |
|
| 20 |
+
# 🖼️ CIFAR-100 ResNet-18 Image Classifier
|
| 21 |
+
|
| 22 |
+
This Hugging Face Space demonstrates a ResNet-18 model optimized for CIFAR-100 image classification. The model can classify images into 100 different categories including animals, vehicles, plants, and household objects.
|
| 23 |
+
|
| 24 |
+
## 🚀 Features
|
| 25 |
+
|
| 26 |
+
- **Custom ResNet-18 Architecture**: Adapted specifically for CIFAR-100's 32×32 input resolution
|
| 27 |
+
- **100 Class Classification**: Covers a wide range of categories from the CIFAR-100 dataset
|
| 28 |
+
- **Interactive Interface**: Easy-to-use Gradio interface for real-time predictions
|
| 29 |
+
- **Top-5 Predictions**: Shows confidence scores for the most likely classes
|
| 30 |
+
- **Technical Details**: Comprehensive model information and architecture details
|
| 31 |
+
|
| 32 |
+
## 🏗️ Model Architecture
|
| 33 |
+
|
| 34 |
+
The model uses a modified ResNet-18 architecture with the following key features:
|
| 35 |
+
|
| 36 |
+
- **Input**: 32×32 RGB images (automatically resized)
|
| 37 |
+
- **Residual Blocks**: Skip connections for improved gradient flow
|
| 38 |
+
- **Batch Normalization**: Stable training and inference
|
| 39 |
+
- **No Max Pooling**: Optimized stem for small input resolution
|
| 40 |
+
- **Adaptive Pooling**: Global average pooling before classification
|
| 41 |
+
- **100 Output Classes**: Full CIFAR-100 category coverage
|
| 42 |
+
|
| 43 |
+
## 📊 Training Features
|
| 44 |
+
|
| 45 |
+
The training pipeline includes advanced techniques:
|
| 46 |
+
|
| 47 |
+
- **OneCycle Learning Rate**: Cyclical learning rate scheduling
|
| 48 |
+
- **Mixed Precision**: Automatic mixed precision for efficiency
|
| 49 |
+
- **Data Augmentation**: Random crops, flips, and color jittering
|
| 50 |
+
- **Label Smoothing**: Improved generalization
|
| 51 |
+
- **Gradient Clipping**: Stable training dynamics
|
| 52 |
+
- **Grad-CAM Visualization**: Built-in attention visualization
|
| 53 |
+
|
| 54 |
+
## 🎯 CIFAR-100 Categories
|
| 55 |
+
|
| 56 |
+
The model classifies images into 100 categories including:
|
| 57 |
+
|
| 58 |
+
**Animals**: apple, aquarium_fish, baby, bear, beaver, bee, beetle, butterfly, camel, cattle, chimpanzee, cockroach, crab, crocodile, dinosaur, dolphin, elephant, flatfish, fox, hamster, kangaroo, leopard, lion, lizard, lobster, mouse, otter, porcupine, possum, rabbit, raccoon, ray, seal, shark, shrew, skunk, snail, snake, spider, squirrel, tiger, trout, turtle, whale, wolf, worm
|
| 59 |
+
|
| 60 |
+
**Plants**: maple_tree, oak_tree, palm_tree, pine_tree, willow_tree, orchid, poppy, rose, sunflower, tulip, orange, pear, sweet_pepper, mushroom
|
| 61 |
+
|
| 62 |
+
**Vehicles**: bicycle, bus, motorcycle, pickup_truck, train, streetcar, tank, tractor, rocket
|
| 63 |
+
|
| 64 |
+
**Household**: bed, bottle, bowl, can, chair, clock, couch, cup, house, keyboard, lamp, plate, table, telephone, television, wardrobe
|
| 65 |
+
|
| 66 |
+
**Others**: bridge, castle, cloud, forest, mountain, plain, road, sea, skyscraper
|
| 67 |
+
|
| 68 |
+
## 🔧 Usage
|
| 69 |
+
|
| 70 |
+
1. Upload an image using the interface
|
| 71 |
+
2. The model will automatically resize it to 32×32 pixels
|
| 72 |
+
3. Get top-5 predictions with confidence scores
|
| 73 |
+
4. View detailed model information and technical specifications
|
| 74 |
+
|
| 75 |
+
## 📁 Repository Structure
|
| 76 |
+
|
| 77 |
+
```
|
| 78 |
+
era-resnet/
|
| 79 |
+
├── app.py # Gradio interface
|
| 80 |
+
├── model.py # ResNet-18 architecture
|
| 81 |
+
├── train.py # Training script with advanced features
|
| 82 |
+
├── requirements.txt # Python dependencies
|
| 83 |
+
├── train.log # Training history and metrics
|
| 84 |
+
└── README.md # This file
|
| 85 |
+
```
|
| 86 |
+
|
| 87 |
+
## 🚀 Local Development
|
| 88 |
+
|
| 89 |
+
To run this app locally:
|
| 90 |
+
|
| 91 |
+
```bash
|
| 92 |
+
pip install -r requirements.txt
|
| 93 |
+
python app.py
|
| 94 |
+
```
|
| 95 |
+
|
| 96 |
+
To train your own model:
|
| 97 |
+
|
| 98 |
+
```bash
|
| 99 |
+
python train.py --epochs 100 --batch-size 128 --max-lr 0.1
|
| 100 |
+
```
|
| 101 |
+
|
| 102 |
+
## 📈 Training Performance
|
| 103 |
+
|
| 104 |
+
The model achieves competitive performance on CIFAR-100:
|
| 105 |
+
- Training includes 100 epochs with OneCycle scheduling
|
| 106 |
+
- Mixed precision training for efficiency
|
| 107 |
+
- Grad-CAM visualizations saved during training
|
| 108 |
+
- Comprehensive logging and checkpointing
|
| 109 |
+
|
| 110 |
+
## 🤝 Contributing
|
| 111 |
+
|
| 112 |
+
Feel free to experiment with:
|
| 113 |
+
- Different architectures (modify `model.py`)
|
| 114 |
+
- Hyperparameter tuning (see `train.py` arguments)
|
| 115 |
+
- Additional data augmentation techniques
|
| 116 |
+
- Transfer learning from other datasets
|
| 117 |
+
|
| 118 |
+
## 📄 License
|
| 119 |
+
|
| 120 |
+
This project is licensed under the Apache 2.0 License.
|
app.py
ADDED
|
@@ -0,0 +1,248 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
import torch
|
| 3 |
+
import torch.nn.functional as F
|
| 4 |
+
import torchvision.transforms as T
|
| 5 |
+
import numpy as np
|
| 6 |
+
from PIL import Image
|
| 7 |
+
import io
|
| 8 |
+
import base64
|
| 9 |
+
from model import resnet18_cifar
|
| 10 |
+
|
| 11 |
+
# CIFAR-100 class names
|
| 12 |
+
CIFAR100_CLASSES = [
|
| 13 |
+
'apple', 'aquarium_fish', 'baby', 'bear', 'beaver', 'bed', 'bee', 'beetle',
|
| 14 |
+
'bicycle', 'bottle', 'bowl', 'boy', 'bridge', 'bus', 'butterfly', 'camel',
|
| 15 |
+
'can', 'castle', 'caterpillar', 'cattle', 'chair', 'chimpanzee', 'clock',
|
| 16 |
+
'cloud', 'cockroach', 'couch', 'crab', 'crocodile', 'cup', 'dinosaur',
|
| 17 |
+
'dolphin', 'elephant', 'flatfish', 'forest', 'fox', 'girl', 'hamster',
|
| 18 |
+
'house', 'kangaroo', 'keyboard', 'lamp', 'lawn_mower', 'leopard', 'lion',
|
| 19 |
+
'lizard', 'lobster', 'man', 'maple_tree', 'motorcycle', 'mountain', 'mouse',
|
| 20 |
+
'mushroom', 'oak_tree', 'orange', 'orchid', 'otter', 'palm_tree', 'pear',
|
| 21 |
+
'pickup_truck', 'pine_tree', 'plain', 'plate', 'poppy', 'porcupine',
|
| 22 |
+
'possum', 'rabbit', 'raccoon', 'ray', 'road', 'rocket', 'rose',
|
| 23 |
+
'sea', 'seal', 'shark', 'shrew', 'skunk', 'skyscraper', 'snail', 'snake',
|
| 24 |
+
'spider', 'squirrel', 'streetcar', 'sunflower', 'sweet_pepper', 'table',
|
| 25 |
+
'tank', 'telephone', 'television', 'tiger', 'tractor', 'train', 'trout',
|
| 26 |
+
'tulip', 'turtle', 'wardrobe', 'whale', 'willow_tree', 'wolf', 'woman',
|
| 27 |
+
'worm'
|
| 28 |
+
]
|
| 29 |
+
|
| 30 |
+
# CIFAR-100 normalization constants
|
| 31 |
+
CIFAR100_MEAN = (0.5071, 0.4867, 0.4408)
|
| 32 |
+
CIFAR100_STD = (0.2675, 0.2565, 0.2761)
|
| 33 |
+
|
| 34 |
+
# Initialize model
|
| 35 |
+
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
| 36 |
+
|
| 37 |
+
def load_model():
|
| 38 |
+
"""Load the model. Try to load from checkpoint if available, otherwise use initialized model."""
|
| 39 |
+
model = resnet18_cifar(num_classes=100, width=64)
|
| 40 |
+
|
| 41 |
+
# Try to load a trained checkpoint
|
| 42 |
+
checkpoint_paths = ['best.pth', 'checkpoints/demo_model.pth', 'last.pth']
|
| 43 |
+
|
| 44 |
+
for checkpoint_path in checkpoint_paths:
|
| 45 |
+
try:
|
| 46 |
+
if torch.cuda.is_available():
|
| 47 |
+
checkpoint = torch.load(checkpoint_path, map_location=device)
|
| 48 |
+
else:
|
| 49 |
+
checkpoint = torch.load(checkpoint_path, map_location='cpu')
|
| 50 |
+
model.load_state_dict(checkpoint['model_state'])
|
| 51 |
+
print(f"✅ Loaded model from {checkpoint_path}")
|
| 52 |
+
break
|
| 53 |
+
except FileNotFoundError:
|
| 54 |
+
continue
|
| 55 |
+
except Exception as e:
|
| 56 |
+
print(f"⚠️ Error loading {checkpoint_path}: {e}")
|
| 57 |
+
continue
|
| 58 |
+
else:
|
| 59 |
+
print("ℹ️ No trained checkpoint found. Using initialized model for demo purposes.")
|
| 60 |
+
print("Note: For best results, train the model using train.py first.")
|
| 61 |
+
|
| 62 |
+
model.eval()
|
| 63 |
+
return model.to(device)
|
| 64 |
+
|
| 65 |
+
# Load the model
|
| 66 |
+
model = load_model()
|
| 67 |
+
|
| 68 |
+
def preprocess_image(image):
|
| 69 |
+
"""Preprocess image for CIFAR-100 ResNet model."""
|
| 70 |
+
# Resize to 32x32 (CIFAR-100 size)
|
| 71 |
+
if isinstance(image, str):
|
| 72 |
+
# If it's a file path
|
| 73 |
+
image = Image.open(image).convert('RGB')
|
| 74 |
+
elif hasattr(image, 'convert'):
|
| 75 |
+
# If it's already a PIL Image
|
| 76 |
+
image = image.convert('RGB')
|
| 77 |
+
|
| 78 |
+
# Resize to CIFAR-100 dimensions
|
| 79 |
+
image = image.resize((32, 32), Image.Resampling.LANCZOS)
|
| 80 |
+
|
| 81 |
+
# Apply transforms
|
| 82 |
+
transform = T.Compose([
|
| 83 |
+
T.ToTensor(),
|
| 84 |
+
T.Normalize(CIFAR100_MEAN, CIFAR100_STD)
|
| 85 |
+
])
|
| 86 |
+
|
| 87 |
+
return transform(image).unsqueeze(0)
|
| 88 |
+
|
| 89 |
+
def predict(image):
|
| 90 |
+
"""Make prediction on uploaded image."""
|
| 91 |
+
try:
|
| 92 |
+
# Preprocess the image
|
| 93 |
+
input_tensor = preprocess_image(image).to(device)
|
| 94 |
+
|
| 95 |
+
# Make prediction
|
| 96 |
+
with torch.no_grad():
|
| 97 |
+
outputs = model(input_tensor)
|
| 98 |
+
probabilities = F.softmax(outputs, dim=1)
|
| 99 |
+
|
| 100 |
+
# Get top 5 predictions
|
| 101 |
+
top5_prob, top5_idx = torch.topk(probabilities, 5)
|
| 102 |
+
top5_prob = top5_prob.cpu().numpy()[0]
|
| 103 |
+
top5_idx = top5_idx.cpu().numpy()[0]
|
| 104 |
+
|
| 105 |
+
# Create results dictionary
|
| 106 |
+
results = {}
|
| 107 |
+
for i, (idx, prob) in enumerate(zip(top5_idx, top5_prob)):
|
| 108 |
+
class_name = CIFAR100_CLASSES[idx]
|
| 109 |
+
results[f"{class_name}"] = float(prob)
|
| 110 |
+
|
| 111 |
+
return results
|
| 112 |
+
|
| 113 |
+
except Exception as e:
|
| 114 |
+
return {"Error": f"Prediction failed: {str(e)}"}
|
| 115 |
+
|
| 116 |
+
def predict_and_explain(image):
|
| 117 |
+
"""Make prediction and provide explanation."""
|
| 118 |
+
prediction = predict(image)
|
| 119 |
+
|
| 120 |
+
if "Error" in prediction:
|
| 121 |
+
return prediction, "Error occurred during prediction."
|
| 122 |
+
|
| 123 |
+
# Get the top prediction
|
| 124 |
+
top_class = max(prediction.keys(), key=prediction.get)
|
| 125 |
+
confidence = prediction[top_class]
|
| 126 |
+
|
| 127 |
+
explanation = f"""
|
| 128 |
+
**Model Architecture:** ResNet-18 adapted for CIFAR-100
|
| 129 |
+
- Input: 32×32 RGB images
|
| 130 |
+
- Output: 100 classes (CIFAR-100 categories)
|
| 131 |
+
- Architecture: Residual blocks with skip connections
|
| 132 |
+
|
| 133 |
+
**Top Prediction:** {top_class} ({confidence:.2%} confidence)
|
| 134 |
+
|
| 135 |
+
**About this model:**
|
| 136 |
+
This ResNet-18 model is specifically designed for CIFAR-100 classification.
|
| 137 |
+
The architecture uses:
|
| 138 |
+
- 3×3 convolutions with stride 1 (no max pooling in the stem)
|
| 139 |
+
- Residual blocks with skip connections for gradient flow
|
| 140 |
+
- Batch normalization and ReLU activations
|
| 141 |
+
- Adaptive average pooling before the final classifier
|
| 142 |
+
|
| 143 |
+
**Note:** This is a demonstration model. For best results, the model should be
|
| 144 |
+
trained on CIFAR-100 dataset using the provided training script.
|
| 145 |
+
"""
|
| 146 |
+
|
| 147 |
+
return prediction, explanation
|
| 148 |
+
|
| 149 |
+
# Create Gradio interface
|
| 150 |
+
def create_interface():
|
| 151 |
+
with gr.Blocks(title="CIFAR-100 ResNet Classifier", theme=gr.themes.Soft()) as demo:
|
| 152 |
+
gr.Markdown("""
|
| 153 |
+
# 🖼️ CIFAR-100 ResNet-18 Image Classifier
|
| 154 |
+
|
| 155 |
+
Upload an image to classify it into one of 100 CIFAR-100 categories using a ResNet-18 model.
|
| 156 |
+
The model is optimized for small 32×32 images but can handle larger images (they will be resized).
|
| 157 |
+
|
| 158 |
+
**Categories include:** animals, vehicles, household items, plants, and more!
|
| 159 |
+
""")
|
| 160 |
+
|
| 161 |
+
with gr.Row():
|
| 162 |
+
with gr.Column():
|
| 163 |
+
image_input = gr.Image(
|
| 164 |
+
type="pil",
|
| 165 |
+
label="Upload Image",
|
| 166 |
+
height=300
|
| 167 |
+
)
|
| 168 |
+
|
| 169 |
+
predict_btn = gr.Button(
|
| 170 |
+
"🔍 Classify Image",
|
| 171 |
+
variant="primary",
|
| 172 |
+
size="lg"
|
| 173 |
+
)
|
| 174 |
+
|
| 175 |
+
gr.Markdown("""
|
| 176 |
+
### 💡 Tips:
|
| 177 |
+
- Images are resized to 32×32 pixels (CIFAR-100 format)
|
| 178 |
+
- Works best with clear, centered objects
|
| 179 |
+
- Try images of animals, vehicles, plants, or household items
|
| 180 |
+
""")
|
| 181 |
+
|
| 182 |
+
with gr.Column():
|
| 183 |
+
prediction_output = gr.Label(
|
| 184 |
+
label="Top 5 Predictions",
|
| 185 |
+
num_top_classes=5
|
| 186 |
+
)
|
| 187 |
+
|
| 188 |
+
explanation_output = gr.Markdown(
|
| 189 |
+
label="Model Information",
|
| 190 |
+
value="Upload an image to see predictions and model details."
|
| 191 |
+
)
|
| 192 |
+
|
| 193 |
+
# Example images section
|
| 194 |
+
gr.Markdown("### 📚 Try these example categories:")
|
| 195 |
+
gr.Examples(
|
| 196 |
+
examples=[
|
| 197 |
+
# We'll use placeholder text since we don't have actual example images
|
| 198 |
+
["Upload images of: animals (cats, dogs, bears)", ""],
|
| 199 |
+
["Vehicles (cars, bicycles, motorcycles)", ""],
|
| 200 |
+
["Plants (flowers, trees)", ""],
|
| 201 |
+
["Household items (chairs, tables, bottles)", ""],
|
| 202 |
+
],
|
| 203 |
+
inputs=[gr.Textbox(visible=False), gr.Textbox(visible=False)],
|
| 204 |
+
label="Common CIFAR-100 Categories"
|
| 205 |
+
)
|
| 206 |
+
|
| 207 |
+
# Connect the interface
|
| 208 |
+
predict_btn.click(
|
| 209 |
+
fn=predict_and_explain,
|
| 210 |
+
inputs=[image_input],
|
| 211 |
+
outputs=[prediction_output, explanation_output]
|
| 212 |
+
)
|
| 213 |
+
|
| 214 |
+
# Auto-predict on image upload
|
| 215 |
+
image_input.change(
|
| 216 |
+
fn=predict_and_explain,
|
| 217 |
+
inputs=[image_input],
|
| 218 |
+
outputs=[prediction_output, explanation_output]
|
| 219 |
+
)
|
| 220 |
+
|
| 221 |
+
gr.Markdown("""
|
| 222 |
+
---
|
| 223 |
+
|
| 224 |
+
### 🔧 Technical Details
|
| 225 |
+
|
| 226 |
+
**Model:** ResNet-18 adapted for CIFAR-100
|
| 227 |
+
- **Parameters:** Configurable width (default: 64 channels)
|
| 228 |
+
- **Training:** OneCycle learning rate scheduling with mixed precision
|
| 229 |
+
- **Features:** Integrated Grad-CAM visualization support
|
| 230 |
+
- **Optimization:** Label smoothing, gradient clipping, data augmentation
|
| 231 |
+
|
| 232 |
+
**Architecture Features:**
|
| 233 |
+
- Residual blocks with skip connections
|
| 234 |
+
- Batch normalization for stable training
|
| 235 |
+
- No max pooling in stem (optimized for 32×32 inputs)
|
| 236 |
+
- Adaptive global average pooling
|
| 237 |
+
|
| 238 |
+
**Dataset:** CIFAR-100 (100 classes, 32×32 color images)
|
| 239 |
+
|
| 240 |
+
*Note: This demo uses an initialized model. For production use, train the model using the provided training script.*
|
| 241 |
+
""")
|
| 242 |
+
|
| 243 |
+
return demo
|
| 244 |
+
|
| 245 |
+
# Create and launch the interface
|
| 246 |
+
if __name__ == "__main__":
|
| 247 |
+
demo = create_interface()
|
| 248 |
+
demo.launch()
|
create_demo_model.py
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
import torch.nn as nn
|
| 3 |
+
from model import resnet18_cifar
|
| 4 |
+
import os
|
| 5 |
+
|
| 6 |
+
def create_demo_checkpoint():
|
| 7 |
+
"""
|
| 8 |
+
Create a demo checkpoint for demonstration purposes.
|
| 9 |
+
In a real deployment, you would use a properly trained model.
|
| 10 |
+
"""
|
| 11 |
+
model = resnet18_cifar(num_classes=100, width=64)
|
| 12 |
+
|
| 13 |
+
# Initialize with random weights (in practice, use trained weights)
|
| 14 |
+
checkpoint = {
|
| 15 |
+
'epoch': 100,
|
| 16 |
+
'model_state': model.state_dict(),
|
| 17 |
+
'best_acc1': 75.0, # Example accuracy
|
| 18 |
+
'args': {
|
| 19 |
+
'width': 64,
|
| 20 |
+
'num_classes': 100,
|
| 21 |
+
'max_lr': 0.1,
|
| 22 |
+
'weight_decay': 5e-4,
|
| 23 |
+
}
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
# Save demo checkpoint
|
| 27 |
+
os.makedirs('checkpoints', exist_ok=True)
|
| 28 |
+
torch.save(checkpoint, 'checkpoints/demo_model.pth')
|
| 29 |
+
print("Demo checkpoint created at checkpoints/demo_model.pth")
|
| 30 |
+
|
| 31 |
+
return checkpoint
|
| 32 |
+
|
| 33 |
+
if __name__ == "__main__":
|
| 34 |
+
create_demo_checkpoint()
|
index.html
DELETED
|
@@ -1,19 +0,0 @@
|
|
| 1 |
-
<!doctype html>
|
| 2 |
-
<html>
|
| 3 |
-
<head>
|
| 4 |
-
<meta charset="utf-8" />
|
| 5 |
-
<meta name="viewport" content="width=device-width" />
|
| 6 |
-
<title>My static Space</title>
|
| 7 |
-
<link rel="stylesheet" href="style.css" />
|
| 8 |
-
</head>
|
| 9 |
-
<body>
|
| 10 |
-
<div class="card">
|
| 11 |
-
<h1>Welcome to your static Space!</h1>
|
| 12 |
-
<p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
|
| 13 |
-
<p>
|
| 14 |
-
Also don't forget to check the
|
| 15 |
-
<a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
|
| 16 |
-
</p>
|
| 17 |
-
</div>
|
| 18 |
-
</body>
|
| 19 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requirements.txt
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio>=4.0.0
|
| 2 |
+
torch>=1.13.0
|
| 3 |
+
torchvision>=0.14.0
|
| 4 |
+
Pillow>=9.0.0
|
| 5 |
+
numpy>=1.21.0
|
| 6 |
+
tqdm>=4.64.0
|
style.css
DELETED
|
@@ -1,28 +0,0 @@
|
|
| 1 |
-
body {
|
| 2 |
-
padding: 2rem;
|
| 3 |
-
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 4 |
-
}
|
| 5 |
-
|
| 6 |
-
h1 {
|
| 7 |
-
font-size: 16px;
|
| 8 |
-
margin-top: 0;
|
| 9 |
-
}
|
| 10 |
-
|
| 11 |
-
p {
|
| 12 |
-
color: rgb(107, 114, 128);
|
| 13 |
-
font-size: 15px;
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
-
}
|
| 17 |
-
|
| 18 |
-
.card {
|
| 19 |
-
max-width: 620px;
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
-
}
|
| 25 |
-
|
| 26 |
-
.card p:last-child {
|
| 27 |
-
margin-bottom: 0;
|
| 28 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|