ZwZ-8B is a fine-grained multimodal perception model built upon
Qwen3-VL-8B. It is trained using
Region-to-Image Distillation (R2I) combined with reinforcement learning, enabling superior fine-grained visual understanding in a single forward pass — no inference-time zooming or tool calling required.
ZwZ-8B achieves state-of-the-art performance on fine-grained perception benchmarks among open-source models of comparable size, while also demonstrating strong out-of-distribution generalization on visual reasoning, GUI agent, and AIGC detection tasks.
Traditional "Thinking-with-Images" methods zoom into regions of interest during inference, incurring high latency from repeated tool calls and visual re-encoding. ZwZ transforms zooming from an inference-time tool into a training-time primitive:
1from transformers import Qwen3VLForConditionalGeneration, AutoProcessor
2
3# default: Load the model on the available device(s)
4model = Qwen3VLForConditionalGeneration.from_pretrained(
5 "inclusionAI/ZwZ-8B", dtype="auto", device_map="auto"
6)
7
8processor = AutoProcessor.from_pretrained("inclusionAI/ZwZ-8B")
9
10messages = [
11 {
12 "role": "user",
13 "content": [
14 {
15 "type": "image",
16 "image": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-VL/assets/demo.jpeg",
17 },
18 {"type": "text", "text": "Describe this image."},
19 ],
20 }
21]
22
23# Preparation for inference
24inputs = processor.apply_chat_template(
25 messages,
26 tokenize=True,
27 add_generation_prompt=True,
28 return_dict=True,
29 return_tensors="pt"
30)
31inputs = inputs.to(model.device)
32
33# Inference: Generation of the output
34generated_ids = model.generate(**inputs, max_new_tokens=128)
35generated_ids_trimmed = [
36 out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
37]
38output_text = processor.batch_decode(
39 generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
40)
41print(output_text)
ZwZ-8B is trained on
inclusionAI/ZwZ-RL-VQA, a 74K-sample Region-to-Image distilled VQA dataset synthesized from diverse image pools (SA-1B, LAION, MetaCLIP, Visual Genome, CC12M, STPLS3D).
1@article{wei2026zooming,
2 title={Zooming without Zooming: Region-to-Image Distillation for Fine-Grained Multimodal Perception},
3 author={Wei, Lai and He, Liangbo and Lan, Jun and Dong, Lingzhong and Cai, Yutong and Li, Siyuan and Zhu, Huijia and Wang, Weiqiang and Kong, Linghe and Wang, Yue and Zhang, Zhuosheng and Huang, Weiran},
4 journal={arXiv preprint arXiv:2602.11858},
5 year={2026}
6}
This model follows the license of Apache 2.0 License.