Add model card for Pi-Seg (image-segmentation)

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +42 -3
README.md CHANGED
@@ -1,3 +1,42 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ pipeline_tag: image-segmentation
4
+ ---
5
+
6
+ # Pi-Seg (Perturbation-Injected Segmentation)
7
+
8
+ This repository contains the weights for **Pi-Seg**, a baseline model for open-vocabulary remote sensing image segmentation (OVRSIS) presented in the paper [Towards Realistic Open-Vocabulary Remote Sensing Segmentation: Benchmark and Baseline](https://huggingface.co/papers/2604.15652).
9
+
10
+ ## Overview
11
+
12
+ Pi-Seg introduces a **positive-incentive noise** learning mechanism built on the CAT-Seg framework. It learns a broader, more transferable feature space for remote sensing images by injecting semantically guided perturbations into both visual and textual feature spaces during training. This approach significantly improves the model's generalization to unseen categories and novel domains without requiring heavy multi-encoder frameworks.
13
+
14
+ - **Paper**: [Towards Realistic Open-Vocabulary Remote Sensing Segmentation: Benchmark and Baseline](https://huggingface.co/papers/2604.15652)
15
+ - **Repository**: [Official Pi-Seg GitHub Codebase](https://github.com/LiBingyu01/Pi-Seg)
16
+ - **Datasets**:
17
+ - [OVRSIS95K Training Dataset](https://huggingface.co/datasets/kkk2026/OVRSIS95K)
18
+ - [OVRSISBenchV2 Test Dataset](https://huggingface.co/datasets/kkk2026/OVRSISBenchtest)
19
+ - [OVRSISBenchV2 Other Tasks](https://huggingface.co/datasets/kkk2026/OVRSISBenchV2o3)
20
+
21
+ ## Citation
22
+
23
+ If you find this work useful, please cite:
24
+
25
+ ```bibtex
26
+ @article{li2026towards,
27
+ title={Towards Realistic Open-Vocabulary Remote Sensing Segmentation: Benchmark and Baseline},
28
+ author={Li, Bingyu and Huo, Tao and Dong, Haocheng and Zhang, Da and Zhao, Zhiyuan and Gao, Junyu and Li, Xuelong},
29
+ journal={arXiv preprint arXiv:2604.15652},
30
+ year={2026}
31
+ }
32
+
33
+ @inproceedings{li2026exploring,
34
+ title={Exploring efficient open-vocabulary segmentation in the remote sensing},
35
+ author={Li, Bingyu and Dong, Haocheng and Zhang, Da and Zhao, Zhiyuan and Sun, Hao and Gao, Junyu},
36
+ booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},
37
+ volume={40},
38
+ number={8},
39
+ pages={5982--5991},
40
+ year={2026}
41
+ }
42
+ ```