prithivMLmods commited on
Commit
bdebe6d
·
verified ·
1 Parent(s): 782b72e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +100 -1
README.md CHANGED
@@ -39,4 +39,103 @@ language:
39
  pretty_name: OpenDetection
40
  size_categories:
41
  - 10K<n<100K
42
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  pretty_name: OpenDetection
40
  size_categories:
41
  - 10K<n<100K
42
+ ---
43
+
44
+ # **OpenDetection-15K-Dense-v1.0**
45
+
46
+ **OpenDetection-15K-Dense-v1.0** is an object detection dataset built primarily from general, publicly available images, which make up the majority of the input imagery, together with additional publicly available datasets. The dataset contains high-quality object detection annotations generated using modern automated computer vision pipelines, providing structured object labels, confidence scores, and bounding box coordinates for every detected object. Each sample includes the original image, machine-readable detection annotations, and a rendered visualization with all detected objects overlaid on the image. The dataset is intended for training, evaluation, benchmarking, and multimodal computer vision research, and is distributed using the Hugging Face Datasets format with optimized Parquet files for efficient loading and large-scale machine learning workflows.
47
+
48
+ ## Dataset Statistics
49
+
50
+ | Property | Value |
51
+ |-----------|-------|
52
+ | Number of Samples | 14,911 |
53
+ | Image Format | RGB |
54
+ | Annotation Format | JSON |
55
+ | Visualization | Annotated Image |
56
+ | Dataset Format | Optimized Parquet |
57
+
58
+ ---
59
+
60
+ ## Dataset Structure
61
+
62
+ Each sample contains the following fields:
63
+
64
+ | Column | Type | Description |
65
+ |---------|------|-------------|
66
+ | `image` | Image | Original input image |
67
+ | `objects` | List | Object detection annotations containing labels, label IDs, confidence scores, and bounding boxes |
68
+ | `annotated_image` | Image | Visualization of the image with rendered bounding boxes |
69
+
70
+ Example:
71
+
72
+ ```python
73
+ sample = ds[0]
74
+
75
+ print(sample.keys())
76
+
77
+ # dict_keys([
78
+ # "image",
79
+ # "objects",
80
+ # "annotated_image"
81
+ # ])
82
+ ```
83
+
84
+ ## Loading the Dataset
85
+
86
+ ```python
87
+ from datasets import load_dataset
88
+
89
+ ds = load_dataset(
90
+ "prithivMLmods/OpenDetection-15K-Dense-v1.0",
91
+ split="train"
92
+ )
93
+ ```
94
+
95
+ ## Example Usage
96
+
97
+ ```python
98
+ from datasets import load_dataset
99
+ import matplotlib.pyplot as plt
100
+
101
+ ds = load_dataset(
102
+ "prithivMLmods/OpenDetection-15K-Dense-v1.0",
103
+ split="train"
104
+ )
105
+
106
+ sample = ds[0]
107
+
108
+ image = sample["image"]
109
+ objects = sample["objects"]
110
+ annotated = sample["annotated_image"]
111
+
112
+ print("Detected Objects:")
113
+ print(objects)
114
+
115
+ fig, axes = plt.subplots(1, 2, figsize=(12, 6))
116
+
117
+ axes[0].imshow(image)
118
+ axes[0].set_title("Image")
119
+ axes[0].axis("off")
120
+
121
+ axes[1].imshow(annotated)
122
+ axes[1].set_title("Annotated Image")
123
+ axes[1].axis("off")
124
+
125
+ plt.show()
126
+ ```
127
+
128
+ ## Dataset Features
129
+
130
+ - High-quality object detection annotations
131
+ - Structured JSON object annotations
132
+ - Bounding box coordinates for every detected object
133
+ - Confidence scores for each detection
134
+ - Annotated visualization for every image
135
+ - Optimized Parquet format for efficient loading
136
+ - Compatible with the Hugging Face Datasets library
137
+ - Suitable for object detection training, evaluation, benchmarking, and multimodal computer vision research
138
+
139
+ ## License
140
+
141
+ This dataset is released under the **Apache-2.0 License**.