Empowering Geologic Map Holistic Understanding with MLLMs
April 22, 2025 ยท View on GitHub
[๐ Paper] โข [๐ค HF Dataset] โข [๐ฑ GitHub Code] [๐๏ธ YouTube Video]
๐ข News and Updates
- 2025/01/10: ๐ฅGitHub Code repo (GeoMap-Agent) released.
- 2025/01/10: ๐ฅHuggingFace Dataset repo (GeoMap-Bench) released.
- 2025/01/13: ๐ฅArxiv paper (PEACE) released.
- 2025/02/27: ๐ฅAccepted by CVPR'25.
- 2025/03/25: ๐ฅAdd metrics measurement script.
- 2025/04/22: ๐ฅAdd interactive demo video.
๐ Table of Contents
๐ Introduction
Geologic map, as a fundamental diagram in geology science, provides critical insights into the structure and composition of Earth's subsurface and surface. These maps are indispensable in various fields, including disaster detection, resource exploration, and civil engineering.
๐ GeoMap-Bench
We present GeoMap-Bench, a new benchmark consisting of 124 geologic maps and 3,864 multimodal multiple-choice questions with diverse annotations. The distribution of questions in the GeoMap-Bench. It consists of 25 task types that measure critical geological map interpretation abilities across five aspects: grounding, extracting, referring, reasoning, and analyzing.
๐ GeoMap-Agent
We introduce GeoMap-Agent, the inaugural agent designed for geologic map understanding, which features three modules: Hierarchical Information Extraction(HIE), Domain Knowledge Injection (DKI), and Prompt-enhanced Question Answering (PEQA). Inspired by the interdisciplinary collaboration among human scientists, an AI expert group acts as consultants, utilizing a diverse tool pool to comprehensively analyze questions.
๐งฎ Leaderboard
Through comprehensive experiments, GeoMap-Agent achieves an overall score of 0.811 on GeoMap-Bench, significantly outperforming 0.369 of GPT-4o.
| Method | Extracting | Grounding | Referring | Reasoning | Analyzing | Overall |
|---|---|---|---|---|---|---|
| Random | 0 | 0 | 0.250 | 0.250 | 0 | 0.100 |
| GPT-4o | 0.219 | 0.128 | 0.378 | 0.507 | 0.612 | 0.369 |
| GeoMap-Agent | 0.832 | 0.920 | 0.886 | 0.588 | 0.831 | 0.811 |
๐ Data Display
We visualize the components of a typical geologic map, highlighting the complex nature of cartographic generalization. Additionally, we showcase sample questions from GeoMap-Bench and demonstrate how our GeoMap-Agent integrates various sources of contextual information to address them.
โฉ Quick Start
Installation
- Step1: Clone GeoMap-Agent code repository
git clone https://github.com/microsoft/PEACE.git
cd PEACE
- Step2: Clone GeoMap-Bench dataset repository
git lfs install
git lfs clone https://huggingface.co/datasets/microsoft/PEACE data
- Step3: Download layout detection models
pip install gdown
gdown https://drive.google.com/uc?id=1f7dUdfA_W8He9czG6SoYQBmUsSPrA6MZ
unzip models.zip -d dependencies
- Step4: Install dependencies
pip install -r requirements.txt
- Step5: Configure LLMs API endpoint and key in utils/api.py
Evaluation
python eval.py --copilot_mode HIE,DKI,PEQA --dataset_source usgs
python calc_metrics.py --copilot_mode HIE,DKI,PEQA --dataset_source usgs
โก Disclaimer
Due to the inherent limitations of large language models, issues such as hallucinations may occur.
๐ Citation
@article{huang2025peace,
title={PEACE: Empowering Geologic Map Holistic Understanding with MLLMs},
author={Huang, Yangyu and Gao, Tianyi and Xu, Haoran and Zhao, Qihao and Song, Yang and Gui, Zhipeng and Lv, Tengchao and Chen, Hao and Cui, Lei and Li, Scarlett and others},
journal={arXiv preprint arXiv:2501.06184},
year={2025}
}
๐ License
This repository is licensed under the MIT License. The use of Ultralytics library is subject to the AGPL-3.0 License.