Add task category and improve dataset card
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,23 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# MapTab
|
| 2 |
|
| 3 |
-
|
| 4 |
|
| 5 |
-
- Paper: https://arxiv.org/abs/2602.18600
|
| 6 |
-
- Project
|
| 7 |
-
- Code: https://github.com/Ziqiao-Shang/MapTab
|
| 8 |
|
| 9 |
-
##
|
| 10 |
|
| 11 |
-
|
|
|
|
|
|
|
| 12 |
|
| 13 |
-
|
| 14 |
-
- `travelmap/tabulars`, `travelmap/images`, `travelmap/qa`
|
| 15 |
|
| 16 |
## Current Release
|
| 17 |
|
| 18 |
Currently, we only release the **`test_set` for the route planning task** for evaluation.
|
| 19 |
|
| 20 |
The following parts will be released in future updates:
|
| 21 |
-
|
| 22 |
- route planning **`training_set`**
|
| 23 |
-
- QA task **test_sets**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- image-text-to-text
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
# MapTab
|
| 7 |
|
| 8 |
+
MapTab is a multimodal benchmark specifically designed to evaluate holistic multi-criteria reasoning in Multimodal Large Language Models (MLLMs) via route planning tasks. It requires MLLMs to perceive and ground visual cues from map images alongside route attributes (e.g., Time, Price) from structured tabular data.
|
| 9 |
|
| 10 |
+
- **Paper:** [MapTab: Are MLLMs Ready for Multi-Criteria Route Planning in Heterogeneous Graphs?](https://arxiv.org/abs/2602.18600)
|
| 11 |
+
- **Project Page:** [https://ziqiao-shang.github.io/MapTab-Leaderboard/](https://ziqiao-shang.github.io/MapTab-Leaderboard/)
|
| 12 |
+
- **Code:** [https://github.com/Ziqiao-Shang/MapTab](https://github.com/Ziqiao-Shang/MapTab)
|
| 13 |
|
| 14 |
+
## Dataset Description
|
| 15 |
|
| 16 |
+
The benchmark encompasses two scenarios:
|
| 17 |
+
- **Metromap**: Covers metro networks in 160 cities across 52 countries.
|
| 18 |
+
- **Travelmap**: Depicts 168 representative tourist attractions from 19 countries.
|
| 19 |
|
| 20 |
+
In total, MapTab comprises 328 images, 196,800 route planning queries, and 3,936 QA queries, all incorporating 4 key criteria: Time, Price, Comfort, and Reliability.
|
|
|
|
| 21 |
|
| 22 |
## Current Release
|
| 23 |
|
| 24 |
Currently, we only release the **`test_set` for the route planning task** for evaluation.
|
| 25 |
|
| 26 |
The following parts will be released in future updates:
|
|
|
|
| 27 |
- route planning **`training_set`**
|
| 28 |
+
- QA task **test_sets**
|
| 29 |
+
|
| 30 |
+
## Usage
|
| 31 |
+
|
| 32 |
+
### Setup
|
| 33 |
+
Please copy the released **`tabulars`**, **`images`**, and **`queries`** folders into the corresponding folders in the [official code repository](https://github.com/Ziqiao-Shang/MapTab):
|
| 34 |
+
|
| 35 |
+
- `metromap/tabulars`, `metromap/images`, `metromap/qa`
|
| 36 |
+
- `travelmap/tabulars`, `travelmap/images`, `travelmap/qa`
|
| 37 |
+
|
| 38 |
+
### Quick Start
|
| 39 |
+
You can run generation and evaluation using the scripts provided in the repository:
|
| 40 |
+
|
| 41 |
+
```bash
|
| 42 |
+
# Generate RP task results
|
| 43 |
+
bash scripts/generate_rp.sh
|
| 44 |
+
|
| 45 |
+
# Generate QA task results
|
| 46 |
+
bash scripts/generate_qa.sh
|
| 47 |
+
|
| 48 |
+
# Evaluate RP task results
|
| 49 |
+
bash scripts/evaluate_rp.sh
|
| 50 |
+
|
| 51 |
+
# Evaluate QA task results
|
| 52 |
+
bash scripts/evaluate_qa.sh
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
## Citation
|
| 56 |
+
|
| 57 |
+
```bibtex
|
| 58 |
+
@article{shang2026maptab,
|
| 59 |
+
title={MapTab: Can MLLMs Master Constrained Route Planning?},
|
| 60 |
+
author={Shang, Ziqiao and Ge, Lingyue and Chen, Yang and Tian, Shi-Yu and Huang, Zhenyu and Fu, Wenbo and Li, Yu-Feng and Guo, Lan-Zhe},
|
| 61 |
+
journal={arXiv preprint arXiv:2602.18600},
|
| 62 |
+
year={2026}
|
| 63 |
+
}
|
| 64 |
+
```
|