File size: 7,271 Bytes
88fd17a 8a72c6a f43ee35 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 706c1a2 8a72c6a 88fd17a 8a72c6a 84756ce 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 996646f 88fd17a c5dcb19 8a72c6a 23f4c67 8a72c6a c5dcb19 8a72c6a c5dcb19 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8711393 88fd17a 8711393 88fd17a 8711393 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 8a72c6a 88fd17a 2bd060d bc4488f 2bd060d bc4488f 88fd17a 8a72c6a 88fd17a bc4488f 88fd17a 8a72c6a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | ---
license: cc-by-nc-4.0
task_categories:
- visual-question-answering
- robotics
- image-to-text
language:
- en
pretty_name: UnoBench
tags:
- vision-language
- robotic-grasping
- obstruction-reasoning
- cluttered-scenes
- set-of-mark
- benchmark
---
# UnoBench
**UnoBench** is a benchmark for target-centric obstruction reasoning in robotic grasping under cluttered scenes. Given a target object, a method must identify the objects that block or constrain access to that target before grasping.
UnoBench is built upon [MetaGraspNetV2](https://github.com/maximiliangilles/MetaGraspNet) and extends the initial idea of [FreeGraspData](https://huggingface.co/datasets/FBK-TeV/FreeGraspData).
## Resources
| Resource | Link | Description |
| --- | --- | --- |
| UnoGrasp code | [GitHub main branch](https://github.com/tev-fbk/UnoGrasp/tree/main) | Method code, checkpoints, inference, and evaluation. |
| Challenge starter kit | [GitHub challenge branch](https://github.com/tev-fbk/unobenchchallenge/tree/master) | Minimal examples and local evaluators for the UnoBench Challenge. |
| Project page | [tev-fbk.github.io/UnoGrasp](https://tev-fbk.github.io/UnoGrasp/) | Paper, video, and release links. |
## Dataset Overview
<img src="benchmark.jpg" alt="UnoBench teaser" width="1500">
UnoBench provides synthetic cluttered-scene data with RGB images, Set-of-Mark images, instance annotations, natural-language object descriptions, and obstruction metadata.
The benchmark supports two settings:
| Setting | Target input | Expected output | Main use case |
| --- | --- | --- | --- |
| NLP | Natural-language target description and RGB image | Obstructing objects, represented by points or grounded object IDs | Vision-language and language-conditioned methods. |
| SoM | Set-of-Mark image and target object ID | Obstructing object IDs | Object-centric, graph-based, or modular robotic reasoning methods. |
## Dataset Structure
```text
UnoBench/
`-- UnoBenchSyn/
|-- images.zip
|-- images_som.zip
|-- annotations.zip
|-- test_GT_small.json
|-- test_nlp_small.jsonl
|-- test_som_small.jsonl
|-- challenge_only/
| |-- test_nlp.jsonl
| `-- test_som.jsonl
`-- meta_data/
|-- Synthetic_train.json
|-- image_id_scene_view_id_mapping.json
|-- name_for_all.json
|-- annotations_meta.zip
`-- occ_info/
|-- obs_information.json
`-- masks.zip
```
After extracting the main archives, the dataset also contains:
```text
UnoBenchSyn/
|-- images/ # RGB images
|-- images_som/ # Set-of-Mark images
`-- annotations/ # Instance masks used by NLP point evaluation
```
## File Description
### Main Archives
| File | Description |
| --- | --- |
| `images.zip` | RGB images of synthetic cluttered scenes. |
| `images_som.zip` | Set-of-Mark images with object IDs / visual prompts. |
| `annotations.zip` | Instance segmentation masks associated with each image. These masks map image points to object IDs. |
### Reproduction Files
These files are used by the [UnoGrasp code](https://github.com/tev-fbk/UnoGrasp/tree/main) for inference and evaluation on the released small split.
| File | Description |
| --- | --- |
| `test_GT_small.json` | Ground-truth obstruction annotations for the small test split. |
| `test_som_small.jsonl` | Evaluation samples for the SoM setting. |
| `test_nlp_small.jsonl` | Evaluation samples for the NLP setting. |
### Challenge Files
These files are used by the [UnoBench Challenge](https://unobenchchallenge.fbk.eu/).
| File | Description |
| --- | --- |
| `challenge_only/test_som.jsonl` | Challenge Track 1: Set-of-Mark reasoning. |
| `challenge_only/test_nlp.jsonl` | Challenge Track 2: natural-language reasoning. |
### Metadata
| File | Description |
| --- | --- |
| `meta_data/Synthetic_train.json` | Query object, target objects, occlusion paths, and difficulty level for each sample. |
| `meta_data/image_id_scene_view_id_mapping.json` | Mapping between image IDs, scene IDs, and view IDs. |
| `meta_data/name_for_all.json` | Human-annotated object descriptions. |
| `meta_data/annotations_meta.zip` | MetaGraspNetV2 annotations, including depth, semantic segmentation, instance segmentation, and occlusion masks. |
| `meta_data/occ_info/obs_information.json` | Pairwise obstruction/occlusion information, such as obstruction ratio, contact point, and obstruction degree. |
| `meta_data/occ_info/masks.zip` | Instance masks for obstruction pairs. |
## Download
Install the Hugging Face CLI if needed:
```bash
pip install -U huggingface_hub
```
Download the full dataset:
```bash
hf download FBK-TeV/UnoBench \
--repo-type dataset \
--local-dir ./UnoBench/UnoBenchSyn
```
Or download individual archives:
```bash
hf download FBK-TeV/UnoBench images.zip \
--repo-type dataset \
--local-dir ./UnoBench/UnoBenchSyn
hf download FBK-TeV/UnoBench images_som.zip \
--repo-type dataset \
--local-dir ./UnoBench/UnoBenchSyn
hf download FBK-TeV/UnoBench annotations.zip \
--repo-type dataset \
--local-dir ./UnoBench/UnoBenchSyn
```
## Extraction
After downloading, unzip the main archives:
```bash
cd UnoBench/UnoBenchSyn
unzip images.zip
unzip images_som.zip
unzip annotations.zip
```
## Evaluation Splits
| Split / file | Purpose |
| --- | --- |
| `test_som_small.jsonl` | SoM reproduction with the released UnoGrasp small checkpoint. |
| `test_nlp_small.jsonl` | NLP reproduction with the released UnoGrasp small checkpoint. |
| `test_GT_small.json` | Ground truth for local reproduction evaluation. |
| `challenge_only/test_som.jsonl` | Official challenge queries for the SoM track. |
| `challenge_only/test_nlp.jsonl` | Official challenge queries for the NLP track. |
The challenge test ground truth is reserved for official leaderboard evaluation.
## Metadata Format
Metadata files provide scene-level and object-level information, including:
```text
image_id
scene_id
view_id
query_object
target_object
occlusion_paths
difficulty
num_paths
k_min
som_only
```
The obstruction information is target-centric: for each target object, UnoBench describes the objects that obstruct it and the corresponding obstruction paths.
## Notes
UnoBench focuses on high-level obstruction reasoning before grasping, rather than low-level grasp pose execution or robot control. In this release, obstruction is operationalized mainly through occlusion relationships in cluttered scenes.
## Citation
If you use UnoBench in your research, please cite:
```bibtex
@inproceedings{jiao2026obstruction,
title = {Obstruction Reasoning for Robotic Grasping},
author = {Runyu Jiao and Matteo Bortolon and Francesco Giuliari and Alice Fasoli and Sergio Povoli and Guofeng Mei and Yiming Wang and Fabio Poiesi},
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
year = {2026}
}
```
## License
UnoBench is released under the **CC BY-NC 4.0 license** for academic, non-commercial use. Please refer to the license information on the Hugging Face dataset page before using the data.
## Contact
For questions about the dataset, please contact:
```text
Runyu Jiao: rjiao@fbk.eu
Fondazione Bruno Kessler / University of Trento
```
|