Add model card for EOVSAM
#1
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pipeline_tag: image-segmentation
|
| 3 |
+
license: other
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# EOVSAM: Efficient Open-Vocabulary Segmentation with SAM 3 in One Pass
|
| 7 |
+
|
| 8 |
+
**EOVSAM** is an efficient open-vocabulary segmentation framework built on SAM 3 that adapts SAM 3 for single-pass prediction.
|
| 9 |
+
|
| 10 |
+
- **Paper:** [EOVSAM: Efficient Open-Vocabulary Segmentation with SAM 3 in One Pass](https://huggingface.co/papers/2608.02284)
|
| 11 |
+
- **Code:** [GitHub Repository](https://github.com/hustvl/EOVSAM)
|
| 12 |
+
|
| 13 |
+
## Overview
|
| 14 |
+
|
| 15 |
+
EOVSAM removes prompt conditioning to turn SAM 3 into an efficient mask generator and introduces an Attentional Aggregation strategy to optimize open-vocabulary classification end-to-end. This formulation avoids multi-stage pipelines and post-processing heuristics while consistently improving segmentation accuracy over vanilla SAM 3 and accelerating inference by up to 338×.
|
| 16 |
+
|
| 17 |
+
## Usage
|
| 18 |
+
|
| 19 |
+
Please refer to the official [EOVSAM GitHub repository](https://github.com/hustvl/EOVSAM) for installation, dataset preparation, training, and evaluation scripts.
|
| 20 |
+
|
| 21 |
+
## License
|
| 22 |
+
|
| 23 |
+
This project is a composite distribution incorporating NVIDIA RADIO, SAM 3, and MAFT-Plus components; each remains subject to its upstream terms. Please check the [GitHub License section](https://github.com/hustvl/EOVSAM#license) for details.
|
| 24 |
+
|
| 25 |
+
## Citation
|
| 26 |
+
|
| 27 |
+
```bibtex
|
| 28 |
+
@misc{peng2026eovsamefficientopenvocabularysegmentation,
|
| 29 |
+
title={EOVSAM: Efficient Open-Vocabulary Segmentation with SAM 3 in One Pass},
|
| 30 |
+
author={Haomin Peng and Yongkang Li and Zhaoxiang Liu and Xiaojie Jin and Shiguo Lian and Yunchao Wei and Xinggang Wang},
|
| 31 |
+
year={2026},
|
| 32 |
+
eprint={2608.02284},
|
| 33 |
+
archivePrefix={arXiv},
|
| 34 |
+
primaryClass={cs.CV},
|
| 35 |
+
url={https://arxiv.org/abs/2608.02284},
|
| 36 |
+
}
|
| 37 |
+
```
|