Datasets:
Update dataset card with paper link, project links, and sample usage
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,27 +1,66 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
|
|
|
|
|
|
| 3 |
task_categories:
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
- 3d-object-detection
|
| 7 |
-
- 3d-bounding-box
|
| 8 |
-
- monocular-3d
|
| 9 |
-
- in-the-wild
|
| 10 |
-
- benchmark
|
| 11 |
pretty_name: WildDet3D Benchmark
|
| 12 |
-
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
# WildDet3D Benchmark
|
| 17 |
|
| 18 |
-
|
|
|
|
|
|
|
| 19 |
|
| 20 |
| Split | Images | Annotations | Categories |
|
| 21 |
|-------|--------|-------------|------------|
|
| 22 |
| Val | 2,470 | 9,256 | 785 |
|
| 23 |
|
| 24 |
-
**Note:** The test set is held out for hidden evaluation and is not publicly available. Please submit predictions to
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
## Download
|
| 27 |
|
|
@@ -75,6 +114,20 @@ Same format as [WildDet3D-Data](https://huggingface.co/datasets/weikaih/WildDet3
|
|
| 75 |
- **`bbox3D_cam`**: 8 corner points of the 3D bounding box
|
| 76 |
- **`bbox2D_proj`**: 2D bounding box `[x1, y1, x2, y2]`
|
| 77 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 78 |
## License
|
| 79 |
|
| 80 |
-
CC BY 4.0
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
+
size_categories:
|
| 4 |
+
- 1K<n<10K
|
| 5 |
task_categories:
|
| 6 |
+
- object-detection
|
| 7 |
+
- zero-shot-object-detection
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
pretty_name: WildDet3D Benchmark
|
| 9 |
+
tags:
|
| 10 |
+
- 3d-object-detection
|
| 11 |
+
- 3d-bounding-box
|
| 12 |
+
- monocular-3d
|
| 13 |
+
- in-the-wild
|
| 14 |
+
- benchmark
|
| 15 |
---
|
| 16 |
|
| 17 |
# WildDet3D Benchmark
|
| 18 |
|
| 19 |
+
[**Project Page**](https://allenai.github.io/WildDet3D/) | [**Paper**](https://huggingface.co/papers/2604.08626) | [**GitHub**](https://github.com/allenai/WildDet3D)
|
| 20 |
+
|
| 21 |
+
In-the-wild 3D object detection benchmark (val and test splits) from COCO, LVIS, and Objects365. This benchmark was introduced in the paper [WildDet3D: Scaling Promptable 3D Detection in the Wild](https://huggingface.co/papers/2604.08626).
|
| 22 |
|
| 23 |
| Split | Images | Annotations | Categories |
|
| 24 |
|-------|--------|-------------|------------|
|
| 25 |
| Val | 2,470 | 9,256 | 785 |
|
| 26 |
|
| 27 |
+
**Note:** The test set is held out for hidden evaluation and is not publicly available. Please submit predictions to the evaluation server for test set evaluation.
|
| 28 |
+
|
| 29 |
+
## Sample Usage
|
| 30 |
+
|
| 31 |
+
You can use the following code snippet from the [official repository](https://github.com/allenai/WildDet3D) to run inference using text prompts with a WildDet3D model:
|
| 32 |
+
|
| 33 |
+
```python
|
| 34 |
+
from wilddet3d import build_model, preprocess
|
| 35 |
+
from wilddet3d.vis.visualize import draw_3d_boxes
|
| 36 |
+
import numpy as np
|
| 37 |
+
from PIL import Image
|
| 38 |
+
|
| 39 |
+
# Build model
|
| 40 |
+
model = build_model(
|
| 41 |
+
checkpoint="ckpt/wilddet3d_alldata_all_prompt_v1.0.pt",
|
| 42 |
+
score_threshold=0.3,
|
| 43 |
+
skip_pretrained=True,
|
| 44 |
+
)
|
| 45 |
+
|
| 46 |
+
# Load and preprocess image
|
| 47 |
+
image = np.array(Image.open("image.jpg")).astype(np.float32)
|
| 48 |
+
|
| 49 |
+
# With known camera intrinsics
|
| 50 |
+
intrinsics = np.load("intrinsics.npy") # (3, 3)
|
| 51 |
+
data = preprocess(image, intrinsics)
|
| 52 |
+
|
| 53 |
+
# Text prompt: detect all instances of given categories
|
| 54 |
+
results = model(
|
| 55 |
+
images=data["images"].cuda(),
|
| 56 |
+
intrinsics=data["intrinsics"].cuda()[None],
|
| 57 |
+
input_hw=[data["input_hw"]],
|
| 58 |
+
original_hw=[data["original_hw"]],
|
| 59 |
+
padding=[data["padding"]],
|
| 60 |
+
input_texts=["car", "person", "bicycle"],
|
| 61 |
+
)
|
| 62 |
+
boxes, boxes3d, scores, scores_2d, scores_3d, class_ids, depth_maps = results
|
| 63 |
+
```
|
| 64 |
|
| 65 |
## Download
|
| 66 |
|
|
|
|
| 114 |
- **`bbox3D_cam`**: 8 corner points of the 3D bounding box
|
| 115 |
- **`bbox2D_proj`**: 2D bounding box `[x1, y1, x2, y2]`
|
| 116 |
|
| 117 |
+
## Citation
|
| 118 |
+
|
| 119 |
+
```bibtex
|
| 120 |
+
@misc{huang2026wilddet3dscalingpromptable3d,
|
| 121 |
+
title={WildDet3D: Scaling Promptable 3D Detection in the Wild},
|
| 122 |
+
author={Weikai Huang and Jieyu Zhang and Sijun Li and Taoyang Jia and Jiafei Duan and Yunqian Cheng and Jaemin Cho and Mattew Wallingford and Rustin Soraki and Chris Dongjoo Kim and Donovan Clay and Taira Anderson and Winson Han and Ali Farhadi and Bharath Hariharan and Zhongzheng Ren and Ranjay Krishna},
|
| 123 |
+
year={2026},
|
| 124 |
+
eprint={2604.08626},
|
| 125 |
+
archivePrefix={arXiv},
|
| 126 |
+
primaryClass={cs.CV},
|
| 127 |
+
url={https://arxiv.org/abs/2604.08626},
|
| 128 |
+
}
|
| 129 |
+
```
|
| 130 |
+
|
| 131 |
## License
|
| 132 |
|
| 133 |
+
CC BY 4.0
|