--- license: apache-2.0 pretty_name: FlowDIS-DIS5K task_categories: - image-segmentation - mask-generation language: - en size_categories: - 1K` | **all** phrasings, verbatim — lossless | | `prompt` | `string` | `prompts[0]`, the full descriptive sentence | | `prompt_keywords` | `string` | `prompts[1]` where it exists, else `prompts[0]` | In `DIS_TR`, index 0 is a descriptive sentence, index 1 a comma-separated keyword form, and 2–3 paraphrases of 0: ``` prompt 'A silver missile mounted on a large green military transport vehicle.' prompt_keywords 'Missile, military launcher vehicle' ``` **`prompt_keywords` is not cosmetic.** SAM 3's processor tokenizes at `padding="max_length", max_length=32`, so descriptive sentences truncate silently while the keyword form fits. Note the trade-off in its fallback: on the five eval splits (1 phrasing each) it is **identical to `prompt`**. Stated plainly because a column that is sometimes a copy is otherwise a trap. `flowdis_split` records the upstream label each row declared, so the collapse above stays auditable from inside the data. ## Licensing — read before redistributing The upstream prompt repo **declares no license**. The prompts are redistributed here on that basis, with attribution below; images and masks come from `nobg/DIS5K` (Apache-2.0, itself subject to DIS5K's own Terms of Use). Treat the prompts as a soft dependency: [`nobg`](https://github.com/feyninc/nobg)'s training script keeps `--flowdis` **off by default** and falls back to a concept derived from the filename taxonomy, and anything built on this should preserve that property. ## Citation Prompts — FlowDIS: ```bibtex @article{sargsyan2026flowdis, title={{FlowDIS: Language-Guided Dichotomous Image Segmentation with Flow Matching}}, author={Sargsyan, Andranik and Navasardyan, Shant}, journal={arXiv preprint arXiv:2605.05077}, year={2026}, url={https://arxiv.org/abs/2605.05077} } ``` Images and masks — DIS5K: ```bibtex @inproceedings{qin2022dis, title={Highly Accurate Dichotomous Image Segmentation}, author={Qin, Xuebin and Dai, Hang and Hu, Xiaobin and Fan, Deng-Ping and Shao, Ling and Van Gool, Luc}, booktitle={ECCV}, year={2022} } ```