Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-2.5
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-2.5
|
| 3 |
+
tags:
|
| 4 |
+
- waste-classification
|
| 5 |
+
- training
|
| 6 |
+
- image
|
| 7 |
---
|
| 8 |
+
# Multi-Class Waste Image Classification Dataset
|
| 9 |
+
|
| 10 |
+
## Overview
|
| 11 |
+
This dataset is curated for multi-class waste classification using computer vision and deep learning techniques. It provides a structured, high-quality benchmark for training custom CNN architectures, benchmarking transfer learning models, and building automated waste sorting pipelines.
|
| 12 |
+
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
## Dataset Structure
|
| 16 |
+
The dataset follows a standard directory format compatible with common deep learning frameworks (`torchvision.datasets.ImageFolder`, `tf.keras.utils.image_dataset_from_directory`):
|
| 17 |
+
|
| 18 |
+
```text
|
| 19 |
+
dataset/
|
| 20 |
+
├── Plastic waste/
|
| 21 |
+
├── Paper and cardboard waste/
|
| 22 |
+
├── Glass waste/
|
| 23 |
+
├── Metal waste/
|
| 24 |
+
├── Organic waste/
|
| 25 |
+
├── Electronic waste/
|
| 26 |
+
├── Medicinal waste/
|
| 27 |
+
├── Hazardous waste/
|
| 28 |
+
└── General Waste/
|