GRPO post-trained Qwen2.5-Omni-3B variant used for small-model ablations in the AVSQwen release (run_abla/*_3B.sh). Same training recipe as the 7B flagship, trained 4200 steps.
1from transformers import Qwen2_5OmniForConditionalGeneration, Qwen2_5OmniProcessor
2
3model = Qwen2_5OmniForConditionalGeneration.from_pretrained(
4 "Vegetabot/AVSQwen-Omni-3B",
5 torch_dtype="auto",
6 device_map="auto",
7)
8processor = Qwen2_5OmniProcessor.from_pretrained("Vegetabot/AVSQwen-Omni-3B")
For the full inference pipeline (frame selector + grounding + SAM2 segmenter),
please refer to inference/ and run/*.sh in the release repo.
1@article{avsqwen2026,
2 title = {AVSQwen: ...},
3 author = {...},
4 year = {2026}
5}