Dataclusterlabs commited on
Commit
7aaf8cb
·
verified ·
1 Parent(s): 7877848

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +142 -1
README.md CHANGED
@@ -1,3 +1,144 @@
1
  ---
2
- license: cc-by-nc-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ license_name: datacluster-commercial-sample
4
+ license_link: LICENSE
5
+ tags:
6
+ - object-detection
7
+ - image-classification
8
+ - traffic-sign
9
+ - self-driving
10
+ - autonomous-vehicles
11
+ - generative-ai
12
+ - visual-question-answering
13
+ - computer-vision
14
+ - sample-dataset
15
+ pretty_name: Indian Traffic Sign Image Dataset (Sample)
16
+ size_categories:
17
+ - n<1K
18
+ task_categories:
19
+ - object-detection
20
+ - image-classification
21
  ---
22
+
23
+ # Indian Traffic Sign Image Dataset (Sample)
24
+
25
+ > ⚠️ **This is a free sample subset for evaluation purposes only.**
26
+ > The full dataset (2,000+ HD images) is available for commercial licensing.
27
+ > **Contact:** [sales@datacluster.ai](mailto:sales@datacluster.ai) · [datacluster.ai](https://datacluster.ai)
28
+
29
+ ---
30
+
31
+ ## Dataset Summary
32
+
33
+ This dataset is an extremely challenging collection of original Indian traffic sign images, crowdsourced from over 400 urban and rural areas. Every image is manually reviewed and verified by computer vision professionals at DataCluster Labs.
34
+
35
+ Optimized for **Generative AI, Visual Question Answering, Image Classification, and LMM development**, this dataset provides a strong basis for robust model performance in traffic sign detection and related tasks.
36
+
37
+ ## Dataset Features (Full Dataset)
38
+
39
+ | Feature | Detail |
40
+ |---|---|
41
+ | **Dataset size** | 2,000+ images |
42
+ | **Captured by** | 400+ crowdsource contributors |
43
+ | **Resolution** | 100% HD and above (1920x1080+) |
44
+ | **Location** | 400+ cities across India |
45
+ | **Diversity** | Day, night, varied distances, viewpoints |
46
+ | **Device** | Mobile phones, captured 2020–2021 |
47
+ | **Usage** | Traffic sign detection, self-driving systems, traffic detection, sign detection |
48
+ | **Ownership** | Exclusively owned by DataCluster Labs — not scraped from the internet |
49
+
50
+ ## Sample vs. Full Dataset
51
+
52
+ | | Sample (this repo) | Full Dataset |
53
+ |---|---|---|
54
+ | Images | Small representative subset | 2,000+ |
55
+ | Annotation formats | Pascal VOC (XML) | COCO, YOLO, Pascal VOC, TF-Record |
56
+ | Resolution | HD and above | HD and above (1920x1080+) |
57
+ | Commercial use | ❌ Not permitted | ✅ With license |
58
+ | Redistribution | ❌ Not permitted | Per license terms |
59
+
60
+ **To license the full dataset:** [sales@datacluster.ai](mailto:sales@datacluster.ai)
61
+
62
+ ## Dataset Structure
63
+
64
+ ```
65
+ Indian_Traffic_Sign_Image_Dataset/
66
+ ├── images/
67
+ │ ├── img001.jpg
68
+ │ └── ...
69
+ └── annotations/
70
+ └── voc/
71
+ ├── img001.xml
72
+ └── ...
73
+ ```
74
+
75
+ Each XML file contains bounding-box annotations in Pascal VOC format, with filenames matching their corresponding image.
76
+
77
+ ## Data Collection
78
+
79
+ - **Source:** Crowdsourced original photography — not downloaded from the internet
80
+ - **Contributors:** 400+ crowdsource contributors across India
81
+ - **Conditions:** Day, night, varied lighting, distances, and viewpoints
82
+ - **Use cases:** Traffic sign detection, self-driving/autonomous vehicle systems, ADAS, generative AI, VQA, LMM training
83
+
84
+ ## How to Use
85
+
86
+ ### Download
87
+
88
+ ```bash
89
+ huggingface-cli download Dataclusterlabspvtltd/Indian_Traffic_Sign_Image_Dataset --repo-type dataset --local-dir ./Indian_Traffic_Sign_Image_Dataset
90
+ ```
91
+
92
+ Or clone directly:
93
+
94
+ ```bash
95
+ git lfs install
96
+ git clone https://huggingface.co/datasets/Dataclusterlabspvtltd/Indian_Traffic_Sign_Image_Dataset
97
+ ```
98
+
99
+ ### Convert VOC to YOLO or COCO
100
+
101
+ ```python
102
+ from pylabel import importer
103
+
104
+ # VOC → YOLO
105
+ dataset = importer.ImportVOC(path="annotations/voc")
106
+ dataset.export.ExportToYoloV5(output_path="annotations/yolo")
107
+
108
+ # VOC → COCO
109
+ dataset.export.ExportToCoco(output_path="annotations/coco/annotations.json")
110
+ ```
111
+
112
+ ## License
113
+
114
+ This sample dataset is released under a **restricted commercial-sample license** — see the `LICENSE` file in this repository.
115
+
116
+ Key points:
117
+ - ✅ Free to download and evaluate
118
+ - ✅ Free for academic research with attribution
119
+ - ❌ No commercial use without a license from DataCluster Labs
120
+ - ❌ No redistribution or re-upload
121
+ - ❌ No use in training commercial ML models
122
+
123
+ The images are exclusively owned by DataCluster Labs. To access the full dataset for research or commercial purposes, a license can be purchased.
124
+
125
+ **Contact:** [sales@datacluster.ai](mailto:sales@datacluster.ai)
126
+
127
+ ## Citation
128
+
129
+ ```bibtex
130
+ @misc{datacluster_indian_traffic_sign_sample,
131
+ title = {Indian Traffic Sign Image Dataset (Sample)},
132
+ author = {DataCluster Labs},
133
+ year = {2026},
134
+ howpublished = {\url{https://huggingface.co/datasets/Dataclusterlabspvtltd/Indian_Traffic_Sign_Image_Dataset}},
135
+ note = {Sample subset. Full dataset (2,000+ images) available for commercial licensing at sales@datacluster.ai}
136
+ }
137
+ ```
138
+
139
+ ## About DataCluster Labs
140
+
141
+ 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.
142
+
143
+ 📧 **Sales / Full Dataset Access:** sales@datacluster.ai
144
+ 🌐 **Website:** [datacluster.ai](https://datacluster.ai)