Views
No views yet
MLLMSeg_InternVL2_5_8B_RES model presented in the paper Unlocking the Potential of MLLMs in Referring Expression Segmentation via a Light-weight Mask Decoder.
transformers library and other necessary dependencies as specified by the original repository:1conda create -n mllmseg python==3.10.18 -y
2conda activate mllmseg
3pip install torch==2.5.1 torchvision==0.20.1 --index-url https://download.pytorch.org/whl/cu118
4# If you encounter any problems during the installation of datasets, please install this first.
5# conda install -c conda-forge pyarrow
6pip install -r requirements.txt
7pip install flash-attn==2.3.6 --no-build-isolation # Note: need gpu to install





1@misc{wang2025unlockingpotentialmllmsreferring,
2 title={Unlocking the Potential of MLLMs in Referring Expression Segmentation via a Light-weight Mask Decoder},
3 author={Jingchao Wang and Zhijian Wu and Dingjiang Huang and Yefeng Zheng and Hong Wang},
4 year={2025},
5 eprint={2508.04107},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2508.04107},
9}