File size: 5,203 Bytes
cb3c308
b2df537
d8a679b
4d3643a
d8a679b
4d3643a
d8a679b
4d3643a
 
 
 
 
 
d8a679b
 
4d3643a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1741b1e
 
 
 
 
cb3c308
d8a679b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1741b1e
 
d8a679b
 
 
 
1741b1e
d8a679b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ffe87bf
d8a679b
 
 
 
 
75aa572
ffe87bf
 
d8a679b
 
ffe87bf
d8a679b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
language:
- en
task_categories:
- visual-question-answering
tags:
- robotics
- spatial-reasoning
- benchmark
- vlm
- embodied-ai
- multiple-choice
pretty_name: RoboVista
size_categories:
- n<1K
dataset_info:
  features:
  - name: images
    sequence: image
  - name: publication_source
    dtype: string
  - name: question
    dtype: string
  - name: choices
    sequence: string
  - name: correct_answer
    dtype: string
  - name: reasoning
    dtype: string
  - name: id
    dtype: string
  - name: domain
    dtype: string
  - name: task
    dtype: string
  - name: ability_type
    dtype: string
  - name: ability_subcategory
    dtype: string
  - name: creator_name
    dtype: string
  - name: created_at
    dtype: string
  splits:
  - name: train
    num_bytes: 1168067483.0
    num_examples: 474
  download_size: 1102522161
  dataset_size: 1168067483.0
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# RoboVista: Evaluating Vision-Language Models for Diverse Robot Applications

**RSS 2026** · [Project page](https://berkeleyautomation.github.io/robovista/) · [Leaderboard](https://berkeleyautomation.github.io/robovista/leaderboard.html) · [Code](https://github.com/KeplerC/rqa)

RoboVista is a benchmark of **474 multiple-choice questions over real robot scenes** for evaluating
vision-language models on the perception and reasoning skills robots actually need. Each question
pairs one or more images from a real robot deployment (wrist cameras, overhead views, driving
scenes, surgical setups) with 2–5 answer choices, a ground-truth answer, and expert reasoning.

Questions span **six application domains** — agriculture, autonomous driving, domestic,
industrial manufacturing, surgical robotics, and scenes from open robot-learning datasets
(DROID, Bridge, AgiBot, Fractal, Dex-Net, …) — and are labeled by **ability type**: scene
understanding (geometry & spatial reasoning, sequential events, physical interaction) vs.
planning & decision-making (goal/action reasoning, motion feasibility, failure recovery).

## Dataset structure

| Field | Type | Description |
|---|---|---|
| `images` | list[Image] | 1–7 images per question |
| `publication_source` | string | Source dataset / paper for the scene |
| `question` | string | Question text |
| `choices` | list[string] | Up to 5 answer options (A–E; unused slots empty) |
| `correct_answer` | string | Ground-truth letter (`A``E`) |
| `reasoning` | string | Annotator's reasoning for the answer |
| `id` | string | Question id |
| `domain` | string | Application domain (see above) |
| `task` | string | Original task description from the source deployment |
| `ability_type` | string | `scene_understanding`, `high_level_decision_making`, `low_level_motion_awareness`, or `recovery_replanning_robustness` |
| `ability_subcategory` | string | Fine-grained ability label |
| `creator_name` | string | Annotator |

Single `train` split, 474 rows, images embedded (~1.1 GB).

## Usage

```python
from datasets import load_dataset

ds = load_dataset("sy-xie/robovista", split="train")
ex = ds[0]

letters = ["A", "B", "C", "D", "E"]
choices = "\n".join(
    f"{letter}: {c}" for letter, c in zip(letters, ex["choices"]) if c
)
prompt = (
    f"{ex['question']}\n\n{choices}\n\n"
    "Answer with the letter only (A, B, C, D, or E)."
)
# send ex["images"] + prompt to your VLM, compare to ex["correct_answer"]
```

The evaluation harness (server launch scripts, standard/CoT prompts, answer parsing) is in the
[code repository](https://github.com/KeplerC/rqa).

## Leaderboard

Accuracy with the standard prompt and a chain-of-thought prompt (top models shown; full results
and per-domain breakdowns on the [leaderboard page](https://berkeleyautomation.github.io/robovista/leaderboard.html)):

| Model | Weights | Standard | CoT |
|---|---|---:|---:|
| Gemini 3 Flash (preview) | API | **68.9** | 65.4 |
| Qwen3.5-397B-A17B | open | 55.2 | 52.8 |
| GPT-5-0 | API | 54.6 | 54.6 |
| Qwen3.6-27B | open | 53.5 | 54.4 |
| Gemma 4 31B | open | 51.5 | 55.4 |
| Qwen3.6-35B-A3B | open | 50.9 | 50.0 |
| Qwen3-VL-32B-Thinking | open | 49.6 | 51.3 |
| GPT-4o | API | 48.5 | — |
| GLM-4.6V | open | 48.0 | 45.0 |
| RoboBrain2.5-8B-NV | open | 45.7 | 40.4 |
| Cosmos-Reason2-32B | open | 46.1 | 42.0 |
| Cosmos3-Nano (16B) | open | 44.4 | 39.8 |
| Gemma 4 12B | open | 41.7 | 45.4 |
| Molmo2-8B | open | 41.7 | 33.0 |
| Cosmos-Reason1-7B | open | 41.3 | 39.8 |
| Cosmos-Reason2-2B | open | 38.3 | 33.5 |

Scoring notes: 460 of 474 questions are scored (a 14-question blacklist is excluded); answers are
extracted with the harness's improved parser; Qwen3/3.5/3.6 rows run in non-thinking mode.

## Citation

```bibtex
@inproceedings{robovista2026,
  title     = {RoboVista: Evaluating Vision-Language Models for Diverse Robot Applications},
  author    = {Xie, Shuangyu and Chen, Kaiyuan and Chen, Ziyang and Adebola, Simeon and
               Huang, Yixuan and Ma, Zehan and Qiu, Tianshuang and Yuan, Wentao and
               Shah, Dhruv and Sanketi, Pannag R. and Goldberg, Ken},
  booktitle = {Robotics: Science and Systems (RSS)},
  year      = {2026}
}
```