shubh303 commited on
Commit
4a001a7
·
verified ·
1 Parent(s): 66ba86c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +26 -3
README.md CHANGED
@@ -81,12 +81,35 @@ This dataset is designed for training and evaluating **open-world object detecti
81
 
82
  | Metric | Value |
83
  |--------|-------|
84
- | Total Images | 8,001 |
85
  | Total Annotations | 344,079 |
86
- | Total Categories | 1,106 |
87
  | Avg. Annotations per Image | ~43 |
 
88
  | Annotation Format | COCO-style bounding boxes |
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  ### Example Categories
91
 
92
  The dataset includes diverse categories such as:
@@ -218,4 +241,4 @@ If you use this dataset in your research, please cite:
218
 
219
  ## License
220
 
221
- This dataset is released under the MIT License.
 
81
 
82
  | Metric | Value |
83
  |--------|-------|
84
+ | Labeled Images | 8,001 |
85
  | Total Annotations | 344,079 |
86
+ | Total Categories | 1,038 |
87
  | Avg. Annotations per Image | ~43 |
88
+ | Unlabeled Images | 4,000+ |
89
  | Annotation Format | COCO-style bounding boxes |
90
 
91
+ ### Unlabeled Images
92
+
93
+ This dataset also includes **4,000+ unlabeled images** in `unlabeled_images.zip`. These images:
94
+ - Have been deduplicated using DINOv3 embeddings (similarity threshold 0.95)
95
+ - Do not overlap with the labeled training images
96
+ - Can be used for semi-supervised learning, self-training, or pseudo-labeling
97
+
98
+ ```python
99
+ # Download and extract unlabeled images
100
+ from huggingface_hub import hf_hub_download
101
+ import zipfile
102
+
103
+ zip_path = hf_hub_download(
104
+ repo_id="shubh303/open-world-dense-object-detection",
105
+ filename="unlabeled_images.zip",
106
+ repo_type="dataset"
107
+ )
108
+
109
+ with zipfile.ZipFile(zip_path, 'r') as zip_ref:
110
+ zip_ref.extractall("./unlabeled_images")
111
+ ```
112
+
113
  ### Example Categories
114
 
115
  The dataset includes diverse categories such as:
 
241
 
242
  ## License
243
 
244
+ This dataset is released under the MIT License.