inclusionAI/ZwZ-7B

Model

ZwZ-7B

10

10 commits

1 linked in READMEs

updated Mar 4, 2026

See the code

README

ZwZ-7B

📃 Paper | 🏠 Project | 🤗 Collection

Model Summary

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.

ModelsGeneral PerceptionSpecific PerceptionOOD GeneralizationAvg
ZoomBenchHR-4KHR-8KVStarCV-B.MME-RW-enMME-RW-cnGP-AvgCountQAColorB.MMStarBabyVision
Closed-Source Models
GPT-5.147.2267.0065.2570.1684.2264.0455.5764.7831.4183.4371.6013.9259.44
Gemini-3-Flash59.2987.8885.0086.3989.5774.8672.6279.3766.8885.4783.6034.5175.10
Open-Source Models
Qwen3-VL-2B41.3071.7570.1272.7778.9459.5260.7765.0222.1976.8660.412.1156.98
Qwen3-VL-4B40.2478.2572.8880.1084.9563.4763.6369.0728.1481.6369.7313.6661.52
Qwen2.5-VL-7B42.4971.6267.8878.5375.3460.8058.3064.9918.9176.3661.9312.8956.82
Qwen3-VL-8B37.8778.8874.6386.3985.4465.9666.6770.8328.9982.7770.9312.8962.86
MiMo-VL-7B-RL45.0974.3872.8881.1584.3163.4059.7868.7128.2782.8073.5316.2461.98
MiniCPM-V-4.5 (9B)42.6069.8863.6270.1680.2558.1656.2362.9923.4379.7567.8714.9556.99
GLM-4.5V (108B)49.2381.6374.8883.2587.5966.0460.7171.9035.9384.5975.8715.7265.04
Qwen3-VL-235B-A22B49.1184.5081.6287.9686.7267.0765.2974.6140.5885.6276.3318.3067.55
Kimi-K2.5 (1T)56.3381.8775.3885.8689.1871.5168.4075.5052.8186.6181.8033.2571.18
Our Models
ZwZ-2B (Ours)53.4977.0075.3882.7283.3665.6165.3971.8521.6079.3763.4017.7862.28
ZwZ-4B (Ours)55.7481.7579.5092.6787.9068.5268.0976.3130.8283.0871.1316.2466.86
ZwZ-7B (Ours)55.6275.3873.2588.4879.8366.2166.9672.2520.7280.8263.4015.9862.42
ZwZ-8B (Ours)58.1184.3882.0091.1087.4069.8770.5977.6432.4083.5973.1316.7568.12
avg_comparison

How It Works

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:

  1. Zoom in to micro-cropped regions and let strong teacher models (Qwen3-VL-235B, GLM-4.5V) generate high-quality VQA data
  2. Distill this region-grounded supervision back to the full image with explicit bounding-box overlays
  3. Reinforce via RL training to enable single-glance fine-grained perception without tool use

Quickstart

Installation

pip install transformers accelerate torch qwen-vl-utils

Inference

from transformers import Qwen2_5_VLForConditionalGeneration, AutoTokenizer, AutoProcessor
from qwen_vl_utils import process_vision_info

# default: Load the model on the available device(s)
model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
    "inclusionAI/ZwZ-7B", torch_dtype="auto", device_map="auto"
)

# default processer
processor = AutoProcessor.from_pretrained("inclusionAI/ZwZ-7B")

messages = [
    {
        "role": "user",
        "content": [
            {
                "type": "image",
                "image": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-VL/assets/demo.jpeg",
            },
            {"type": "text", "text": "Describe this image."},
        ],
    }
]

# Preparation for inference
text = processor.apply_chat_template(
    messages, tokenize=False, add_generation_prompt=True
)
image_inputs, video_inputs = process_vision_info(messages)
inputs = processor(
    text=[text],
    images=image_inputs,
    videos=video_inputs,
    padding=True,
    return_tensors="pt",
)
inputs = inputs.to("cuda")

# Inference: Generation of the output
generated_ids = model.generate(**inputs, max_new_tokens=128)
generated_ids_trimmed = [
    out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
]
output_text = processor.batch_decode(
    generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
)
print(output_text)

Training Data

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).

Evaluation

ZoomBench

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.

Benchmark Results

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.

Limitations

  • Performance is optimized for fine-grained perception tasks; for general-purpose multimodal understanding, the base model (Qwen2.5-VL-7B) may be more suitable in some cases.
  • Very high-resolution images may require appropriate preprocessing for optimal results.
  • The model inherits the base model's context length limitations.

Citation

@article{wei2026zooming,
  title={Zooming without Zooming: Region-to-Image Distillation for Fine-Grained Multimodal Perception},
  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},
  journal={arXiv preprint arXiv:2602.11858},
  year={2026}
}

License

This model follows the license of Apache License 2.0.

conversational
endpoints_compatible
image-text-to-text
qwen2_5_vl
safetensors
text-generation-inference
transformers

Contributors

WaltonFuture

5 commits

langdaohlb

3 commits

m1ngcheng

1 commits

nielsr

1 commits

inclusionAI/ZwZ-7B

Model

ZwZ-7B

10

10 commits

1 linked in READMEs

updated Mar 4, 2026

See the code

README

ZwZ-7B

📃 Paper | 🏠 Project | 🤗 Collection

Model Summary

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.

ModelsGeneral PerceptionSpecific PerceptionOOD GeneralizationAvg
ZoomBenchHR-4KHR-8KVStarCV-B.MME-RW-enMME-RW-cnGP-AvgCountQAColorB.MMStarBabyVision
Closed-Source Models
GPT-5.147.2267.0065.2570.1684.2264.0455.5764.7831.4183.4371.6013.9259.44
Gemini-3-Flash59.2987.8885.0086.3989.5774.8672.6279.3766.8885.4783.6034.5175.10
Open-Source Models
Qwen3-VL-2B41.3071.7570.1272.7778.9459.5260.7765.0222.1976.8660.412.1156.98
Qwen3-VL-4B40.2478.2572.8880.1084.9563.4763.6369.0728.1481.6369.7313.6661.52
Qwen2.5-VL-7B42.4971.6267.8878.5375.3460.8058.3064.9918.9176.3661.9312.8956.82
Qwen3-VL-8B37.8778.8874.6386.3985.4465.9666.6770.8328.9982.7770.9312.8962.86
MiMo-VL-7B-RL45.0974.3872.8881.1584.3163.4059.7868.7128.2782.8073.5316.2461.98
MiniCPM-V-4.5 (9B)42.6069.8863.6270.1680.2558.1656.2362.9923.4379.7567.8714.9556.99
GLM-4.5V (108B)49.2381.6374.8883.2587.5966.0460.7171.9035.9384.5975.8715.7265.04
Qwen3-VL-235B-A22B49.1184.5081.6287.9686.7267.0765.2974.6140.5885.6276.3318.3067.55
Kimi-K2.5 (1T)56.3381.8775.3885.8689.1871.5168.4075.5052.8186.6181.8033.2571.18
Our Models
ZwZ-2B (Ours)53.4977.0075.3882.7283.3665.6165.3971.8521.6079.3763.4017.7862.28
ZwZ-4B (Ours)55.7481.7579.5092.6787.9068.5268.0976.3130.8283.0871.1316.2466.86
ZwZ-7B (Ours)55.6275.3873.2588.4879.8366.2166.9672.2520.7280.8263.4015.9862.42
ZwZ-8B (Ours)58.1184.3882.0091.1087.4069.8770.5977.6432.4083.5973.1316.7568.12
avg_comparison

How It Works

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:

  1. Zoom in to micro-cropped regions and let strong teacher models (Qwen3-VL-235B, GLM-4.5V) generate high-quality VQA data
  2. Distill this region-grounded supervision back to the full image with explicit bounding-box overlays
  3. Reinforce via RL training to enable single-glance fine-grained perception without tool use

Quickstart

Installation

pip install transformers accelerate torch qwen-vl-utils

Inference

from transformers import Qwen2_5_VLForConditionalGeneration, AutoTokenizer, AutoProcessor
from qwen_vl_utils import process_vision_info

# default: Load the model on the available device(s)
model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
    "inclusionAI/ZwZ-7B", torch_dtype="auto", device_map="auto"
)

# default processer
processor = AutoProcessor.from_pretrained("inclusionAI/ZwZ-7B")

messages = [
    {
        "role": "user",
        "content": [
            {
                "type": "image",
                "image": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-VL/assets/demo.jpeg",
            },
            {"type": "text", "text": "Describe this image."},
        ],
    }
]

# Preparation for inference
text = processor.apply_chat_template(
    messages, tokenize=False, add_generation_prompt=True
)
image_inputs, video_inputs = process_vision_info(messages)
inputs = processor(
    text=[text],
    images=image_inputs,
    videos=video_inputs,
    padding=True,
    return_tensors="pt",
)
inputs = inputs.to("cuda")

# Inference: Generation of the output
generated_ids = model.generate(**inputs, max_new_tokens=128)
generated_ids_trimmed = [
    out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
]
output_text = processor.batch_decode(
    generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
)
print(output_text)

Training Data

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).

Evaluation

ZoomBench

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.

Benchmark Results

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.

Limitations

  • Performance is optimized for fine-grained perception tasks; for general-purpose multimodal understanding, the base model (Qwen2.5-VL-7B) may be more suitable in some cases.
  • Very high-resolution images may require appropriate preprocessing for optimal results.
  • The model inherits the base model's context length limitations.

Citation

@article{wei2026zooming,
  title={Zooming without Zooming: Region-to-Image Distillation for Fine-Grained Multimodal Perception},
  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},
  journal={arXiv preprint arXiv:2602.11858},
  year={2026}
}

License

This model follows the license of Apache License 2.0.

conversational
endpoints_compatible
image-text-to-text
qwen2_5_vl
safetensors
text-generation-inference
transformers

Contributors

WaltonFuture

5 commits

langdaohlb

3 commits

m1ngcheng

1 commits

nielsr

1 commits