Evaluates multimodal LLMs' ability to understand and disambiguate spatial relations (e.g., on, under, left of, right of, in front of, behind) between objects in images. It isolates spatial reasoning from object grounding by providing depth maps, bounding boxes, and segmentation masks alongside images. Use when the user wants to benchmark on GSR-Bench, or asks about evaluating this task. Reports accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill gsr-bench-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Gsr Bench Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-gsr-bench-eval)More formats (shields.io, HTML) on the badges page.
---
name: gsr-bench-eval
description: Evaluates multimodal LLMs' ability to understand and disambiguate spatial relations (e.g., on, under, left of, right of, in front of, behind) between objects in images. It isolates spatial reasoning from object grounding by providing depth maps, bounding boxes, and segmentation masks alongside images. Use when the user wants to benchmark on GSR-Bench, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2406.13246
bibtex_key: rajabi2024gsrbench
confidence: high
---
# gsr-bench-eval
> GSR-BENCH: A Benchmark for Grounded Spatial Reasoning Evaluation via Multimodal LLMs — Rajabi et al. (2024) (arXiv:2406.13246, 2024)
## What this evaluates
Evaluates multimodal LLMs' ability to understand and disambiguate spatial relations (e.g., on, under, left of, right of, in front of, behind) between objects in images. It isolates spatial reasoning from object grounding by providing depth maps, bounding boxes, and segmentation masks alongside images.
## Datasets
- **GSR-Bench** — total ?; splits: test (-1)
## Metrics
- `accuracy` **(primary)** — range: percent
- Percentage of correctly predicted spatial relations out of total test instances.
## Input / output format
**Input**: RGB image, spatial relation query/clause (e.g., 'Is object A on object B?'), and optionally depth map, bounding box coordinates, and segmentation masks.
**Output**: Text prediction of the spatial relation (e.g., 'on', 'under', 'left of', 'right of', 'in front of', 'behind').
## Scoring recipe
```python
correct = 0
for pred, gold in zip(predictions, gold_labels):
if pred.strip().lower() == gold.strip().lower():
correct += 1
return (correct / len(gold_labels)) * 100
```
## Common pitfalls
- Confusing spatial relations when depth cues are absent, leading to front/back or left/right disambiguation errors.
- Models may rely on object grounding priors rather than true spatial reasoning if masks/boxes are not properly conditioned.
- Prompting strategies and depth-augmentation significantly impact scores, making cross-model comparisons sensitive to input formatting.
## Evidence (verbatim from paper)
> LLaMA-3-LLaVA-NeXT-8B achieves 86.1% accuracy, outperforming XVLM-COCO (60.4%) and demonstrating strong scalability with depth-augmented prompting that improves disambiguation of front/back and left/right relations.
## Citation
```bibtex
@misc{rajabi2024gsrbench,
title={GSR-BENCH: A Benchmark for Grounded Spatial Reasoning Evaluation via Multimodal LLMs},
author={Rajabi et al. (2024)},
year={2024},
note={arXiv:2406.13246}
}
```
- arXiv: 2406.13246
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!