ScottZhang commited on
Commit
b65d88a
·
verified ·
1 Parent(s): 18cbbf5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -1
README.md CHANGED
@@ -7,4 +7,64 @@ tags:
7
  - Route-Planning
8
  size_categories:
9
  - 10K<n<100K
10
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  - Route-Planning
8
  size_categories:
9
  - 10K<n<100K
10
+ configs:
11
+ - config_name: default
12
+ data_files:
13
+ - split: query
14
+ path: dataset/sample_10.csv
15
+ ---
16
+
17
+ **This work is currently under review. The full dataset will be released progressively.**
18
+
19
+ # MobilityBench: A Benchmark for Evaluating Route-Planning Agents in Real-World Mobility Scenarios
20
+
21
+ [Paper](https://arxiv.org/abs/2602.22638) | [GitHub](https://github.com/AMAP-ML/MobilityBench)
22
+
23
+ IntTravel is the first large-scale public dataset for integrated travel recommendation, including **4.1 billion interactions from 163 million users with 7.3 million POIs**. Built upon this dataset, the authors introduce an end-to-end, decoder-only generative framework for multi-task recommendation. It incorporates information preservation, selection, and factorization to balance task collaboration with specialized differentiation.
24
+
25
+
26
+
27
+ ## Dataset
28
+ **MobilityBench** is a scalable benchmark for evaluating route-planning agents in real-world mobility scenarios. It is built from large-scale, anonymized mobility queries from **Amap**, organized with a comprehensive task taxonomy, and provides **structured ground truth** (required tool calls + verifiable evidence). All tool calls are executed in a **deterministic replay sandbox** for reproducible, multi-dimensional evaluation.
29
+
30
+ **Scale & Coverage:** 100,000 episodes across **22** countries and **350+** cities (including metropolitan areas), with a **long-tailed** geographic distribution.
31
+
32
+ ### Scenario Distribution (11 intents)
33
+ - **36.6%** Basic Information Retrieval
34
+ - **9.6%** Route-Dependent Information Retrieval
35
+ - **42.5%** Basic Route Planning
36
+ - **11.3%** Preference-Constrained Route Planning
37
+
38
+ **Download:** [HuggingFace - MobilityBench](https://huggingface.co/datasets/GD-ML/MobilityBench/tree/main) -> place files into `data/`
39
+
40
+ #### Data Format
41
+
42
+ | Field | Description |
43
+ |-------|-------------|
44
+ | `query` | User query text |
45
+ | `context` | Context information (JSON, e.g., current location, city) |
46
+ | `task_scenario` | Fine-grained task category |
47
+ | `intent_family` | Coarse-grained intent category for evaluation aggregation |
48
+ | `tool_list` | Expected tool calls (JSON array) |
49
+ | `route_ans` | Ground truth route answer (JSON) |
50
+
51
+ #### Sample Data (5 Examples)
52
+
53
+ | Query | Task Scenario | Intent Family |
54
+ |-------|---------------|---------------|
55
+ | 去大石桥不走高速<br>Go to Dashiqiao without taking the highway. | Option-Constrained Route Planning | Preference-Constrained Route Planning |
56
+ | 现在成都大道会堵车吗?看一下地图,会不会堵<br>Is Chengdu Avenue congested now? Looking at the map, is it likely to be congested? | Traffic Info Query | Basic Route Planning |
57
+ | 我在哪<br>Where am I? | Geolocation Query | Basic Information Retrieval |
58
+ | 知道离滇池会展中心有多远<br>How far it is from Dianchi Convention and Exhibition Center? | Route Property Query | Route-Dependent Information Retrieval |
59
+ | 到寨河收费站入口不走高速<br>To reach the Zhaihe toll station entrance without taking the highway. | Option-Constrained Route Planning | Preference-Constrained Route Planning |
60
+
61
+ ## Citation
62
+ If you use this dataset in your research, please cite the following paper:
63
+ ```bibtex
64
+ @article{song2026mobilitybench,
65
+ title={MobilityBench: A Benchmark for Evaluating Route-Planning Agents in Real-World Mobility Scenarios},
66
+ author={Song, Zhiheng and Zhang, Jingshuai and Qin, Chuan and Wang, Chao and Chen, Chao and Xu, Longfei and Liu, Kaikui and Chu, Xiangxiang and Zhu, Hengshu},
67
+ journal={arXiv preprint arXiv:2602.22638},
68
+ year={2026}
69
+ }
70
+ ```