Add dataset card, task categories and links to paper and code

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +66 -3
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
+ - earth-observation
9
+ ---
10
+
11
+ # OVRSIS95K
12
+
13
+ This repository contains the **OVRSIS95K** dataset, which serves as the foundational training dataset for the **OVRSISBenchV2** benchmark, introduced in the paper [Towards Realistic Open-Vocabulary Remote Sensing Segmentation: Benchmark and Baseline](https://huggingface.co/papers/2604.15652).
14
+
15
+ - **GitHub Repository**: [LiBingyu01/Pi-Seg](https://github.com/LiBingyu01/Pi-Seg)
16
+ - **Paper**: [arXiv:2604.15652](https://huggingface.co/papers/2604.15652)
17
+
18
+ ---
19
+
20
+ ## Dataset Description
21
+
22
+ **OVRSIS95K** is a large-scale, balanced dataset of approximately 95,000 image-mask pairs covering 35 common semantic categories across diverse remote sensing scenes. It is designed to act as the core training foundation for evaluating open-world generalization in Remote Sensing Image Segmentation (OVRSIS).
23
+
24
+ ### Key Features
25
+ * **Size**: ~95,000 high-quality annotated image-mask pairs.
26
+ * **Semantic Categories**: 35 balanced categories.
27
+ * **Domains**: 5 diverse scene domains including *town*, *industrial*, *forest*, *waterfront*, and *wasteland*.
28
+
29
+ ### Dataset Structure
30
+ To use this dataset with the official implementation, organize the directories as follows:
31
+
32
+ ```text
33
+ datasets/
34
+ └── OVRSIS95K/
35
+ β”œβ”€β”€ train/
36
+ β”‚ β”œβ”€β”€ images/
37
+ β”‚ └── annotations/
38
+ └── val/
39
+ β”œβ”€β”€ images/
40
+ └── annotations/
41
+ ```
42
+
43
+ ---
44
+
45
+ ## Citation
46
+
47
+ If you find this dataset or the associated baseline code useful, please cite the following papers:
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
+ ```