Qwen3-VL 2B gains 4.77pp from image-erasure self-distillation
TL;DR
- VCSD lifts Qwen3-VL 2B from 62.27% to 67.04% (+4.77pp) on seven benchmarks using an EMA teacher and image erasure.
- The method requires no external teacher, no privileged answers, no reasoning traces, and no added inference-time cost.
- Qwen3-VL 4B improved by 1.86pp and Qwen3-VL 8B by 3.75pp, showing consistent gains across the family.
A quiet arXiv drop this month is worth reading if you care about post-training vision-language models without a bigger model to lean on. A team of researchers proposes Visual Contrastive Self-Distillation, or VCSD, and reports in the paper on arXiv that it lifts Qwen3-VL 2B from 62.27% to 67.04% on an aggregate of seven benchmarks, a gain of 4.77 percentage points. The method, per the abstract, needs no external teacher, no privileged answers, no reasoning traces, and no added inference-time cost.
The mechanism is unusual and, on paper, cheap. An exponential moving average copy of the student itself acts as a teacher, but the teacher is asked to score two versions of the same input: the original image, and a content-erased version of that image. The token-wise log-probability difference between those two forward passes is what the paper describes as sharpening the teacher distribution toward candidates whose likelihood is specifically increased by the instance-level visual content. The student then learns from that sharpened distribution. There is no second model to run at inference time, so the deployment picture is the same as before.
Results are reported for the larger sizes in the family too, and the pattern is the interesting part. Qwen3-VL 4B goes from 71.30 to 73.16, and Qwen3-VL 8B goes from 72.51 to 76.26. The smallest model benefits most in absolute terms, which is the direction anyone running open VLMs on a modest budget would like to see.
The honest caveats are the usual ones for a fresh preprint. This is a self-report from the authors on a benchmark aggregate built on the ViRL39K dataset, and what the abstract does not give you is training cost, the specifics of the erasure procedure, or evidence that the gains generalize outside the seven benchmarks used. Image-erasure as a contrastive signal is the kind of trick where what you erase, and how, tends to matter a lot, and external replication has not landed yet.
If it holds up, though, the useful part is who it helps. Teams that cannot afford to distill from a larger closed model, or that are building on the open Qwen3-VL series specifically, get a training recipe they can actually run. The next things worth watching are whether the recipe transfers to non-Qwen VLMs and whether the gains survive on out-of-distribution evaluations.
Originally reported by paper
Read the original article →Original headline: Visual Contrastive Self-Distillation Lifts Qwen3-VL 2B by 4.77pp Using Image Erasure—No External Teacher