Dataclusterlabs commited on
Commit
6f32afb
·
verified ·
1 Parent(s): fde142a

Update README.md

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