The repo is the official implement of "Seg-Zero: Reasoning-Chain Guided Segmentation via Cognitive Reinforcement".
The repo is also the official training code of "VisionReasoner: Unified Visual Perception and Reasoning via Reinforcement Learning".
Paper: π Seg-Zero π VisionReasoner
HuggingFace Daily: π€ Seg-Zero
Data: π€ RefCOCOg-9K
π€ VisionReasoner-MultiObjects-7K
Model: π€ Seg-Zero-7B π€ VisionReasoner-7B
Relative Link: VisionReasoner
Overview of Seg-Zero:
Seg-Zero demonstrates following features:
- Seg-Zero exhibits emergent test-time reasoning ability. It generates a reasoning chain before producing the final segmentation mask.
- Seg-Zero is trained exclusively using reinforcement learning, without any explicit supervised reasoning data.
- Compared to supervised fine-tuning, our Seg-Zero achieves superior performance on both in-domain and out-of-domain data.
Highlight Code Features:
- This code is based on the EasyR1 and veRL, which supports model split during sampling and is more GPU memory friendly.
- Supporting both Qwen2-VL and Qwen2.5-VL series models.
- Already implementing commonly used rewards in Object Detection and Object Segmentation, including IoU reward and L1 reward.
[May 17th, 2025] π₯ We release VisionReasoner! VisionReasoner supports multi-objects and multi-tasks.
[March 11th, 2025] π₯ Paper is coming!
[March 8th, 2025] π₯ Seg-Zero is coming! We have released the code and training data.
Tip
This operation is risky, please make sure you have backed up the code if you make any changes.
We made a major update in May. We now support multi-object segmentation. If you'd like to use the previous single-object segmentation, please use the following command to revert to the old version.
git reset --hard 77f9ea5887ec7e6abf398ed3cb483c65631c82b7
Seg-Zero employs a decoupled architecture, including a reasoning model and segmentation model. We manually design a sophiscated reward mechanism that integrates both the format and accuracy rewards.
git clone https://github.com/dvlab-research/Seg-Zero.git
cd Seg-Zero
conda create -n visionreasoner python=3.12
conda activate visionreasoner
pip install torch==2.6.0 torchvision==0.21.0
pip install -e .
Download pretrained models using the following scripts:
mkdir pretrained_models
cd pretrained_models
git lfs install
git clone https://huggingface.co/Ricky06662/VisionReasoner-7B
Tip
If you encounter issues with connecting to Hugging Face, consider using export HF_ENDPOINT=https://hf-mirror.com
.
Then run inference using:
python inference_scripts/infer_multi_object.py
The default question is
"What can I have if I'm thirsty?"
You will get the thinking process in command line, like:
"The question asks for items that can be consumed if one is thirsty. In the image, there are two glasses that appear to contain beverages, which are the most likely candidates for something to drink. The other items, such as the salad, fruit platter, and sandwich, are not drinks and are not suitable for quenching thirst."
And the mask will be presented in inference_scripts folder.
You can also provide your own image_path and text by:
python inference_scripts/infer_multi_object.py --image_path "your_image_path" --text "your question text"
Evaluation Data: π€ ReasonSeg-Test π€ ReasonSeg-Val
bash evaluation_scripts/eval_reasonseg_visionreasoner.sh
Adjusting '--batch_size' in the bash scripts based on your GPU. And you will see the gIoU in your command line.
Note
Results in VisionReasoner are evaluated within one checkpoint. We recommand you to VisionReasoner for evaluation on more tasks and more benchmarks.
Note
However, in Seg-Zero, the best results on different benchmark are evaluated using different checkpoint. We just evaluate all available checkpoints and write down their value. For someone who may care about the performance, we suggest you can evaluate all benchmark within one model and compare the value (of our released checkpoint) in your environment.
Note
The recommanded training requirement for 7B model is a 4x80G GPUs server or a 8x46G GPUs server.
Training Data: π€ MultiObject-1K π€ MultiObject-7K
Download dataset using this script:
python training_scripts/download_dataset.py
Tip
Try resize the image and re-calculate the corresponding bbox/point coordinates if you have lower GPU memory. Remeber changing the corresponding resize_size in evaluation and inference.
Download pretrained models using the following scripts:
mkdir pretrained_models
cd pretrained_models
git lfs install
git clone https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct
Start training using this script:
bash training_scripts/run_visionreasoner_7b_4x80G.sh
(Optional) Or you can use:
bash training_scripts/run_visionreasoner_7b_8x46G.sh
You can try change the following hyper-parameters if you have a large GPU memory.
worker.actor.micro_batch_size_per_device_for_update=1 or 2 or 4 or 8 or 16 \
worker.actor.micro_batch_size_per_device_for_experience=1 or2 or 4 or 8 or 16 \
If your GPU has less memory, you can change the following config. The number is depend on your GPU memory.
worker.rollout.tensor_parallel_size=[your number between 1-4]
worker.rollout.gpu_memory_utilization=[your number between 0-1]
worker.rollout.n=[your number between 2-32]
(Optional) If you have 8x140G GPUs, you can try:
bash training_scripts/run_visionreasoner_7b.sh
python3 training_scripts/model_merger.py --local_dir [path_to_your_actor_checkpoint]
Please refer to our training data preparation toturial.
Seg-Zero generates several samples, calculates the rewards and then optimizes towards samples that achieve higher rewards.
Tip
To learn more about the GRPO algorithm, you can refer to Hugging Face's blog.
@article{liu2025segzero,
title = {Seg-Zero: Reasoning-Chain Guided Segmentation via Cognitive Reinforcement},
author = {Liu, Yuqi and Peng, Bohao and Zhong, Zhisheng and Yue, Zihao and Lu, Fanbin and Yu, Bei and Jia, Jiaya},
journal = {arXiv preprint arXiv:2503.06520},
year = {2025}
}
@article{liu2025visionreasoner,
title = {VisionReasoner: Unified Visual Perception and Reasoning via Reinforcement Learning},
author = {Liu, Yuqi and Qu, Tianyuan and Zhong, Zhisheng and Peng, Bohao and Liu, Shu and Yu, Bei and Jia, Jiaya},
journal = {arXiv preprint arXiv:2505.12081},
year = {2025}
}
We would like to thank the following repos for their great work:
- This work is built upon the EasyR1 and veRL.
- This work utilizes models from Qwen2-VL, Qwen2.5-VL and SAM2.