Dataclusterlabs commited on
Commit
afe8801
·
verified ·
1 Parent(s): 775d19c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +153 -3
README.md CHANGED
@@ -1,3 +1,153 @@
1
- ---
2
- license: cc-by-nc-nd-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-nd-4.0
3
+ task_categories:
4
+ - object-detection
5
+ - image-classification
6
+ - image-segmentation
7
+ - visual-question-answering
8
+ size_categories:
9
+ - n<1K
10
+ tags:
11
+ - trash-detection
12
+ - garbage-detection
13
+ - waste-classification
14
+ - material-classification
15
+ - object-detection
16
+ - computer-vision
17
+ - sustainability
18
+ - recycling
19
+ - smart-city
20
+ - lmm
21
+ - vqa
22
+ pretty_name: Domestic Trash / Garbage Dataset (Sample)
23
+ ---
24
+
25
+ # Domestic Trash / Garbage Dataset — Sample
26
+
27
+ > ⚠️ **This is a free sample subset for evaluation purposes only.**
28
+ > The full dataset (9,000+ annotated images, multiple formats) is available for commercial licensing.
29
+ > **Contact:** [sales@datacluster.ai](mailto:sales@datacluster.ai) · [datacluster.ai](https://datacluster.ai)
30
+
31
+ ---
32
+
33
+ ## Dataset Summary
34
+
35
+ This dataset contains real-world images of domestic trash and garbage, captured on mobile phones across diverse urban and rural environments throughout India. It is well-suited for training trash detection, material classification, and garbage segregation models used in smart waste management, automated recycling lines, municipal cleanliness monitoring, eco-friendly consumer apps, and carbon-footprint estimation systems.
36
+
37
+ It is also **optimized for Generative AI, Visual Question Answering (VQA), Image Classification, and Large Multimodal Model (LMM) development**, providing a strong basis for achieving robust model performance on real-world waste imagery.
38
+
39
+ Scenes cover a wide variety of capture scenarios — household trash bins, street-side garbage piles, dump yards, recycling centers, public spaces, and indoor waste containers — under varied lighting conditions (day, night), distances, and material viewpoints. The dataset captures the full diversity of trash items found in Indian domestic settings, including plastics, paper, metals, organic waste, and mixed materials.
40
+
41
+ ## Classes
42
+
43
+ * `trash`
44
+
45
+ > The full dataset additionally supports **material classification** (e.g., plastic, paper, metal, organic, glass, etc.) for more granular labeling. Contact [sales@datacluster.ai](mailto:sales@datacluster.ai) for details on material-level annotations.
46
+
47
+ ## Sample vs. Full Dataset
48
+
49
+ | | Sample (this repo) | Full Dataset |
50
+ | --- | --- | --- |
51
+ | Images | ~200 (subset) | 9,000+ |
52
+ | Annotation formats | Pascal VOC (XML) — other formats available on request | COCO, YOLO, Pascal VOC, TF-Record |
53
+ | Material-level labels | ❌ Not included | ✅ Available |
54
+ | Locations covered | Representative subset | 500+ cities across India |
55
+ | Resolution | HD (1920×1080 and above) | 99.9% HD and above (1920×1080+) |
56
+ | Scene diversity | Representative subset | Full range (indoor, outdoor, day, night, close, far) |
57
+ | Commercial use | ❌ Not permitted | ✅ With license |
58
+ | Redistribution | ❌ Not permitted | Per license terms |
59
+ | Updates | One-time | Ongoing |
60
+
61
+ **To license the full dataset:** [sales@datacluster.ai](mailto:sales@datacluster.ai)
62
+
63
+ ## Dataset Structure
64
+
65
+ ```
66
+ domestic-trash-garbage-dataset/
67
+ ├── images/ # JPG images
68
+ │ ├── image_0001.jpg
69
+ │ └── ...
70
+ └── annotations/ # Pascal VOC XML annotations (one per image)
71
+ ├── image_0001.xml
72
+ └── ...
73
+ ```
74
+
75
+ Each XML file contains bounding-box annotations in the Pascal VOC format around the trash/garbage regions, with filenames matching their corresponding images.
76
+
77
+ > **Need a different annotation format?** This sample ships in Pascal VOC (XML) only. YOLO, COCO, and TF-Record versions are available on request — see the conversion snippet below, or contact [sales@datacluster.ai](mailto:sales@datacluster.ai).
78
+
79
+ ## Data Collection
80
+
81
+ * **Source:** Real-world mobile phone captures, crowdsourced from 2,000+ contributors
82
+ * **Locations:** 500+ cities across urban and rural India
83
+ * **Capture period:** 2020–2022
84
+ * **Resolution:** 99.9% HD and above (1920×1080+)
85
+ * **Conditions:** Indoor and outdoor scenes; varied lighting (day, night), weather, distances, and material viewpoints
86
+ * **Quality:** All images are exclusively owned by DataCluster Labs (not scraped from the internet) and each image is manually reviewed and verified by computer vision professionals at DC Labs
87
+ * **Use cases:** Trash detection, material classification, garbage segregation, smart waste management, automated recycling, municipal cleanliness monitoring, eco-friendly product recommendations, carbon-footprint estimation, VQA on waste scenes, and Large Multimodal Model (LMM) training
88
+
89
+ ## How to Use
90
+
91
+ ### Download
92
+
93
+ ```bash
94
+ # Using the Hugging Face CLI
95
+ huggingface-cli download Dataclusterlabspvtltd/Domestic-Trash-Garbage-Dataset --repo-type dataset --local-dir ./domestic-trash-garbage-dataset
96
+ ```
97
+
98
+ Or clone directly:
99
+
100
+ ```bash
101
+ git lfs install
102
+ git clone https://huggingface.co/datasets/Dataclusterlabspvtltd/Domestic-Trash-Garbage-Dataset
103
+ ```
104
+
105
+ ### Convert VOC to YOLO or COCO
106
+
107
+ The sample ships in Pascal VOC format. Convert easily with `pylabel`:
108
+
109
+ ```python
110
+ from pylabel import importer
111
+
112
+ # VOC → YOLO
113
+ dataset = importer.ImportVOC(path="annotations")
114
+ dataset.export.ExportToYoloV5(output_path="annotations_yolo")
115
+
116
+ # VOC → COCO
117
+ dataset.export.ExportToCoco(output_path="annotations_coco/annotations.json")
118
+ ```
119
+
120
+ ## License
121
+
122
+ This sample dataset is released under the **Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)** license.
123
+
124
+ Key points:
125
+
126
+ * ✅ Free to download and evaluate
127
+ * ✅ Free for academic and non-commercial research with attribution
128
+ * ❌ No commercial use without a license from DataCluster Labs
129
+ * ❌ No derivative works or modifications for redistribution
130
+ * ❌ No use in training commercial ML models
131
+
132
+ For commercial licensing of the full dataset, contact **[sales@datacluster.ai](mailto:sales@datacluster.ai)**.
133
+
134
+ ## Citation
135
+
136
+ If you use this dataset in academic work, please cite:
137
+
138
+ ```bibtex
139
+ @misc{datacluster_domestic_trash_sample,
140
+ title = {Domestic Trash / Garbage Dataset (Sample)},
141
+ author = {DataCluster Labs},
142
+ year = {2026},
143
+ howpublished = {\url{https://huggingface.co/datasets/Dataclusterlabspvtltd/Domestic-Trash-Garbage-Dataset}},
144
+ note = {Sample subset. Full dataset available for commercial licensing at sales@datacluster.ai}
145
+ }
146
+ ```
147
+
148
+ ## About DataCluster Labs
149
+
150
+ DataCluster Labs specializes in managed crowd-sourced data collection and annotation — images, videos, audio, text, and surveys — through our Dailydata platform. We deliver custom datasets for computer vision, NLP, and ML use cases, with a strong focus on India-first data that captures the diversity of real-world conditions across the subcontinent.
151
+
152
+ 📧 **Sales / Full Dataset Access:** [sales@datacluster.ai](mailto:sales@datacluster.ai)
153
+ 🌐 **Website:** [datacluster.ai](https://datacluster.ai)