Instructions to use UI-MOPD/Qwen3-VL-8B-Thinking-Mobile-SFT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use UI-MOPD/Qwen3-VL-8B-Thinking-Mobile-SFT 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-8B-Thinking-Mobile-SFT") 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-8B-Thinking-Mobile-SFT") model = AutoModelForMultimodalLM.from_pretrained("UI-MOPD/Qwen3-VL-8B-Thinking-Mobile-SFT") 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-8B-Thinking-Mobile-SFT 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-8B-Thinking-Mobile-SFT" # 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-8B-Thinking-Mobile-SFT", "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-8B-Thinking-Mobile-SFT
- SGLang
How to use UI-MOPD/Qwen3-VL-8B-Thinking-Mobile-SFT 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-8B-Thinking-Mobile-SFT" \ --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-8B-Thinking-Mobile-SFT", "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-8B-Thinking-Mobile-SFT" \ --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-8B-Thinking-Mobile-SFT", "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-8B-Thinking-Mobile-SFT with Docker Model Runner:
docker model run hf.co/UI-MOPD/Qwen3-VL-8B-Thinking-Mobile-SFT
Qwen3-VL-8B-Thinking-Mobile-SFT
This is the Mobile SFT model from the UI-MOPD project — a supervised fine-tuned 8B model trained on mobile GUI interaction data, serving as the initialization for the student policy before on-policy distillation.
Model Description
Qwen3-VL-8B-Thinking-Mobile-SFT is fine-tuned from Qwen3-VL-8B-Thinking on mobile interaction trajectories from the Uni-GUI dataset. It provides a warm-start checkpoint for the 8B student model in the UI-MOPD multi-teacher on-policy distillation framework.
Key Highlights
- Base Model: Qwen3-VL-8B-Thinking
- Training Data: Mobile subset of Uni-GUI (~160K interaction steps across ~11.5K trajectories)
- Training: Supervised fine-tuning (SFT) on mobile GUI interaction trajectories
- Role: Warm-start initialization for the student policy in Stage 2 (RL distillation)
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-8B-Thinking on mobile GUI interaction trajectories from Uni-GUI.
- Stage 2: The SFT checkpoint is further trained via DAPO (reinforcement learning) with multi-teacher on-policy distillation using platform-conditioned routing from 32B teacher models.
Intended Use
This model is designed to:
- Serve as a warm-start checkpoint for the student policy in the UI-MOPD distillation framework
- Be used as a standalone mobile GUI agent for executing mobile tasks (e.g., app navigation, settings control, messaging)
- Provide a baseline for comparing SFT-only vs. distillation-enhanced performance
How to Use
from transformers import Qwen3VLForConditionalGeneration, AutoProcessor
model = Qwen3VLForConditionalGeneration.from_pretrained(
"UI-MOPD/Qwen3-VL-8B-Thinking-Mobile-SFT",
torch_dtype="auto",
device_map="auto",
)
processor = AutoProcessor.from_pretrained("UI-MOPD/Qwen3-VL-8B-Thinking-Mobile-SFT")
Citation
@article{lian2025uimopd,
title={UI-MOPD: Multi-platform On-Policy Distillation for Continual GUI Agent Learning},
author={Lian, Niu and Chen, Alan and Yu, Zhehao and Duan, Chengzhen and Liu, Fazhan and Liu, Hui and Fu, Pei and Luan, Jian and Wang, Yaowei and Xia, Shu-Tao and Wang, Jinpeng},
year={2025}
}
Related Resources
- Project Page: https://elisspectre.github.io/UI-MOPD/
- Code: https://github.com/EliSpectre/UI-MOPD
- Paper: UI-MOPD Paper
- Desktop Teacher: UI-MOPD/Qwen3-VL-32B-Thinking-Desktop-Teacher
- Mobile Teacher: UI-MOPD/Qwen3-VL-32B-Thinking-Mobile-Teacher
- Student Model: UI-MOPD/Qwen3-VL-8B-Thinking-UI-MOPD-Student
- Downloads last month
- -
Model tree for UI-MOPD/Qwen3-VL-8B-Thinking-Mobile-SFT
Base model
Qwen/Qwen3-VL-8B-Thinking