Datasets:
ArXiv:
License:
Add English dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- visual-question-answering
|
| 5 |
+
- image-classification
|
| 6 |
+
tags:
|
| 7 |
+
- 3d
|
| 8 |
+
- spatial-reasoning
|
| 9 |
+
- object-properties
|
| 10 |
+
- taxonomy
|
| 11 |
+
- simulation
|
| 12 |
+
pretty_name: PercepTax Simulation Metadata
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# PercepTax — Simulation Metadata
|
| 16 |
+
|
| 17 |
+
Supporting metadata for the **PercepTax** benchmark
|
| 18 |
+
([code](https://github.com/XingruiWang/PercepTaxBench) ·
|
| 19 |
+
[VQA dataset](https://huggingface.co/datasets/RyanWW/PercepTaxBench)).
|
| 20 |
+
|
| 21 |
+
This repository holds the **object taxonomy**, **object lists / placement rules**, and
|
| 22 |
+
**per-scene 3D annotations** used to render and annotate the simulated split of PercepTax.
|
| 23 |
+
It is a collection of JSON/CSV/PNG files (not a `load_dataset`-style tabular dataset).
|
| 24 |
+
|
| 25 |
+
## Contents
|
| 26 |
+
|
| 27 |
+
```
|
| 28 |
+
taxonomy/ # the physical-property taxonomy
|
| 29 |
+
├── taxonomy.json # full taxonomy tree
|
| 30 |
+
├── all_objects.json # object → property assignments
|
| 31 |
+
├── material.csv shape.csv color.csv texture.csv
|
| 32 |
+
├── affordance.csv function.csv environment.csv physical_properties.csv
|
| 33 |
+
|
| 34 |
+
objects/ # object catalog & placement rules
|
| 35 |
+
├── background_objects.json
|
| 36 |
+
├── objects_list/ # object lists & class↔instance mappings
|
| 37 |
+
└── object_placement/ # placable-on-table / -chair / -floor lists
|
| 38 |
+
|
| 39 |
+
scenes/ # per-scene 3D annotations
|
| 40 |
+
├── annotations/<SceneName>/<view_id>/
|
| 41 |
+
│ ├── scene_annotations_split.json # camera, background, foreground objects,
|
| 42 |
+
│ │ # 3D boxes, image_path
|
| 43 |
+
│ ├── bbox_visualization_all.png # 2D box overlay
|
| 44 |
+
│ └── bbox_3d_visualization.png # 3D box overlay
|
| 45 |
+
├── filter/ # filtered scene subsets
|
| 46 |
+
└── image_quality_ratings*.json # automated scene quality scores
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
### `scene_annotations_split.json` fields
|
| 50 |
+
`scene_name`, `view_id`, `image_path`, `camera` (intrinsics/extrinsics),
|
| 51 |
+
`background`, `foreground` (objects with labels and 3D bounding boxes).
|
| 52 |
+
|
| 53 |
+
## Usage
|
| 54 |
+
|
| 55 |
+
Browse or download with the Hub API:
|
| 56 |
+
|
| 57 |
+
```python
|
| 58 |
+
from huggingface_hub import snapshot_download
|
| 59 |
+
path = snapshot_download("TaxonomyProject/SimulationMetadata", repo_type="dataset")
|
| 60 |
+
```
|
| 61 |
+
|
| 62 |
+
The rendered scene **images** for the simulated VQA split are bundled in
|
| 63 |
+
[`RyanWW/PercepTaxBench`](https://huggingface.co/datasets/RyanWW/PercepTaxBench) (config `sim`).
|
| 64 |
+
|
| 65 |
+
## License
|
| 66 |
+
|
| 67 |
+
[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/).
|