Dataclusterlabs commited on
Commit
6f9d1be
·
verified ·
1 Parent(s): ca3c3f2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +154 -3
README.md CHANGED
@@ -1,3 +1,154 @@
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
+ size_categories:
7
+ - n<1K
8
+ tags:
9
+ - indian-vehicles
10
+ - vehicle-detection
11
+ - object-detection
12
+ - image-classification
13
+ - computer-vision
14
+ - automotive
15
+ - self-driving
16
+ - traffic-analysis
17
+ pretty_name: Indian Vehicle Dataset (Sample)
18
+ ---
19
+
20
+ # Indian Vehicle Dataset — Sample
21
+
22
+ > ⚠️ **This is a free sample subset for evaluation purposes only.**
23
+ > The full dataset (50,000+ annotated images, multiple formats) is available for commercial licensing.
24
+ > **Contact:** [sales@datacluster.ai](mailto:sales@datacluster.ai) · [datacluster.ai](https://datacluster.ai)
25
+
26
+ ---
27
+
28
+ ## Dataset Summary
29
+
30
+ This dataset contains real-world images of Indian vehicles, captured on mobile phones across diverse urban and rural environments throughout India. It is well-suited for training vehicle detection and classification models used in traffic monitoring, autonomous driving, smart city surveillance, automated tolling, and India-specific automotive applications.
31
+
32
+ Scenes cover a wide variety of road scenarios, including dense city traffic, highways, rural roads, parking lots, and intersections — covering both indoor (parking) and outdoor environments under varied lighting and weather conditions. The dataset captures vehicle types unique to Indian roads, making it especially valuable for models that need to perform reliably in the Indian subcontinent.
33
+
34
+ ## Classes
35
+
36
+ * `Indian Auto`
37
+ * `Indian Truck`
38
+ * `Bus`
39
+ * `Truck`
40
+ * `Tempo Traveller`
41
+ * `Tractor`
42
+ * `Car`
43
+ * `Two Wheelers`
44
+
45
+ ## Sample vs. Full Dataset
46
+
47
+ | | Sample (this repo) | Full Dataset |
48
+ | --- | --- | --- |
49
+ | Images | ~200 (subset) | 50,000+ |
50
+ | Annotation formats | Pascal VOC / YOLO / COCO | COCO, YOLO, Pascal VOC, TF-Record |
51
+ | Locations covered | Representative subset | 1,000+ cities across India |
52
+ | Resolution | HD (1920×1080 and above) | HD (1920×1080 and above) |
53
+ | Scene diversity | Representative subset | Full range (urban, rural, day, night, close, far) |
54
+ | Commercial use | ❌ Not permitted | ✅ With license |
55
+ | Redistribution | ❌ Not permitted | Per license terms |
56
+ | Updates | One-time | Ongoing |
57
+
58
+ **To license the full dataset:** [sales@datacluster.ai](mailto:sales@datacluster.ai)
59
+
60
+ ## Dataset Structure
61
+
62
+ ```
63
+ indian-vehicle-dataset/
64
+ ├── images/ # JPG images
65
+ │ ├── image_0001.jpg
66
+ │ └── ...
67
+ └── annotations/ # Annotations in multiple formats
68
+ ├── voc/ # Pascal VOC XML annotations (one per image)
69
+ │ ├── image_0001.xml
70
+ │ └── ...
71
+ ├── yolo/ # YOLO TXT annotations (one per image)
72
+ │ ├── image_0001.txt
73
+ │ └── ...
74
+ └── coco/ # COCO JSON annotations
75
+ └── annotations.json
76
+ ```
77
+
78
+ Each annotation file contains bounding-box labels for the vehicle classes listed above, with filenames matching their corresponding image.
79
+
80
+ ## Data Collection
81
+
82
+ * **Source:** Real-world mobile phone captures, crowdsourced from 1,000+ contributors
83
+ * **Locations:** 1,000+ cities across urban and rural India
84
+ * **Capture period:** 2020–2022
85
+ * **Resolution:** 100% HD and above (1920×1080+)
86
+ * **Conditions:** Indoor and outdoor scenes; varied lighting (day, night), weather, distances, and vantage points
87
+ * **Quality:** Each image manually reviewed and verified by computer vision professionals at DataCluster Labs
88
+ * **Use cases:** Vehicle detection, automobile classification, construction vehicle detection, self-driving systems, traffic monitoring, smart city applications
89
+
90
+ ## How to Use
91
+
92
+ ### Download
93
+
94
+ ```bash
95
+ # Using the Hugging Face CLI
96
+ huggingface-cli download Dataclusterlabspvtltd/Indian-Vehicle-Dataset --repo-type dataset --local-dir ./indian-vehicle-dataset
97
+ ```
98
+
99
+ Or clone directly:
100
+
101
+ ```bash
102
+ git lfs install
103
+ git clone https://huggingface.co/datasets/Dataclusterlabspvtltd/Indian-Vehicle-Dataset
104
+ ```
105
+
106
+ ### Convert VOC to YOLO or COCO
107
+
108
+ If you only have Pascal VOC annotations, convert easily with `pylabel`:
109
+
110
+ ```python
111
+ from pylabel import importer
112
+
113
+ # VOC → YOLO
114
+ dataset = importer.ImportVOC(path="annotations/voc")
115
+ dataset.export.ExportToYoloV5(output_path="annotations/yolo")
116
+
117
+ # VOC → COCO
118
+ dataset.export.ExportToCoco(output_path="annotations/coco/annotations.json")
119
+ ```
120
+
121
+ ## License
122
+
123
+ This sample dataset is released under the **Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)** license.
124
+
125
+ Key points:
126
+
127
+ * ✅ Free to download and evaluate
128
+ * ✅ Free for academic and non-commercial research with attribution
129
+ * ❌ No commercial use without a license from DataCluster Labs
130
+ * ❌ No derivative works or modifications for redistribution
131
+ * ❌ No use in training commercial ML models
132
+
133
+ For commercial licensing of the full dataset, contact **[sales@datacluster.ai](mailto:sales@datacluster.ai)**.
134
+
135
+ ## Citation
136
+
137
+ If you use this dataset in academic work, please cite:
138
+
139
+ ```bibtex
140
+ @misc{datacluster_indian_vehicle_sample,
141
+ title = {Indian Vehicle Dataset (Sample)},
142
+ author = {DataCluster Labs},
143
+ year = {2026},
144
+ howpublished = {\url{https://huggingface.co/datasets/Dataclusterlabspvtltd/Indian-Vehicle-Dataset}},
145
+ note = {Sample subset. Full dataset available for commercial licensing at sales@datacluster.ai}
146
+ }
147
+ ```
148
+
149
+ ## About DataCluster Labs
150
+
151
+ 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.
152
+
153
+ 📧 **Sales / Full Dataset Access:** [sales@datacluster.ai](mailto:sales@datacluster.ai)
154
+ 🌐 **Website:** [datacluster.ai](https://datacluster.ai)