Yushuo-Zheng commited on
Commit
e3c1b7a
·
verified ·
1 Parent(s): 16a5eb9

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +118 -0
README.md ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - image-to-text
5
+ - visual-question-answering
6
+ - other
7
+ tags:
8
+ - geolocation
9
+ - street-view
10
+ - navigation
11
+ - embodied-reasoning
12
+ - panorama
13
+ - benchmark
14
+ - geoaot
15
+ - cvpr2026
16
+ language:
17
+ - en
18
+ pretty_name: "WanderBench: Global Geolocation Benchmark for Actionable Reasoning"
19
+ size_categories:
20
+ - 1K<n<10K
21
+ ---
22
+
23
+ # WanderBench: Learning to Wander
24
+
25
+ ### Improving the Global Image Geolocation Ability of LMMs via Actionable Reasoning
26
+
27
+ <p align="center">
28
+ <a href="https://arxiv.org/abs/2603.10463"><img src="https://img.shields.io/badge/arXiv-2603.10463-b31b1b.svg" alt="arXiv"></a>
29
+ <a href="#"><img src="https://img.shields.io/badge/CVPR%20Findings-2026-4b44ce.svg" alt="CVPR Findings 2026"></a>
30
+ <a href="https://creativecommons.org/licenses/by/4.0/"><img src="https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg" alt="License: CC BY 4.0"></a>
31
+ </p>
32
+
33
+ ## Dataset Description
34
+
35
+ **WanderBench** is the first open-access global geolocation benchmark designed for actionable geolocation reasoning in embodied scenarios. It contains **1,049 navigable panorama graphs** comprising **32,776 panoramic nodes** distributed across six continents. Each graph encodes spatial relationships between street-view panoramas, enabling multi-step interactive exploration for geolocation tasks.
36
+
37
+ This dataset accompanies the paper *"Learning to Wander: Improving the Global Image Geolocation Ability of LMMs via Actionable Reasoning"* (CVPR Findings 2026).
38
+
39
+ ## Dataset Statistics
40
+
41
+ | Statistic | Value |
42
+ |-----------|-------|
43
+ | Total graphs | 1,049 |
44
+ | Total panorama nodes | 32,776 |
45
+ | Max graph size | 30 nodes |
46
+ | Navigation steps per graph | up to 10 |
47
+ | Geographic coverage | 6 continents |
48
+ | Latitude range | ~-43° to ~54° |
49
+ | Longitude range | ~-123° to ~154° |
50
+
51
+ ## Data Format
52
+
53
+ Each file is a JSON graph named `{pano_id}_10_graph.json` with the following structure:
54
+
55
+ ```json
56
+ {
57
+ "center_pano_id": "pano_id_123",
58
+ "max_steps": 10,
59
+ "nodes": [
60
+ {
61
+ "pano_id": "pano_id_123",
62
+ "matrix_id": 0,
63
+ "coordinate": {
64
+ "lat": 40.7128,
65
+ "lon": -74.0060,
66
+ "heading": 1.5708,
67
+ "roll": 0.017,
68
+ "pitch": -0.058
69
+ }
70
+ }
71
+ ],
72
+ "adjacency_matrix": [
73
+ [-1, 1.57, 0.0],
74
+ [4.71, -1, 1.57],
75
+ [3.14, 4.71, -1]
76
+ ]
77
+ }
78
+ ```
79
+
80
+ ### Fields
81
+
82
+ - **`center_pano_id`** — Google Street View panorama ID of the starting node.
83
+ - **`max_steps`** — Maximum navigation steps allowed in the graph.
84
+ - **`nodes`** — List of panorama nodes, each containing:
85
+ - `pano_id` — Street View panorama identifier.
86
+ - `matrix_id` — Index in the adjacency matrix.
87
+ - `coordinate` — GPS location (`lat`, `lon` in degrees) and camera orientation (`heading`, `roll`, `pitch` in radians).
88
+ - **`adjacency_matrix`** — Directional angles (radians) between connected nodes; `-1` indicates no direct connection.
89
+
90
+ ## Usage
91
+
92
+ This dataset provides the graph structure for the WanderBench benchmark. To run evaluations, clone the companion code repository:
93
+
94
+ ```bash
95
+ git clone https://github.com/YushuoZheng/WanderBench.git
96
+ ```
97
+
98
+ See the [code repository](https://github.com/YushuoZheng/WanderBench) for instructions on running GeoAoT exploration, baseline prediction, and batch geocoding.
99
+
100
+ ## Citation
101
+
102
+ If you find WanderBench useful in your research, please cite:
103
+
104
+ ```bibtex
105
+ @misc{zheng2026learningwanderimprovingglobal,
106
+ title={Learning to Wander: Improving the Global Image Geolocation Ability of LMMs via Actionable Reasoning},
107
+ author={Yushuo Zheng and Huiyu Duan and Zicheng Zhang and Xiaohong Liu and Xiongkuo Min},
108
+ year={2026},
109
+ eprint={2603.10463},
110
+ archivePrefix={arXiv},
111
+ primaryClass={cs.CV},
112
+ url={https://arxiv.org/abs/2603.10463},
113
+ }
114
+ ```
115
+
116
+ ## License
117
+
118
+ This dataset is released under the [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) license.