Views
No views yet
Note: This model is not used in the UI-MOPD student training path. In the UI-MOPD pipeline, the 8B student is cold-started directly from theQwen3-VL-8B-Thinkingbase and trained via on-policy distillation from the 32B teachers.
Qwen3-VL-8B-Thinking base (not from any SFT checkpoint) and trained via DAPO (reinforcement learning) with multi-teacher on-policy distillation using platform-conditioned routing from the 32B teachers.1from transformers import Qwen3VLForConditionalGeneration, AutoProcessor
2
3model = Qwen3VLForConditionalGeneration.from_pretrained(
4 "UI-MOPD/Qwen3-VL-8B-Thinking-Mobile-SFT",
5 torch_dtype="auto",
6 device_map="auto",
7)
8processor = AutoProcessor.from_pretrained("UI-MOPD/Qwen3-VL-8B-Thinking-Mobile-SFT")1@misc{lian2026uimopdmultiplatformonpolicydistillation,
2 title={UI-MOPD: Multi-Platform On-Policy Distillation for Continual GUI Agent Learning},
3 author={Niu Lian and Alan Chen and Zhehao Yu and Chengzhen Duan and Fazhan Liu and Hui Liu and Pei Fu and Jian Luan and Yaowei Wang and Shu-Tao Xia and Jinpeng Wang},
4 year={2026},
5 eprint={2607.04425},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2607.04425},
9}