EGM-Qwen3-VL-8B-SFT is the supervised fine-tuning (SFT) checkpoint from the first stage of the
EGM (Efficient Visual Grounding Language Models) training pipeline. It is built on top of
Qwen3-VL-8B-Thinking.
This is an
intermediate checkpoint intended for further reinforcement learning training. For the final model with best performance, see
nvidia/EGM-8B.
In the SFT stage, a proprietary VLM generates detailed chain-of-thought reasoning steps for visual grounding training data. The base Qwen3-VL-8B-Thinking model is then fine-tuned on this reasoning-augmented data to learn structured visual grounding with explicit reasoning.
This SFT checkpoint serves as the initialization for the subsequent RL stage (GRPO), which yields the final
EGM-8B model.
1pip install -U huggingface_hub
2huggingface-cli download nvidia/EGM-8B-SFT --local-dir ./models/EGM-8B-SFT
Then follow the installation instructions in the
EGM repository, prepare the RL data and start training:
1export BASE_DIR=$(pwd)
2export MODEL_PATH="${BASE_DIR}/models/EGM-8B-SFT"
3export OUTPUT_DIR="${BASE_DIR}/checkpoint/"
4export DATA_DIR="${BASE_DIR}/data/EGM_Datasets/processed_rl_data/"
5
6cd verl
7bash scripts/grounding_qwen.sh
See the
EGM repository for full RL training instructions.
1@article{zhan2026EGM,
2 author = {Zhan, Guanqi and Li, Changye and Liu, Zhijian and Lu, Yao and Wu, Yi and Han, Song and Zhu, Ligeng},
3 title = {EGM: Efficient Visual Grounding Language Models},
4 booktitle = {arXiv},
5 year = {2026}
6}
This repository benefits from
Qwen3-VL,
InternVL,
verl and
verl-internvl.