File size: 1,947 Bytes
c2e13d3 9e322d9 c2e13d3 9e322d9 c2e13d3 |
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 |
<p align="left">
<a href="https://github.com/fudan-zvg/spar.git">
<img alt="GitHub Code" src="https://img.shields.io/badge/Code-spar-black?&logo=github&logoColor=white" />
</a>
<a href="https://arxiv.org/abs/2503.22976">
<img alt="arXiv" src="https://img.shields.io/badge/arXiv-spar-red?logo=arxiv" />
</a>
<a href="https://fudan-zvg.github.io/spar">
<img alt="Website" src="https://img.shields.io/badge/🌎_Website-spar-blue" />
</a>
</p>
# 🎯 SPAR-Bench-RGBD
> A depth-enhanced version of SPAR-Bench for evaluating **3D-aware spatial reasoning** in vision-language models.
**SPAR-Bench-RGBD** extends the full SPAR-Bench with additional **depths**, **camera intrinsics**, and **pose information**, enabling evaluation of models with geometric or 3D-awareness capabilities.
The benchmark contains **7,207 manually verified QA pairs** across 20 spatial tasks and supports single-view and multi-view inputs.
## 📥 Load with `datasets`
```python
from datasets import load_dataset
spar_rgbd = load_dataset("jasonzhango/SPAR-Bench-RGBD")
```
## 🕹️ Evaluation
SPAR-Bench-RGBD uses the **same evaluation protocol and metrics** as the full [SPAR-Bench](https://huggingface.co/datasets/jasonzhango/SPAR-Bench).
We provide an **evaluation pipeline** in our [GitHub repository](https://github.com/hutchinsonian/spar), built on top of [lmms-eval](https://github.com/EvolvingLMMs-Lab/lmms-eval).
## 📚 Bibtex
If you find this project or dataset helpful, please consider citing our paper:
```bibtex
@article{zhang2025from,
title={From Flatland to Space: Teaching Vision-Language Models to Perceive and Reason in 3D},
author={Zhang, Jiahui and Chen, Yurui and Zhou, Yanpeng and Xu, Yueming and Huang, Ze and Mei, Jilin and Chen, Junhui and Yuan, Yujie and Cai, Xinyue and Huang, Guowei and Quan, Xingyue and Xu, Hang and Zhang, Li},
year={2025},
journal={arXiv preprint arXiv:2503.22976},
}
``` |