File size: 6,137 Bytes
72f1de9 468cd46 72f1de9 468cd46 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 | ---
license: mit
language:
- en
library_name: pytorch
pipeline_tag: image-classification
tags:
- dinov2
- vision-transformer
- vit
- image-classification
- garbage-classification
- waste-classification
- transfer-learning
- workshop
- pytorch
---
# DINOv2 Garbage Classification
A fine-tuned **DINOv2 ViT-L/14** model for **garbage image classification**.
This repository is prepared as a **workshop baseline model**, allowing participants to quickly start experimenting with transfer learning techniques without training a Vision Transformer from scratch.
The checkpoint can be used directly for inference or as an initialization for further fine-tuning on custom datasets.
---
# Overview
This project fine-tunes Meta AI's **DINOv2 ViT-L/14** backbone for a three-class garbage classification task.
Unlike conventional CNN-based approaches, DINOv2 learns powerful visual representations through self-supervised learning, making it an excellent backbone for downstream computer vision tasks with limited labeled data.
Participants are encouraged to extend this model with techniques such as:
- Hard Example Mining
- Active Learning
- Semi-supervised Learning
- Domain Adaptation
- Knowledge Distillation
- Custom Classification Heads
- Full Backbone Fine-tuning
- Test-Time Augmentation (TTA)
---
# Model Architecture
```
Input Image (518 Γ 518)
β
βΌ
DINOv2 ViT-L/14 Backbone
β
βΌ
1024-D Feature Vector
β
βΌ
LayerNorm
β
βΌ
Linear (1024 β 512)
β
βΌ
GELU
β
βΌ
Dropout (0.3)
β
βΌ
Linear (512 β 3)
β
βΌ
Prediction
```
## Backbone
- Base Model: `facebookresearch/dinov2`
- Variant: `dinov2_vitl14`
- Feature Dimension: **1024**
- Framework: **PyTorch**
Training strategy:
- Freeze entire backbone
- Unfreeze last **4 transformer blocks**
- Train custom classification head
---
# Dataset
The model classifies garbage into three categories.
| Label | Class |
|------:|-------|
| 0 | Recyclable |
| 1 | Electronic |
| 2 | Organic |
## Sample Images
### Recyclable
| | | | |
|:-:|:-:|:-:|:-:|
|  |  |  |  |
### Electronic
| | | | |
|:-:|:-:|:-:|:-:|
|  |  |  |  |
### Organic
| | | | |
|:-:|:-:|:-:|:-:|
|  |  |  |  |
---
# Dataset Statistics
| Split | Images |
|-------|-------:|
| Training | **23,873** |
| Validation | **2,653** |
| Test | **1,458** |
## Class Distribution
| Class | Images |
|-------|-------:|
| Recyclable | 12,567 |
| Electronic | 9,999 |
| Organic | 3,960 |
---
# Data Augmentation
Training images are augmented using:
- Random Resized Crop
- Horizontal Flip
- Color Jitter
- Gaussian Blur
- RandAugment
- ImageNet Normalization
Input resolution:
```
518 Γ 518
```
---
# Repository Structure
```
.
βββ assets/
β βββ 0_Recyclable/
β βββ 1_Electronic/
β βββ 2_Organic/
β
βββ best_dinov2.pth
βββ README.md
```
---
# Load the Model
```python
import torch
import torch.nn as nn
from huggingface_hub import hf_hub_download
pth_path = hf_hub_download(
repo_id="galihkjaya/DINOv2-Garbage-Classification",
filename="best_dinov2.pth"
)
class DINOv2Classifier(nn.Module):
def __init__(self, num_classes=3, unfreeze_blocks=4):
super().__init__()
self.backbone = torch.hub.load(
"facebookresearch/dinov2",
"dinov2_vitl14"
)
for p in self.backbone.parameters():
p.requires_grad = False
for block in self.backbone.blocks[-unfreeze_blocks:]:
for p in block.parameters():
p.requires_grad = True
self.head = nn.Sequential(
nn.LayerNorm(1024),
nn.Linear(1024, 512),
nn.GELU(),
nn.Dropout(0.3),
nn.Linear(512, num_classes)
)
def forward(self, x):
features = self.backbone(x)
return self.head(features)
model = DINOv2Classifier()
model.load_state_dict(torch.load(pth_path, map_location="cpu"))
model.eval()
```
---
# Inference Example
```python
from PIL import Image
from torchvision import transforms
transform = transforms.Compose([
transforms.Resize((518, 518)),
transforms.ToTensor(),
transforms.Normalize(
mean=(0.485,0.456,0.406),
std=(0.229,0.224,0.225)
)
])
labels = {
0: "Recyclable",
1: "Electronic",
2: "Organic"
}
image = Image.open("sample.jpg").convert("RGB")
image = transform(image).unsqueeze(0)
with torch.no_grad():
logits = model(image)
pred = logits.argmax(1).item()
print(labels[pred])
```
---
# Future Improvement
This checkpoint serves as the baseline model. Suggested follow-up experiments include:
- Fine-tune all transformer blocks
- Hard Example Mining
- Replace the classification head
- Add new waste categories
- Train with Focal Loss
- Label Smoothing
- Test-Time Augmentation
- MixUp / CutMix
- Semi-supervised Learning
- Domain Adaptation
- Feature Extraction using DINOv2 embeddings
The objective is to demonstrate how a strong pretrained visual backbone can be adapted efficiently for downstream classification tasks.
---
# Limitations
- Only supports three waste categories.
- Performance depends on image quality and lighting conditions.
- Mixed-material waste may be difficult to classify.
- Intended for educational and research purposes.
---
# Acknowledgements
This project builds upon:
- **Meta AI** β DINOv2
- **PyTorch**
- **Hugging Face Hub**
- **Kaggle**
---
# Citation
```bibtex
@misc{galih2026,
title={DINOv2 Garbage Classification},
author={Galih Kusuma Wijaya},
year={2026},
publisher={Hugging Face},
howpublished={https://huggingface.co/galihkjaya/DINOv2-Garbage-Classification}
}
``` |