Datasets:
Tasks:
Visual Question Answering
Formats:
imagefolder
Languages:
English
Size:
1K - 10K
ArXiv:
License:
File size: 6,890 Bytes
416765e a6e9bef 99954db 416765e a6e9bef 416765e a6e9bef 416765e a6e9bef 416765e a6e9bef d0beb0a 416765e a6e9bef 416765e 106c68b 416765e 99954db | 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 | ---
pretty_name: MultiView-Bench
license: mit
task_categories:
- visual-question-answering
language:
- en
tags:
- multi-view
- spatial-reasoning
- vlm-benchmark
- synthetic
size_categories:
- 1K<n<10K
configs:
- config_name: default
drop_labels: true
---
# MultiView-Bench
Evaluation data for **MultiView-Bench: A Diagnostic Benchmark for
World-Centric Multi-View Integration in VLMs**
([arXiv:2607.08970](https://arxiv.org/abs/2607.08970)).
This repository currently contains the synthetic image-and-text portion of the
benchmark. The real-world subset is not included; see the scope note below.
## Contents
- 2,400 evaluation samples across 24 benchmark variants
- 7,900 PNG views (2.94 GiB logical image data)
- One, three, or six images per sample
- English question text and deterministic coordinate answer
- Single-agent and multi-agent question schemas
The `3D Real World` / `exp3D_real_world_50` subset is intentionally excluded.
It uses 3DCoMPaT++ source assets and is not part of this release. This package
also contains no GLTF, BIN, model asset, source code, credentials, or model
outputs.
## Task previews
Each sample asks for a relative 3D position and must be solved by integrating
the evidence across its views.
### Colored-object three-view task
**Question:** What is the relative position of the olive cone to the indigo
cube?
**Answer:** `(-X, -Y, -Z)`
| Front | Side | Top |
|:---:|:---:|:---:|
|  |  |  |
### 3D isometric task
**Question:** What is the relative position of the cylinder to the cone?
**Answer:** `(0X, 0Y, -Z)`
The full sample contains six views; three are shown here.
| View 0 | View 2 | View 4 |
|:---:|:---:|:---:|
|  |  |  |
### Full 3D reasoning (DoF=3)
**Task variant:** `3D DoF=3` (unconstrained placement along X, Y, and Z)
**Question:** What is the relative position of the cube to the cylinder?
**Answer:** `(-X, +Y, +Z)`
The full sample contains six views; three are shown here.
| View 0 | View 2 | View 4 |
|:---:|:---:|:---:|
|  |  |  |
### Single-view 3D task
**Task variant:** `3D Single View`
**Question:** What is the relative position of the cube to the cylinder?
**Answer:** `(-X, +Y, +Z)`
Unlike the multi-view variants, this sample exposes only one isometric view.

### Grid-assisted three-view task
**Task variant:** `2D Three Views Grids`
**Question:** What is the relative position of the cylinder to the sphere?
**Answer:** `(0X, -Y, -Z)`
The projected coordinate grids provide additional alignment cues in each view.
| Front | Side | Top |
|:---:|:---:|:---:|
|  |  |  |
### Rotated-coordinate task (90°)
**Task variant:** `2D Three Views Rotation (90°)`
**Question:** What is the relative position of the cube to the cone?
**Answer:** `(+X, 0Y, -Z)`
The coordinate frame is rotated to test whether the model follows the visible
axes rather than relying on a conventional orientation.
| Front | Side | Top |
|:---:|:---:|:---:|
|  |  |  |
### Multi-agent three-view task
**Task variant:** `2D Three Views multiagent (Rotation 0)`
**Question:** What is the relative position of the sphere to the cone?
**Answer:** `(-X, -Y, +Z)`
Each view has its own axis-pair prompt (`front_question`, `side_question`, or
`top_question`) so three view-specific responses can be combined into the
full XYZ answer.
| Front agent: XZ | Side agent: YZ | Top agent: XY |
|:---:|:---:|:---:|
|  |  |  |
## Load
After upload:
```python
from datasets import load_dataset
dataset = load_dataset("suijinru/MultiViewBench", split="test")
sample = dataset[0]
print(sample["benchmark"], sample["question"], sample["answer"])
print(sample["images"])
```
For a local pre-upload check:
```python
dataset = load_dataset("imagefolder", data_dir="test", split="train")
```
`ImageFolder` derives the `images` column from the `images_file_names` list in
`test/metadata.jsonl`. The Hub recognizes columns ending in `_file_names` as
image lists.
## Fields
- `benchmark`: benchmark variant identifier
- `task_variant`: human-readable task variant label used to group corresponding
results in the paper; it is not a row number. For the 3D variants, DoF
describes the object-placement constraint: DoF=1 restricts objects to the
same axis, DoF=2 restricts them to the same plane, and DoF=3 allows
unconstrained placement in 3D space.
- `task_id`: task identifier within the variant
- `mode`: `single` or `multi`
- `question`: complete prompt for single-agent samples
- `front_question`, `side_question`, `top_question`: per-view prompts for
multi-agent samples
- `answer`: expected coordinate answer
- `images_file_names`: ordered relative paths to all views
- `num_views`: number of views
All rows are evaluation data; do not use them for training when reporting
MultiView-Bench scores.
## License
The released synthetic images, questions, answers, and metadata are available
under the [MIT License](LICENSE). Copyright (c) 2026 MultiView-Bench authors.
|