Evaluates in-domain representation learning and scene classification across diverse remote sensing modalities (optical, SAR, aerial) and spatial resolutions. It probes model robustness to varying class balances, visual similarities, and label domains in Earth observation. Use when the user wants to benchmark on BigEarthNet, EuroSAT, RESISC-45, So2Sat, UC Merced, or asks about evaluating this task. Reports accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill remote-sensing-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Remote Sensing Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-remote-sensing-eval)More formats (shields.io, HTML) on the badges page.
---
name: remote-sensing-eval
description: Evaluates in-domain representation learning and scene classification across diverse remote sensing modalities (optical, SAR, aerial) and spatial resolutions. It probes model robustness to varying class balances, visual similarities, and label domains in Earth observation. Use when the user wants to benchmark on BigEarthNet, EuroSAT, RESISC-45, So2Sat, UC Merced, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 1911.06721
bibtex_key: neumann2019indomain
confidence: high
---
# remote-sensing-eval
> In-domain representation learning for remote sensing — Neumann et al. (2019) (arXiv:1911.06721, 2019)
## What this evaluates
Evaluates in-domain representation learning and scene classification across diverse remote sensing modalities (optical, SAR, aerial) and spatial resolutions. It probes model robustness to varying class balances, visual similarities, and label domains in Earth observation.
## Datasets
- **BigEarthNet** — total 590326; splits: train (-1), val (-1), test (-1)
- **EuroSAT** — total 27000; splits: train (-1), val (-1), test (-1)
- **RESISC-45** — total 31500; splits: train (-1), val (-1), test (-1)
- **So2Sat** — total 376000; splits: train (-1), val (-1), test (-1)
- **UC Merced** — total 2100; splits: train (-1), val (-1), test (-1)
## Metrics
- `accuracy` **(primary)** — range: [0, 1]
- Fraction of correctly predicted class labels out of total samples. For multi-label datasets, per-sample accuracy is computed as the ratio of correctly predicted labels to total labels.
## Input / output format
**Input**: Remote sensing image patches (Sentinel-2 multi-spectral, Sentinel-1 SAR, or aerial RGB) with varying spatial resolutions (0.2–60 m) and pixel dimensions (32x32 to 256x256).
**Output**: Class label(s) corresponding to land-use/land-cover, urban structures, or ecological zones (multi-class or multi-label).
## Scoring recipe
```python
correct = 0
total = 0
for pred, gold in zip(predictions, gold_labels):
if isinstance(gold, list):
if set(pred) == set(gold): correct += 1
else:
if pred == gold: correct += 1
total += 1
return correct / total
```
## Common pitfalls
- Datasets have highly varying spatial resolutions and spectral bands, requiring careful preprocessing or architecture choices to avoid resolution bias.
- Label imbalance is severe in BigEarthNet, making standard accuracy misleading without macro-averaging or threshold tuning.
- So2Sat uses a non-standard split derived from the original validation set (25% val, 75% test), which differs from the 60/20/20 ratio used for other datasets.
## Evidence (verbatim from paper)
> For reproducability and a common evaluation framework, standard train, validation, and test splits using the 60%, 20%, and 20% ratios, respectively, were generated for all datasets except So2Sat. ... Because the classes are quite distinctive, very high accuracies can be achieved when using the entire dataset for training.
## Citation
```bibtex
@misc{neumann2019indomain,
title={In-domain representation learning for remote sensing},
author={Neumann et al. (2019)},
year={2019},
note={arXiv:1911.06721}
}
```
- arXiv: 1911.06721
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!