Add dataset card, paper link, and sample usage for Earth-Bench
#2
by
nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,74 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-text-to-text
|
| 5 |
+
tags:
|
| 6 |
+
- earth-observation
|
| 7 |
+
- remote-sensing
|
| 8 |
+
- multi-modal
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Earth-Bench
|
| 12 |
+
|
| 13 |
+
[**Project Page**](https://opendatalab.github.io/Earth-Agent/) | [**Paper**](https://huggingface.co/papers/2509.23141) | [**GitHub**](https://github.com/opendatalab/Earth-Agent)
|
| 14 |
+
|
| 15 |
+
Earth-Bench is a comprehensive benchmark designed to evaluate agentic frameworks in Earth Observation (EO). It consists of 248 expert-curated tasks with 13,729 images, spanning three primary modalities: Spectrum, Products, and RGB. The benchmark is equipped with a dual-level evaluation protocol that assesses both reasoning trajectories and final outcomes.
|
| 16 |
+
|
| 17 |
+
The dataset was introduced as part of the paper [Earth-Agent: Unlocking the Full Landscape of Earth Observation with Agents](https://huggingface.co/papers/2509.23141).
|
| 18 |
+
|
| 19 |
+
## Sample Usage
|
| 20 |
+
|
| 21 |
+
### Download via huggingface-cli
|
| 22 |
+
You can download the benchmark dataset using the `huggingface-cli`:
|
| 23 |
+
|
| 24 |
+
```bash
|
| 25 |
+
# Install huggingface-hub if not already installed
|
| 26 |
+
pip install huggingface-hub
|
| 27 |
+
|
| 28 |
+
# Download the dataset
|
| 29 |
+
huggingface-cli download Sssunset/Earth-Bench --local-dir ./benchmark/data --repo-type dataset
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
### Download via Python
|
| 33 |
+
Alternatively, you can use the `snapshot_download` function:
|
| 34 |
+
|
| 35 |
+
```python
|
| 36 |
+
from huggingface_hub import snapshot_download
|
| 37 |
+
|
| 38 |
+
snapshot_download(
|
| 39 |
+
repo_id="Sssunset/Earth-Bench",
|
| 40 |
+
repo_type="dataset",
|
| 41 |
+
local_dir="./benchmark/data"
|
| 42 |
+
)
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
## Dataset Structure
|
| 46 |
+
|
| 47 |
+
The downloaded data follows this folder structure, organized by question:
|
| 48 |
+
|
| 49 |
+
```
|
| 50 |
+
data/
|
| 51 |
+
βββ question1/
|
| 52 |
+
β βββ image1
|
| 53 |
+
β βββ image2
|
| 54 |
+
β βββ ...
|
| 55 |
+
βββ question2/
|
| 56 |
+
β βββ image1
|
| 57 |
+
β βββ ...
|
| 58 |
+
βββ ...
|
| 59 |
+
βββ question248/
|
| 60 |
+
βββ image1
|
| 61 |
+
βββ image2
|
| 62 |
+
βββ ...
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
## Citation
|
| 66 |
+
|
| 67 |
+
```bibtex
|
| 68 |
+
@article{feng2025earth,
|
| 69 |
+
title={Earth-Agent: Unlocking the Full Landscape of Earth Observation with Agents},
|
| 70 |
+
author={Feng, Peilin and Lv, Zhutao and Ye, Junyan and Wang, Xiaolei and Huo, Xinjie and Yu, Jinhua and Xu, Wanghan and Zhang, Wenlong and Bai, Lei and He, Conghui and others},
|
| 71 |
+
journal={arXiv preprint arXiv:2509.23141},
|
| 72 |
+
year={2025}
|
| 73 |
+
}
|
| 74 |
+
```
|