CoolFace
Datasetpublic

earth-insights/OVEarth-Bench

OVEarth-Bench OVEarth-Bench is an evaluation benchmark for open-vocabulary Earth-observation image understanding. It evaluates whether a model can recognize, segment, and localize remote-sensing targets from category names, referring expressions, and reasoning-oriented queries. The benchmark additionally includes negative open-vocabulary queries to measure hallucination suppression. The associated evaluation toolkit is available at earth-insights/OVEarth-bench.… See the full description on the dataset page: https://huggingface.co/datasets/earth-insights/OVEarth-Bench.

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
3likes106downloads
Dataset Card

OVEarth-Bench

OVEarth-Bench is an evaluation benchmark for open-vocabulary Earth-observation image understanding. It evaluates whether a model can recognize, segment, and localize remote-sensing targets from category names, referring expressions, and reasoning-oriented queries. The benchmark additionally includes negative open-vocabulary queries to measure hallucination suppression.

The associated evaluation toolkit is available at earth-insights/OVEarth-bench.

Dataset Summary

ItemValue
Images520 newly collected EO GeoTIFF images (.tif)
Masks590 human-verified masks
Horizontal boxes4,810 axis-aligned boxes (bbox)
Oriented boxes4,810 oriented boxes (oriented_bbox)
Categories172 categories across seven EO domains
Vocabulary1,346 unique vocabulary strings
Queries5,023 English text queries
Annotation modalitiesCOCO RLE masks, axis-aligned boxes, oriented boxes
Image dimensionsWidths range from 692 to 4,713 pixels; median GSD is 0.30 m/pixel
LicenseApache-2.0

Tasks

Task keyTaskQueriesNotes
open_vocabularyOpen-vocabulary segmentation and detection3,2351,067 positive and 2,168 negative category phrases. Negative queries evaluate false-positive suppression.
referringReferring-expression segmentation and grounding732Spatial or contextual descriptions of a target.
reasoningReasoning segmentation and grounding1,056Functional or attribute-based descriptions requiring target inference.

The benchmark provides ground-truth segmentation masks, axis-aligned boxes, and oriented boxes for all three tasks where the corresponding annotation is available.

Files

FileDescription
images.zipArchive containing the GeoTIFF images referenced by image_path in the annotations.
ground_truth.jsonGround truth instances and task queries.
README.mdThis dataset card.

After extracting images.zip, preserve the images/ directory structure so that paths in ground_truth.json remain valid.

Data Collection and Quality Control

All images were newly collected rather than copied from existing remote-sensing benchmarks. POI-guided retrieval samples six continents under varied scales and seasonal conditions. The taxonomy combines national standards, more than 200 datasets, and OpenStreetMap tags.

Annotators draw or correct instance polygons, and managers review boundaries and omissions. Horizontal and minimum-area oriented boxes are derived from reviewed instance polygons. Language queries are generated with LLM assistance, then subjected to automated checks and expert review.

Annotation Format

ground_truth.json has two top-level keys: annotations and tasks. A task query links to an annotation through ann_id.

annotations

FieldTypeDescription
idstringUnique annotation identifier.
image_pathstringRelative path to the GeoTIFF image, for example images/1.tif.
width, heightintegerImage width and height in pixels.
category_namestringCanonical English category name.
segmentationobjectCOCO RLE mask with size: [height, width] and counts.
bboxlist or nullAxis-aligned ground-truth boxes in COCO [x, y, width, height] (xywh) format.
oriented_bboxlist or nullOriented boxes represented by four image-coordinate vertices.

segmentation uses COCO RLE. size is [height, width], and the mask is encoded in column-major (Fortran) order. The current release stores compressed RLE strings in counts.

tasks

FieldUsed byDescription
query_idall tasksUnique query identifier.
ann_idall tasksID of the linked entry in annotations.
typeopen_vocabularypositive when the query target is present; negative when it is absent.
phraseopen_vocabularyCategory phrase supplied to the model.
queryreferring, reasoningReferring or reasoning-oriented natural-language query.

For a negative open-vocabulary query, the linked annotation may describe another object in the image and must not be used as geometry for the queried target.

Download

Install the ModelScope SDK and download the dataset repository:

bash
pip install modelscope
modelscope download earth-insights/OVEarth-bench --repo-type dataset

Alternatively, download individual files from the Files and versions tab. Extract images.zip before running an evaluation.

Evaluation

The evaluation toolkit and usage instructions are available at earth-insights/OVEarth-bench.

Citation

If you use this dataset, please cite:

bibtex
@article{li2026ovearth,
  title   = {OVEarth-Bench: Evaluating Category Breadth and
             Query Diversity for Open-Vocabulary Earth Observation},
  author  = {Li, Kaiyu and Xin, Zepeng and Jiang, Zixuan
             and Fu, Jing and Xue, Lanxuan and Zhang, Lingyu
             and Cao, Xiangyong},
  journal = {arXiv preprint arXiv:2607.27278},
  year    = {2026}
}