Add dataset card with metadata, paper, and GitHub links
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,66 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-segmentation
|
| 5 |
+
tags:
|
| 6 |
+
- remote-sensing
|
| 7 |
+
- open-vocabulary
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# OVRSIS95K
|
| 11 |
+
|
| 12 |
+
This repository contains the **OVRSIS95K** dataset, which is the foundation training dataset for **OVRSISBenchV2** presented in the paper [Towards Realistic Open-Vocabulary Remote Sensing Segmentation: Benchmark and Baseline](https://huggingface.co/papers/2604.15652).
|
| 13 |
+
|
| 14 |
+
Official GitHub Repository: [LiBingyu01/Pi-Seg](https://github.com/LiBingyu01/Pi-Seg)
|
| 15 |
+
|
| 16 |
+
## Dataset Highlights
|
| 17 |
+
|
| 18 |
+
- **~95K image-mask pairs** with high-quality annotations.
|
| 19 |
+
- **35 common semantic categories** with balanced class distribution.
|
| 20 |
+
- **5 scene domains**: town, industrial, forest, waterfront, and wasteland.
|
| 21 |
+
- **Semi-automated annotation pipeline** to ensure both scalability and quality.
|
| 22 |
+
|
| 23 |
+
## Dataset Structure
|
| 24 |
+
|
| 25 |
+
The dataset contains remote sensing images and corresponding segmentation annotations. When downloading and preparing the dataset, organize the files as follows:
|
| 26 |
+
|
| 27 |
+
```
|
| 28 |
+
datasets/
|
| 29 |
+
βββ OVRSIS95K/
|
| 30 |
+
βββ train/
|
| 31 |
+
β βββ images/
|
| 32 |
+
β βββ annotations/
|
| 33 |
+
βββ val/
|
| 34 |
+
βββ images/
|
| 35 |
+
βββ annotations/
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
## Related Datasets
|
| 39 |
+
|
| 40 |
+
The OVRSISBenchV2 benchmark evaluates open-world generalization across multiple sets:
|
| 41 |
+
* **OVRSIS95K (Training)**: [Hugging Face](https://huggingface.co/datasets/kkk2026/OVRSIS95K)
|
| 42 |
+
* **OVRSISBenchV2 (OVRSIS test)**: [Hugging Face](https://huggingface.co/datasets/kkk2026/OVRSISBenchtest)
|
| 43 |
+
* **OVRSISBenchV2 (3 downstream tasks)**: [Hugging Face](https://huggingface.co/datasets/kkk2026/OVRSISBenchV2o3)
|
| 44 |
+
|
| 45 |
+
## Citation
|
| 46 |
+
|
| 47 |
+
If you find this dataset or the associated benchmark/baseline useful, please cite:
|
| 48 |
+
|
| 49 |
+
```bibtex
|
| 50 |
+
@article{li2026towards,
|
| 51 |
+
title={Towards Realistic Open-Vocabulary Remote Sensing Segmentation: Benchmark and Baseline},
|
| 52 |
+
author={Li, Bingyu and Huo, Tao and Dong, Haocheng and Zhang, Da and Zhao, Zhiyuan and Gao, Junyu and Li, Xuelong},
|
| 53 |
+
journal={arXiv preprint arXiv:2604.15652},
|
| 54 |
+
year={2026}
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
@inproceedings{li2026exploring,
|
| 58 |
+
title={Exploring efficient open-vocabulary segmentation in the remote sensing},
|
| 59 |
+
author={Li, Bingyu and Dong, Haocheng and Zhang, Da and Zhao, Zhiyuan and Sun, Hao and Gao, Junyu},
|
| 60 |
+
booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},
|
| 61 |
+
volume={40},
|
| 62 |
+
number={8},
|
| 63 |
+
pages={5982--5991},
|
| 64 |
+
year={2026}
|
| 65 |
+
}
|
| 66 |
+
```
|