A benchmark designed to advance foundation models for Earth monitoring, tailored for remote sensing. It encompasses six classification and six segmentation tasks, curated for precision and model evaluation. The package also features a comprehensive evaluation methodology and showcases results from 20 established baseline models.
Project description
GEO-Bench: Toward Foundation Models for Earth Monitoring
GEO-Bench is a ServiceNow Research project.
GEO-Bench is a General Earth Observation benchmark for evaluating the performances of large pre-trained models on geospatial data. Read the full paper for usage details and evaluation of existing pre-trained vision models.
Installation
You can install GEO-Bench with pip:
pip install geobench
Note: Python 3.9+ is required.
Downloading the data
Set $GEO_BENCH_DIR
to your preferred location. If not set, it will be stored in $HOME/dataset/geobench
.
Next, use the download script. This will automatically download from Hugging Face
Run the command:
geobench-download
You need ~65 GB of free disk space for download and unzip (once all .zip are deleted it takes 57GB). If some files are already downloaded, it will verify the md5 checksum. Feel free to restart the downloader if it is interrupted.
Test installation
You can run tests. Note: Make sure the benchmark is downloaded before launching tests.
pip install pytest
geobench-test
Loading Datasets
See example_load_dataset.py
for how to iterate over datasets.
import geobench
for task in geobench.task_iterator(benchmark_name="classification_v1.0"):
dataset = task.get_dataset(split="train")
sample = dataset[0]
for band in sample.bands:
print(f"{band.band_info.name}: {band.data.shape}")
Visualizing Results
See the notebook baseline_results.ipynb
for an example of how to visualize the results.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file geobench-1.0.0.tar.gz
.
File metadata
- Download URL: geobench-1.0.0.tar.gz
- Upload date:
- Size: 34.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.9 Linux/6.2.0-32-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85628ceff361611e2afa7ac6b851eedcf5ee9bb9dfb117ef9c40c9830959b3ce |
|
MD5 | 93dd4b38d70c8bebbfa4601d1f5d6902 |
|
BLAKE2b-256 | 7ea8a6080d0459928fb90cc9b6a4320439c4c0f905de6011dbaf33d1cc746f4b |
File details
Details for the file geobench-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: geobench-1.0.0-py3-none-any.whl
- Upload date:
- Size: 36.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.9 Linux/6.2.0-32-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e506c790a79bccd0dd64c129cbbbaf980d273b0a9deb7d59ea1eb43bcbb3dba |
|
MD5 | 3cbc0f49ed39044b3e5a075dd575e8db |
|
BLAKE2b-256 | 613c2a3bcdb274ed7260ed898cdafcba6acb452c444ad42eb307b50832a083f9 |