ZwZ-7B is a fine-grained multimodal perception model built upon
Qwen2.5-VL-7B. 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-7B achieves leading performance on fine-grained perception benchmarks among open-source Qwen2.5-VL-7B-based models.
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 Qwen2_5_VLForConditionalGeneration, AutoTokenizer, AutoProcessor
2from qwen_vl_utils import process_vision_info
3
4# default: Load the model on the available device(s)
5model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
6 "inclusionAI/ZwZ-7B", torch_dtype="auto", device_map="auto"
7)
8
9# default processer
10processor = AutoProcessor.from_pretrained("inclusionAI/ZwZ-7B")
11
12messages = [
13 {
14 "role": "user",
15 "content": [
16 {
17 "type": "image",
18 "image": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-VL/assets/demo.jpeg",
19 },
20 {"type": "text", "text": "Describe this image."},
21 ],
22 }
23]
24
25# Preparation for inference
26text = processor.apply_chat_template(
27 messages, tokenize=False, add_generation_prompt=True
28)
29image_inputs, video_inputs = process_vision_info(messages)
30inputs = processor(
31 text=[text],
32 images=image_inputs,
33 videos=video_inputs,
34 padding=True,
35 return_tensors="pt",
36)
37inputs = inputs.to("cuda")
38
39# Inference: Generation of the output
40generated_ids = model.generate(**inputs, max_new_tokens=128)
41generated_ids_trimmed = [
42 out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
43]
44output_text = processor.batch_decode(
45 generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
46)
47print(output_text)
ZwZ-7B 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).
We introduce
ZoomBench, a challenging benchmark with 845 samples across 6 fine-grained dimensions: counting, OCR, color attributes, structural attributes, material attributes, and object identification.
ZwZ-7B achieves state-of-the-art performance among open-source models on fine-grained perception benchmarks. Please refer to the
paper for detailed results.
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 License 2.0.