Improve model card
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
pipeline_tag: image-segmentation
|
| 4 |
+
library_name: transformers
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# WOW-Seg: A Word-free Open World Segmentation Model
|
| 8 |
+
|
| 9 |
+
WOW-Seg is a Word-free Open World Segmentation model for segmenting and recognizing objects from open-set categories. It introduces a novel visual prompt module, **Mask2Token**, which transforms image masks into visual tokens and ensures their alignment with the VLLM feature space. Moreover, it introduces the **Cascade Attention Mask** to decouple information across different instances, mitigating inter-instance interference and improving model performance.
|
| 10 |
+
|
| 11 |
+
- **Paper:** [WOW-Seg: A Word-free Open World Segmentation Model](https://huggingface.co/papers/2605.16903)
|
| 12 |
+
- **Repository:** [https://github.com/AAwcAA/WOW-Seg-Meta](https://github.com/AAwcAA/WOW-Seg-Meta)
|
| 13 |
+
- **Dataset:** [RR-7K Dataset](https://huggingface.co/datasets/AAwcAA/RR-7K)
|
| 14 |
+
|
| 15 |
+
## Citation
|
| 16 |
+
|
| 17 |
+
If you find WOW-Seg useful for your research, please use the following BibTeX entry:
|
| 18 |
+
|
| 19 |
+
```bibtex
|
| 20 |
+
@inproceedings{li2026wowseg,
|
| 21 |
+
title={{WOW}-Seg: A Word-free Open World Segmentation Model},
|
| 22 |
+
author={Danyang Li and Tianhao Wu and Bin Lin and Zhenyuan Chen and Yang Zhang and Yuxuan Li and Ming-Ming Cheng and Xiang Li},
|
| 23 |
+
booktitle={The Fourteenth International Conference on Learning Representations},
|
| 24 |
+
year={2026},
|
| 25 |
+
url={https://openreview.net/forum?id=AyJPSnE1bq}
|
| 26 |
+
}
|
| 27 |
+
```
|