Instructions to use UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher") model = AutoModelForMultimodalLM.from_pretrained("UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher
- SGLang
How to use UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher with Docker Model Runner:
docker model run hf.co/UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher
Qwen3-VL-32B-Thinking-Mobile-Teacher
This is the Mobile Teacher model from the UI-MOPD project — a platform-specific expert trained for mobile GUI interaction tasks.
Model Description
Qwen3-VL-32B-Thinking-Mobile-Teacher is fine-tuned from Qwen3-VL-32B-Thinking on mobile interaction trajectories from the Uni-GUI dataset. It serves as the mobile-platform teacher in the UI-MOPD multi-teacher on-policy distillation framework.
Key Highlights
- Base Model: Qwen3-VL-32B-Thinking
- Training Data: Mobile subset of Uni-GUI (~160K interaction steps across ~11.5K trajectories)
- Role: Platform-specific teacher for mobile environments in the UI-MOPD distillation pipeline
- MobileWorld Performance: 16.2% task success rate (vs. 9.4% base model)
Training Details
This model is obtained in Stage 1 of the UI-MOPD training pipeline:
- Stage 1 (This Model): Supervised fine-tuning of Qwen3-VL-32B-Thinking on mobile GUI interaction trajectories from Uni-GUI to produce a platform-specific mobile expert.
- Stage 2: The mobile teacher (this model) and a desktop teacher jointly guide a shared 8B student policy via multi-teacher on-policy distillation with platform-conditioned routing.
Performance
| Method | MobileWorld |
|---|---|
| Qwen3-VL-32B-Thinking (base) | 9.4% |
| Mobile Teacher (this model) | 16.2% |
Intended Use
This model is designed to:
- Serve as a teacher model in the UI-MOPD distillation framework for training cross-platform GUI agents
- Be used as a standalone mobile GUI agent for executing mobile tasks (e.g., app navigation, settings control, messaging)
How to Use
from transformers import Qwen3VLForConditionalGeneration, AutoProcessor
model = Qwen3VLForConditionalGeneration.from_pretrained(
"UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher",
torch_dtype="auto",
device_map="auto",
)
processor = AutoProcessor.from_pretrained("UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher")
Citation
@misc{lian2026uimopdmultiplatformonpolicydistillation,
title={UI-MOPD: Multi-Platform On-Policy Distillation for Continual GUI Agent Learning},
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},
year={2026},
eprint={2607.04425},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2607.04425},
}
Related Resources
- Project Page: https://elisspectre.github.io/UI-MOPD/
- Code: https://github.com/EliSpectre/UI-MOPD
- Paper: UI-MOPD (arXiv)
- Desktop Teacher: UI-MOPD/Qwen3-VL-32B-Thinking-Desktop-Teacher
- Student Model: UI-MOPD/Qwen3-VL-8B-Thinking-UI-MOPD-Student
- Downloads last month
- 46
Model tree for UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher
Base model
Qwen/Qwen3-VL-32B-Thinking