Add dataset card for COP-GEN
#2
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- any-to-any
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# COP-GEN: Latent Diffusion Transformer for Copernicus Earth Observation Data
|
| 7 |
+
|
| 8 |
+
COP-GEN is a multimodal latent diffusion transformer that models the joint distribution of heterogeneous Earth Observation (EO) modalities (optical, radar, elevation, and land-cover) at their native spatial resolutions. By parameterising cross-modal mappings as conditional distributions, COP-GEN enables flexible any-to-any conditional generation, including zero-shot modality translation without task-specific retraining.
|
| 9 |
+
|
| 10 |
+
- **Project Page:** [https://miquel-espinosa.github.io/cop-gen/](https://miquel-espinosa.github.io/cop-gen/)
|
| 11 |
+
- **GitHub Repository:** [https://github.com/miquel-espinosa/COP-GEN](https://github.com/miquel-espinosa/COP-GEN)
|
| 12 |
+
- **Paper:** [COP-GEN: Latent Diffusion Transformer for Copernicus Earth Observation Data](https://huggingface.co/papers/2603.03239)
|
| 13 |
+
|
| 14 |
+
## Dataset Summary
|
| 15 |
+
|
| 16 |
+
This dataset is used as part of the COP-GEN project. It includes a stochastic benchmark built from multi-temporal Sentinel-2 observations, Sentinel-1 radar data, and digital elevation models (DEM), enabling distribution-level comparison of generative EO models beyond single-reference, pointwise metrics.
|
| 17 |
+
|
| 18 |
+
## Sample Usage
|
| 19 |
+
|
| 20 |
+
To reproduce the distribution-level results reported in the paper using the stochastic benchmark, you can run the following commands from the official repository:
|
| 21 |
+
|
| 22 |
+
```bash
|
| 23 |
+
pip install -r benchmark/stochastic/requirements.txt
|
| 24 |
+
python -m benchmark.stochastic.run --output metrics.csv
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
Note: The first run downloads approximately 72 GB from Hugging Face and caches it locally.
|
| 28 |
+
|
| 29 |
+
## Citation
|
| 30 |
+
|
| 31 |
+
```bibtex
|
| 32 |
+
@article{copgen2026,
|
| 33 |
+
title = {COP-GEN: Latent Diffusion Transformer for Copernicus Earth
|
| 34 |
+
Observation Data},
|
| 35 |
+
author = {Espinosa, Miguel and Gmelich Meijling, Eva and Marsocci,
|
| 36 |
+
Valerio and Crowley, Elliot J. and Czerkawski, Mikolaj},
|
| 37 |
+
year = {2026},
|
| 38 |
+
journal = {arXiv preprint arXiv:2603.03239},
|
| 39 |
+
url = {https://arxiv.org/abs/2603.03239},
|
| 40 |
+
}
|
| 41 |
+
```
|