Jaehwisong commited on
Commit
24be9e4
·
verified ·
1 Parent(s): edc8ab7

Add files using upload-large-folder tool

Browse files
README.md ADDED
@@ -0,0 +1,217 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - visual-question-answering
5
+ - image-to-text
6
+ language:
7
+ - en
8
+ tags:
9
+ - multi-view-reasoning
10
+ - robotic-datasets
11
+ - vision-language-model
12
+ - vision-language-action-model
13
+ pretty_name: "XVR: Cross-View Relations"
14
+ size_categories:
15
+ - 100K<n<1M
16
+ configs:
17
+ - config_name: default
18
+ data_files:
19
+ - split: train
20
+ path: train.jsonl
21
+ - split: validation
22
+ path: valid.jsonl
23
+ - split: test
24
+ path: xvr_eval.jsonl
25
+ ---
26
+
27
+ # Learning Multi-View Spatial Reasoning from Cross-View Relations
28
+
29
+ **CVPR 2026**
30
+
31
+ [Project Page](https://cross-view-relations.github.io) | [arXiv](https://arxiv.org/abs/2603.27967)
32
+
33
+ XVR (Cross-View Relations) is a large-scale dataset designed to teach Vision-Language Models (VLMs) spatial reasoning across multiple viewpoints. It comprises **100K vision-question-answer samples** derived from **18K diverse 3D scenes** (general domain) and **70K robotic manipulation trajectories** (robotic domain), spanning three fundamental spatial reasoning tasks: **Correspondence**, **Verification**, and **Localization**.
34
+
35
+ VLMs fine-tuned on XVR achieve clear improvements on multi-view and robotic spatial reasoning benchmarks (MindCube, RoboSpatial), and when used as backbones in Vision-Language-Action (VLA) models, improve manipulation success rates on RoboCasa by ~13% absolute on average.
36
+
37
+ ## Authors
38
+
39
+ Suchae Jeong\*, Jaehwi Song\*, Haeone Lee, Hanna Kim, Jian Kim, Dongjun Lee, Dong Kyu Shin, Changyeon Kim, Dongyoon Hahm, Woogyeol Jin, Juheon Choi, Kimin Lee
40
+ (KAIST · Config · Hanyang University · Yonsei University · Seoul National University)
41
+
42
+ \*Equal contribution
43
+
44
+ ## Dataset Structure
45
+
46
+ ```
47
+ XVR/
48
+ ├── train.jsonl # 103,576 training samples
49
+ ├── valid.jsonl # 3,208 validation samples
50
+ ├── xvr_eval.jsonl # 1,866 held-out evaluation samples (XVR-Eval)
51
+ └── image_shards/ # 396,320 images packed into ~40 tar shards
52
+ ├── images_000.tar # ~10K images per shard (~2 GB each)
53
+ ├── images_001.tar
54
+ └── ...
55
+ ```
56
+
57
+ After extraction, the layout becomes:
58
+
59
+ ```
60
+ XVR/
61
+ ├── train.jsonl
62
+ ├── valid.jsonl
63
+ ├── xvr_eval.jsonl
64
+ └── images/ # 396,320 image files (extracted from shards)
65
+ ├── img_0000001.png
66
+ └── ...
67
+ ```
68
+
69
+ The `prompt_blocks` in each JSONL reference images by the relative path `images/img_XXXXXXX.{png,jpg}`, so the extracted layout matches exactly.
70
+
71
+ ### Splits
72
+
73
+ | Split | # Samples |
74
+ |---|---|
75
+ | `train` | 103,576 |
76
+ | `validation` (`valid.jsonl`) | 3,208 |
77
+ | `test` (`xvr_eval.jsonl`, XVR-Eval) | 1,866 |
78
+
79
+ `xvr_eval.jsonl` is the **XVR-Eval benchmark**, constructed from data sources unseen during XVR creation (MobileAloha trajectories and WildRGB-D *boat* category scenes).
80
+
81
+ ### Sample Format
82
+
83
+ Each line in the `.jsonl` files is a JSON object:
84
+
85
+ ```json
86
+ {
87
+ "sample_id": "task1_aloha_mobile_episode_000213_sample_1",
88
+ "task": "task1",
89
+ "ground_truth_answer": "2",
90
+ "prompt_blocks": [
91
+ {"type": "text", "text": "..."},
92
+ {"type": "image_url", "image_url": {"url": "images/img_0389747.jpg"}},
93
+ ...
94
+ ]
95
+ }
96
+ ```
97
+
98
+ - `prompt_blocks`: an ordered list of multimodal blocks (text or image). Image paths are relative to the dataset root (`images/...`).
99
+ - `task`: one of `task1`, `task2`, `task3`, `task4`, `task6`, `task9`, `task10`, `task11` (see task mapping below).
100
+ - `ground_truth_answer`: the expected answer string.
101
+
102
+ ## Task Categories
103
+
104
+ XVR is organized into three categories and eight specific tasks, inspired by Structure-from-Motion (SfM): identifying correspondences, verifying geometric consistency, and estimating camera poses.
105
+
106
+ | Category | Task | ID | Description |
107
+ |---|---|---|---|
108
+ | **Correspondence** | Point Correspondence | `task9` | Identify the colored point across views representing the same 3D location |
109
+ | | Directional Correspondence | `task10` | Match directional arrows/vectors consistently across views |
110
+ | **Verification** | Spatial Verification | `task11` | Detect correspondences that violate 3D spatial consistency |
111
+ | | Temporal Verification | `task1` | Identify temporally inconsistent frames in a sequence |
112
+ | **Localization** | Viewpoint Localization | `task6` | Determine which camera view matches a given spatial position |
113
+ | | Directional View Localization | `task2` | Identify the view in a specified direction relative to a reference camera |
114
+ | | Cross-Scenario Localization | `task3` | Match corresponding viewpoints across structurally similar but distinct scenes |
115
+ | | Language-Conditioned Localization | `task4` | Select the view matching a natural-language spatial description |
116
+
117
+ Each train task contains 12,947 samples; XVR-Eval contains 170–264 samples per task.
118
+
119
+ ## Data Sources
120
+
121
+ - **General domain** — [WildRGB-D](https://wildrgbd.github.io/): multi-view RGB-D captures with calibrated camera parameters. Only scenes with sufficiently dense point clouds (≥1M points) are retained.
122
+ - **Robotic domain** — [Open X-Embodiment (OXE)](https://robotics-transformer-x.github.io/) and [AgiBot-World](https://agibot-world.com/): we use DROID, MobileAloha, RoboSet, and FMB (the OXE subsets with ≥3 distinct camera views), plus AgiBot-World. Trajectories must be ≥20s with sufficient end-effector motion.
123
+
124
+ ## Usage
125
+
126
+ ### Download
127
+
128
+ ```bash
129
+ # Download the whole dataset (JSONLs + tar shards)
130
+ huggingface-cli download Jaehwisong/XVR --repo-type dataset --local-dir ./XVR
131
+ ```
132
+
133
+ Total size: ~82 GB (image tar shards) + ~150 MB (JSONLs).
134
+
135
+ ### Extracting Image Shards
136
+
137
+ After downloading, extract all tar shards into a single `images/` folder so that the paths inside `prompt_blocks` (e.g. `images/img_0000001.png`) resolve correctly:
138
+
139
+ ```bash
140
+ cd ./XVR
141
+ mkdir -p images
142
+ for f in image_shards/images_*.tar; do
143
+ tar -xf "$f" -C images/
144
+ done
145
+ ```
146
+
147
+ Or in parallel (faster):
148
+
149
+ ```bash
150
+ cd ./XVR
151
+ mkdir -p images
152
+ ls image_shards/images_*.tar | xargs -P 8 -I {} tar -xf {} -C images/
153
+ ```
154
+
155
+ Optionally remove the tar shards after extraction to save disk:
156
+
157
+ ```bash
158
+ rm -rf image_shards
159
+ ```
160
+
161
+ ### Resolving Image Paths
162
+
163
+ After extracting the shards, the `prompt_blocks` reference images by relative path (e.g. `images/img_0000001.png`). Prepend the dataset root:
164
+
165
+ ```python
166
+ import json, os
167
+ from PIL import Image
168
+
169
+ DATA_ROOT = "./XVR"
170
+ with open(os.path.join(DATA_ROOT, "xvr_eval.jsonl")) as f:
171
+ for line in f:
172
+ sample = json.loads(line)
173
+ for block in sample["prompt_blocks"]:
174
+ if block["type"] == "image_url":
175
+ img = Image.open(os.path.join(DATA_ROOT, block["image_url"]["url"]))
176
+ # ... feed to your VLM
177
+ gt = sample["ground_truth_answer"]
178
+ ```
179
+
180
+ ## Results
181
+
182
+ Qwen3-VL-2B fine-tuned on XVR (**Qwen3-VL-2B-XVR**) achieves a **1.8× relative gain** on XVR-Eval over its base model, ranking first among both open- and closed-source models we evaluated (including GPT-5, Claude-4.5-Sonnet, Gemini-2.5-Pro, Gemini-Robotics-ER-1.5). It also exceeds human performance on Point Correspondence.
183
+
184
+ | Model | Overall (XVR-Eval) |
185
+ |---|---|
186
+ | Random | 32.64 |
187
+ | Eagle2-2B | 16.99 |
188
+ | PaliGemma2-3B | 17.36 |
189
+ | InternVL-3.5-4B | 32.32 |
190
+ | Qwen3-VL-2B-Instruct | 36.82 |
191
+ | Qwen3-VL-4B-Instruct | 45.02 |
192
+ | Gemini-Robotics-ER-1.5 | 47.48 |
193
+ | Gemini-2.5-Pro | 49.04 |
194
+ | Claude-4.5-Sonnet | 51.18 |
195
+ | Gemini-2.5-Flash | 52.36 |
196
+ | GPT-5 | 61.74 |
197
+ | **Qwen3-VL-2B-XVR (Ours)** | **68.06** |
198
+ | Human | 83.85 |
199
+
200
+ See the paper for full per-task results and transfer experiments on MindCube-Tiny, RoboSpatial-Home, and RoboCasa VLA manipulation.
201
+
202
+ ## Citation
203
+
204
+ If you use XVR in your research, please cite:
205
+
206
+ ```bibtex
207
+ @article{jeong2026learning,
208
+ title={Learning Multi-View Spatial Reasoning from Cross-View Relations},
209
+ author={Jeong, Suchae and Song, Jaehwi and Lee, Haeone and Kim, Hanna and Kim, Jian and Lee, Dongjun and Shin, Dong Kyu and Kim, Changyeon and Hahm, Dongyoon and Jin, Woogyeol and others},
210
+ journal={arXiv preprint arXiv:2603.27967},
211
+ year={2026}
212
+ }
213
+ ```
214
+
215
+ ## License
216
+
217
+ This dataset is released under **CC BY 4.0**. The underlying source datasets (WildRGB-D, OXE subsets, AgiBot-World) retain their respective original licenses; users are responsible for complying with those terms when using derived images.
image_shards/images_000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eabbe72041c03ef9e1099fea49424e3930b63e3b02e420b67f7f3a6bad4a77b7
3
+ size 1940684800
image_shards/images_001.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b920869c55406dfc807b8f35c983758736d3b9230a33b2d1880bd180803ed092
3
+ size 1947146240
image_shards/images_002.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f71d620b74d5c1af2ca18a402f563d6ce5a936c94691656976890895f65675a
3
+ size 1948200960
image_shards/images_003.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d3db05b2897d2f0997e1d5ed069f40223dee775d5153257ad54f2887ef879f2
3
+ size 1972899840
image_shards/images_004.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2e59c59848fe5fc1b666a74cd150d1ccb234cea36b0dbf11cb1fdb85e36beeb
3
+ size 2009282560
image_shards/images_005.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e74179102579cb57f090830ae5ffb7157b9f51191a39e3204ef80314beea94af
3
+ size 2004039680
image_shards/images_006.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd79c3d259b141352f5d9144dd55e57c7700c1a771e535b864fe522a29308480
3
+ size 1959710720
image_shards/images_007.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f4be0846720723ab4e92f64d04529a807a21a9667504a8706f217250360e347
3
+ size 2021744640
image_shards/images_008.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71c069910e5f4e7ecd32478d0c0e15f45b0800feb3bb8e0cf0ed858f8e85585a
3
+ size 2039490560
image_shards/images_009.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e8de693e1e0459d6b82d43a43453cf8e4ff2128dfb02c58b32b046a3fe4d469
3
+ size 2030776320
image_shards/images_010.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cba0ff04dbab40dbdef675d32a2cee53b7190f82f660a6bee6aa61556a51888
3
+ size 2108262400
image_shards/images_011.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35eaf718e33f8f5c014b3138c4f1a7ca977ddef54269c3f5701a15a180ebf344
3
+ size 2141173760
image_shards/images_012.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0069803bd3eba0ec324be0de1b598d0b1f9e726e4fc77c32ee1a7ffe278da9d5
3
+ size 2056990720
image_shards/images_013.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28313d71235ee9ba348d11e2a4f4f9cc2de36899f83b85fdbb9b13dd71883da7
3
+ size 2132008960
image_shards/images_014.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbb623922c24fa2dde32b7cce688f9ab549cbed3ae5af5cf0630aaedb2895f93
3
+ size 2050498560
image_shards/images_015.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:669663ef884db9a0bb768a5f43acdc510d8f9e16fda8093ecc14a03521bde919
3
+ size 2187294720
image_shards/images_016.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:332435e04e9753406e9f3c5e83221e71bb82355923b09fdd7bea4c1a32c90717
3
+ size 2158264320
image_shards/images_017.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed43de6b0438e2b1dbaa3e89fc937541c372f3c8c20058de41a4ae866e359a89
3
+ size 2150512640
image_shards/images_018.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ce383bdce972bd73229b201bcbc242b2eb6e549ca6d451f81da0210e87f0cb8
3
+ size 2182676480
image_shards/images_019.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14e6ea8fc47b50c69093892f407edc378536d354e59606536961246d7506d48e
3
+ size 2184683520
image_shards/images_020.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6eb20b304cb80ec9470a8032470eb8a8e0b27554909f812bb973ecf771243f11
3
+ size 2170992640
image_shards/images_021.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b15fdfd28c7a5d6d00dc4388c4576602a9f15c33be3c43581b6267913ced9070
3
+ size 2243829760
image_shards/images_022.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75ce88c764babd56674db06a6fa21c72e2601fbe1ea3db2812eb61c05325a473
3
+ size 2215628800
image_shards/images_023.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:034851546e5db06e18c95c20fa79edfef694e944ee5bf9fa0d473418e175e37d
3
+ size 2285076480
image_shards/images_024.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f766069eb469f0bcf46696641fa8c5a54ca31209d05f1f7d822b710c17f7b18
3
+ size 2217922560
image_shards/images_025.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7577bc11f8569f9a16e6e1f866d2b0a2e7297142843fee4b499deb960905b771
3
+ size 2279403520
image_shards/images_026.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54ed9e512fb260bea00268d743ec8caf1139109f536ff26d4b8bf1a88152bb0c
3
+ size 2246942720
image_shards/images_027.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a05b918808245cd5f5841878dcd966906218d2e313547170ebd471354c87b95
3
+ size 2331084800
image_shards/images_028.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd37bfe3077aa4321e400912cda69d8c885900601902b885f8920f09b5710c20
3
+ size 2333849600
image_shards/images_029.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c920a3d0ab1e67199df738f0e76d79b2f4b7fafe0b56d9f93d3c6d5ecc5e4d79
3
+ size 2294528000
image_shards/images_030.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e52b8435a1b36463d2db8db77989123aa351593bf1c59bc36adf029784eeeb70
3
+ size 2326179840
image_shards/images_031.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5efd469cc3a64b37a0a46a205d906a21029f0b8e33b5a41acfb5fd85fa0690e0
3
+ size 2316339200
image_shards/images_032.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b96cb353a8de7718068b68187e70ae4351b57fd13ee5ef929993346a263ac2de
3
+ size 2367109120
image_shards/images_033.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bfb64ed228bbcdb704ef9a7087fa49fefbe8b9e8eb3b1364fe9b98f5b0bff43
3
+ size 2385704960
image_shards/images_034.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:646fb790d3924a805d717caa6c1fe1b40406aeeac7dc65faca208934c736b56e
3
+ size 2336532480
image_shards/images_035.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f45df74908617eca27eff6c1770da3d25a65d9211676ad9268c8f4ba91d6a30
3
+ size 2394583040
image_shards/images_036.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6280be64f46fc7c4dd9354bc321613bdd23b02d392c12bda1c0c029e232aeead
3
+ size 2431057920
image_shards/images_037.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4aae4005b83ac8ebfc8ef5f3b96f94a613f445e93d50a878a6ded0d41d746c07
3
+ size 2440110080
image_shards/images_038.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9363867ac4d7f1e2b0e12720bd16bff4f32cc22159b97510c66eb853c0a761da
3
+ size 2351656960
image_shards/images_039.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b22e73e236d37f6c8f8ee8a4cdc81a0134d27f57a9c11d44f49fc875980d4642
3
+ size 1674874880