arXiv is now an independent nonprofit! Learn more
License: CC BY 4.0
arXiv:2608.14144v1 [cs.CV] 14 Aug 2026

Self-Supervised Visual On-Policy Distillation

Yijiang Li    Yijun Liang Affiliation: University of Maryland, College Park    Yunjie Tian Affiliation: Independent Researcher[0.3em] {yijiangli, nuno}@ucsd.edu    Bingyang Wang Affiliation: Georgia Institute of Technology    Ke Zhang Affiliation: Johns Hopkins University    Zhenfei Yin Affiliation: University of Oxford    Di Fu Affiliation: Independent Researcher[0.3em] {yijiangli, nuno}@ucsd.edu    Philip Torr Affiliation: University of Oxford    Nuno Vasconcelos    [0.35em] UC San Diego
Abstract

Visual on-policy distillation relies heavily on an informative teacher–student asymmetry, through either a larger, stronger teacher or privileged supervision, such as reference answers or ground-truth regions of interest. This raises a fundamental question: where can informative asymmetry come from when nothing privileged is available? We answer this by inverting where the asymmetry comes from. Rather than adding privileged information to the teacher, we subtract information from the student. This asymmetry creates the same effective learning signal for free as a teacher with access to information unavailable to the student, without ground-truth annotations, rewards, or a separate stronger teacher model. Building on this principle, we introduce Self-Supervised Visual On-Policy Distillation (S2VOPD), a simple yet effective method that constructs on-policy learning signals from asymmetric augmented views. S2VOPD distills the teacher’s distribution conditioned on the original image on-policy into the student distribution conditioned on a strongly augmented view of the same image. We systematically explore a broad design space of visual augmentations and uncover that (1) asymmetry matters: all four augmentation families improve performance, while symmetric self-distillation degrades it; (2) strength matters: performance peaks at a moderate strength; and (3) the gap must remain task-consistent: augmentations that completely remove the question-relevant evidence can induce large but uninformative discrepancies. Across six fine-grained perception benchmarks, S2VOPD improves Qwen3.5-4B from 70.7%70.7\% to 77.4%77.4\%—above all open-source models compared, up to Qwen3-VL at 235235B, and surpasses GPT-5.4. While holding training data the same, it recovers 96%96\% of the improvement achieved by methods with privileged information. Website is at https://williamium3000.github.io/s2vopd.

1 Introduction

On-policy distillation (OPD) has been shown to be effective in post-training of both LLMs (1; 42) and VLMs (2; 16). It improves a student policy by providing dense teacher supervision along the student’s own generated trajectories (1; 42; 21). Central to this paradigm is an informative teacher–student asymmetry: the teacher must possess information or capability that enables it to provide a better predictive target than the student itself. Conventional OPD obtains this asymmetry from a larger or stronger teacher. On-policy self-distillation (OPSD) removes the need for a separate teacher model, but instead conditions the teacher on privileged information, such as reference solutions (42; 19), environmental feedback (11), or ground-truth regions of interest (38; 16; 37). In either case, the learning signal ultimately relies on a privileged advantage external to the model, which becomes increasingly difficult to obtain as model capabilities outpace the supervision humans can reliably provide.

This raises a fundamental question:

where can informative asymmetry come from when nothing privileged is available?

We show that it does not necessarily come from giving the teacher more information at all. Instead, we invert the direction of the asymmetry: rather than adding information to the teacher, we withhold information from the student. The teacher observes the original input, while the student operates on a degraded view of the same input. Their difference in available visual evidence induces a predictive discrepancy and thereby creates the asymmetry required for distillation—without ground-truth annotations, rewards, privileged context, or a separately trained teacher. This idea is similar to self-supervised learning, where supervision is constructed from multiple views of the same unlabeled input (27; 5; 28; 39; 22). Contrastive methods such as SimCLR (4) learn by aligning representations of differently augmented views, while teacher–student methods such as BYOL (8) and DINO (3) use one view to provide learning targets for another augmented view. They all share the principle that augmentation defines invariances that allow models to learn without external labels. Our method follows the same principle, but uses augmentation for a different purpose. Rather than defining a representation-level objective across augmented views, we apply augmentation to invert where the asymmetry comes from, thereby creating an informative asymmetry for free.

Building on this idea, we introduce Self-Supervised Visual On-Policy Distillation (S2VOPD). Given an image xx and question qq, an exponentially moving average teacher observes the original image, while the student generates on-policy trajectories from an augmented view x~=T(x)\tilde{x}=T(x). S2VOPD then conditions the teacher distribution on the original image and distills into the student trajectories generated from an augmented view x~=T(x)\tilde{x}=T(x). This transformation TT induces a predictive gap between teacher and student for free, without labels, regions of interest, or external rewards; the student-side transformation is the sole source of the teacher’s informational advantage.

Once asymmetry is constructed this way, a more important question emerges: how to construct asymmetry through augmentation? We answer this question empirically, with what is to our knowledge the first controlled, large-scale search of the augmentation space for OPD. We show that: (1) asymmetry itself matters: all four augmentation families improve while symmetric self-distillation degrades; (2) strength matters: performance peaks at a moderate teacher–student gap; (3) the gap must remain task-consistent: aggressive cropping enlarges the discrepancy but removes question-relevant evidence, making the supervision less useful.

These findings identify the most effective instantiation of S2VOPD: downscaling the student view to 0.30.30.6×0.6\times resolution with stochastic Gaussian noise. Across six fine-grained perception benchmarks, S2VOPD improves Qwen3.5-4B from 70.7%70.7\% to 77.4%77.4\% in average accuracy, a gain of 6.7%6.7\%. This places a 44B model above Qwen3-VL-Instruct-235B (75.8%75.8\%) and GPT-5.4 (72.8%72.8\%), and matches the much larger Qwen3.5-397B. Moreover, S2VOPD consistently improves both fine-grained perception and math reasoning, by +5.7%+5.7\% and +3.7%+3.7\% at 44B (+3.6%+3.6\% and +3.2%+3.2\% at 99B), surpassing both methods with privileged-supervision and self-rewarding RL methods.

2 Related Work

Self- and semi-supervised learning. A line of self-supervised representation learning derives supervision directly from augmented views of unlabeled images. Contrastive methods such as SimCLR (4) and MoCo (9) align different augmented views of the same image, while negative-free methods including BYOL (8), SimSiam (5), and DINO (3) match a student to a stop-gradient or momentum teacher under different augmentations. Similar asymmetry appears in semi-supervised consistency learning, where predictions from weakly augmented inputs supervise strongly augmented ones (13; 25; 34; 23; 35; 15). Across these paradigms, augmentation is not merely regularization but a central source of supervision, and its design strongly shapes what is learned (27; 6; 7). We adopt this principle for token-level generative distillation: the teacher observes the clean image, the student an augmented view, and their next-token distribution gap provides the supervision for free.

Visual augmentation in vision-language models. Augmentation plays a much smaller role in vision-language model training than in representation learning, as geometric or photometric perturbations can alter instruction-relevant content such as text, object identity, and spatial relations. A recent exception is reinforcement learning for visual reasoning: NoisyRollout 17 uses perturbed images to diversify exploration, while VPPO 10 and PRPO 14 compare policy distributions across clean and perturbed views to identify perception-critical tokens and reweight policy gradients. In all cases, augmentation modulates learning driven by external rewards, with both views evaluated by the same policy. In contrast, we apply augmentation only to the student: the discrepancy from a teacher observing the clean image is itself the training signal, requiring neither rewards nor annotations.

Knowledge distillation and on-policy distillation. On-policy distillation (OPD) 1 trains the student on its own trajectories while receiving dense token-level supervision from a teacher, reducing the train–inference mismatch of offline distillation. Subsequent work studies improved divergence objectives, selective supervision over informative tokens and trajectories 16, and optimization strategies that better preserve visual grounding 37. On-policy self-distillation (OPSD) extends this idea further and removes the need for a larger teacher by sharing a single model between student and teacher, with the teacher granted access to privileged information such as a ground-truth solution. Existing methods obtain this teacher-student asymmetry from verified reasoning traces 42, additional context 36, environmental feedback 11, or privileged visual information 38; 16; 37; 24. These signals, however, require external annotation or guidance that might be costly or unavailable. We mitigate this by inverting where the asymmetry comes from. Rather than adding privileged information to the teacher, we subtract information from the student, by conditioning the student on a strongly augmented view of the same image. Our focus is therefore the design of this augmentation transformation and the properties that make this teacher-student discrepancy an effective supervisory signal.

3 Method

3.1 Self-Supervised Visual On-policy Distillation

Given an image–question pair (x,q)𝒟(x,q)\sim\mathcal{D}, let πθ\pi_{\theta} denote the policy to be optimized and πϕ\pi_{\phi} its exponential-moving-average (EMA) as teacher: ϕ(1η)ϕ+ηθ\phi\leftarrow(1-\eta)\,\phi+\eta\,\theta. Unlike conventional on-policy distillation, πϕ\pi_{\phi} is neither a separately trained stronger model nor conditioned on privileged supervision. Instead, we construct the teacher–student asymmetry directly from their visual inputs.

Asymmetric on-policy views. For each (x,q)𝒟(x,q)\sim\mathcal{D}, we sample a stochastic transformation T𝒯T\sim\mathcal{T} that produces the student view x~=T(x)\tilde{x}=T(x), while the teacher retains the clean view xx. The student samples nn rollouts y(1),,y(n)πθ(x~,q)y^{(1)},\ldots,y^{(n)}\sim\pi_{\theta}(\cdot\mid\tilde{x},q) conditioned on its corrupted view x~\tilde{x}. This gives us a teacher distribution conditioned on the clean view xx: ptτ=πϕ(x,q,y<t)p^{\tau}_{t}=\pi_{\phi}(\cdot\mid x,q,y_{<t}) and the student distribution conditioned on the augmented view x~\tilde{x}: pts=πθ(x~,q,y<t)p^{s}_{t}=\pi_{\theta}(\cdot\mid\tilde{x},q,y_{<t}).

On-policy distillation. With original clean view xx for teacher model and the augmented view x~\tilde{x} for the student, S2VOPD then conditions the teacher’s next-token distribution on the clean view xx, and distills into the student’s own trajectories generated on the degraded view x~\tilde{x}. Let D()D(\cdot\,\|\,\cdot) denote a divergence between two distributions over the vocabulary. The training objective minimizes the expected per-token divergence between the teacher and the student distributions, evaluated along trajectories sampled from the student:

(θ)=𝔼(x,q)𝒟𝔼yπθ(x~,q)[1|y|t=1|y|D(πϕ(x,q,y<t)πθ(x~,q,y<t))].\mathcal{L}(\theta)\;=\;\mathbb{E}_{(x,q)\sim\mathcal{D}}\;\mathbb{E}_{y\sim\pi_{\theta}(\cdot\mid\tilde{x},q)}\!\left[\,\frac{1}{|y|}\sum_{t=1}^{|y|}D\big(\pi_{\phi}\big(\cdot\mid x,\,q,\,y_{<t}\big)\,\big\|\,\pi_{\theta}\big(\cdot\mid\tilde{x},\,q,\,y_{<t}\big)\big)\right]. (1)

The inner expectation renders the objective on-policy: the prefixes y<ty_{<t} at which the two distributions are compared are drawn from the student’s own policy, so that supervision is provided precisely at the states the student visits at inference time.

We instantiate DD as the generalized Jensen–Shannon divergence DJSαD^{\alpha}_{\mathrm{JS}}, which interpolates between the forward and reverse Kullback–Leibler divergence DKLD_{\mathrm{KL}} through a mixture weight α\alpha and remains bounded when the two distributions have limited overlap. With α=0.5\alpha=0.5 and the mixture distribution mt=απϕ(x,q,y<t)+(1α)πθ(x~,q,y<t)m_{t}=\alpha\,\pi_{\phi}(\cdot\mid x,q,y_{<t})+(1-\alpha)\,\pi_{\theta}(\cdot\mid\tilde{x},q,y_{<t}),

DαJS(πϕ(x,q,y<t)πθ(x~,q,y<t))=\displaystyle D^{\alpha}_{\mathrm{JS}}\big(\pi_{\phi}\big(\cdot\mid x,\,q,\,y_{<t}\big)\,\big\|\,\pi_{\theta}\big(\cdot\mid\tilde{x},\,q,\,y_{<t}\big)\big)\;= αDKL(πϕ(x,q,y<t)mt)\displaystyle\alpha\,D_{\mathrm{KL}}\big(\pi_{\phi}\big(\cdot\mid x,\,q,\,y_{<t}\big)\,\big\|\,m_{t}\big) (2)
+\displaystyle+ (1α)DKL(πθ(x~,q,y<t)mt).\displaystyle(1-\alpha)\,D_{\mathrm{KL}}\big(\pi_{\theta}\big(\cdot\mid\tilde{x},\,q,\,y_{<t}\big)\,\big\|\,m_{t}\big).

Both distributions are restricted to the teacher’s top-kk tokens at position tt and renormalized over this support, which stabilizes the objective against the long tail of the vocabulary.

Crucially, the transformation TT constructs an input asymmetry that induces a predictive discrepancy between the student distribution ptsp_{t}^{s} and the teacher distribution ptτp_{t}^{\tau}. Through TT, the student is trained on a deliberately degraded view of the same image, while the teacher evaluates the identical on-policy prefix under the original view. Unlike conventional OPD, which obtains this asymmetry from a stronger teacher or privileged supervision, S2VOPD creates it by withholding visual information from the student. This yields an analogous on-policy distillation signal for free without external labels, rewards, privileged annotations, or a stronger teacher. The effectiveness of this self-constructed supervision therefore depends on how TT shapes the teacher–student predictive gap.

Refer to caption
Figure 1: Overview of S2VOPD. The student generates rollouts from a corrupted view of the image; an EMA teacher scores the same generated prefixes under the clean view; a top-kk generalized JSD transfers the teacher’s better-informed token distributions to the student. The augmentation applied to the student view is the sole source of supervision and the object of our study.

3.2 Constructing Asymmetry for Free

Augmentation space.

The transformation TT is specified by three components: a set of primitive operators together with their probabilities and strength ranges, a composition policy for combining selected operators, and a global probability controlling whether augmentation is applied at all. We organize these operators by how they alter the visual information available to the student, yielding four families (summarized in Table 1):

  • Information reduction. Operators that reduce usable visual information while preserving spatial layout. Subtractive variants remove signal content, including downscaling, Gaussian blur, pixelation, and spectral band-stop filtering; additive variants reduce signal-to-noise ratio through Gaussian noise. We also include visual-token dropping, which reduces the number of encoder tokens while preserving the resolution and positions of those retained.

  • Geometric. Operators that modify spatial organization, including rotation, translation, cropping, and zoom-out with padding. Unlike the other families, these transformations may alter the answer to spatially grounded questions by changing object locations relative to the image frame.

  • Photometric. Operators that modify appearance while preserving geometry and content, including brightness, contrast, saturation, hue, gamma, sharpness, and histogram equalization. These transformations leave object boundaries and spatial relations unchanged.

  • Occlusion. Operators that remove localized image regions while leaving the remainder unchanged, including random erasing, grid masking, and filled crops. This family is distinguished from information reduction by spatial locality. We additionally vary the fill content (e.g., constant or noise) and occlusion granularity (few large versus many small regions).

Table 1: Overview of augmentation operators on the student policy.
Operator Effects Strengths Range
Information reduction
Downscale fewer pixels and visual tokens (no resize-back) s𝒰(0.3,0.6)s\,{\sim}\,\mathcal{U}(0.3,0.6); 0.40.40.70.7; 0.250.250.50.5
Downscale, 3-tier one of three bands drawn per sample [0.2,0.35][0.2,0.35], [0.35,0.5][0.35,0.5], [0.5,0.75][0.5,0.75]
Gaussian blur soft low-pass radius 𝒰(0.5,1.5)\mathcal{U}(0.5,1.5); (1.5,3.0)(1.5,3.0); (3.0,6.0)(3.0,6.0)
Spectral band-stop removes an annulus of the 2D spectrum inner radius 0.150.150.350.35, width 0.150.150.30.3
Gaussian noise additive; lowers signal-to-noise ratio DDPM step 200200 (σ0.11\sigma{\approx}0.11), ρ=0.5\rho{=}0.5
Local pixelation piecewise-constant low-pass (mosaic patches) application probability ρ=0.4\rho{=}0.4
Visual-token drop fewer encoder tokens at native fidelity drop 15/30/50%15/30/50\%
Geometric
Rotation rotates the frame ±35\pm 35^{\circ}
Translation shifts the frame up to 15%15\% of the side length
Crop removes peripheral context, and sometimes the target min. scale 0.70.7 / 0.50.5 / 0.30.3
Zoom-out shrinks the scene onto a padded canvas scale 𝒰(0.4,0.8)\mathcal{U}(0.4,0.8)
Photometric
Colour jitter brightness / contrast / saturation, ρ=0.8\rho{=}0.8 each 0.50.51.51.5 / 0.50.51.81.8 / 0.20.21.81.8
Heavy photometric increase hue, gamma, sharpness, ρ=0.5\rho{=}0.5 each hue ±0.15\pm 0.15; gamma 0.60.61.61.6; sharp. 0.20.22.52.5
Occlusion
Random erasing, grey fill deletes patches, constant fill 3{\leq}3 patches, 5530%30\% area
Random erasing, noise fill deletes patches, random fill 3{\leq}3 patches, 5530%30\% area
GridMask regular-lattice masking, grey fill cell period 0.10.10.30.3, keep ratio 0.50.50.70.7

Formally, let 𝒜={A1,,AM}\mathcal{A}=\{A_{1},\ldots,A_{M}\} denote the collection of candidate operators, where operator AjA_{j} is associated with an application probability ρj\rho_{j} and a strength λjPj\lambda_{j}\sim P_{j}. We first sample a global augmentation indicator

zBernoulli(p),z\sim\operatorname{Bernoulli}(p), (3)

where pp controls the fraction of student views that are augmented. When z=0z=0, the student receives the original view, i.e., T(x)=xT(x)=x. When z=1z=1, we independently sample

bjBernoulli(ρj),j=1,,M,b_{j}\sim\operatorname{Bernoulli}(\rho_{j}),\qquad j=1,\ldots,M, (4)

and compose the selected operators in a fixed order:

T(x)={x,z=0,(AMbM(;λM)A1b1(;λ1))(x),z=1,T(x)=\begin{cases}x,&z=0,\\[5.69054pt] \left(A_{M}^{b_{M}}(\,\cdot\,;\lambda_{M})\circ\cdots\circ A_{1}^{b_{1}}(\,\cdot\,;\lambda_{1})\right)(x),&z=1,\end{cases} (5)

where Aj0A_{j}^{0} denotes the identity and Aj1A_{j}^{1} applies AjA_{j}. This formulation jointly controls the augmentation family, the strength, the per-operator probability, the composition, and the probability 1p1-p of retaining an unaugmented view, and thereby allows us to construct teacher–student asymmetries of different forms and magnitudes in a systematic way. Throughout, augmentation is applied to the student view only; the teacher always observes the original image.

Best recipe.

Among the configurations we explored, the strongest composes two operators of the information-reduction family: downscaling followed by additive Gaussian noise. We set p=1p=1, so that every student view is augmented, and define

T(x)=Anoise(Adown(x,s),λnoise),s𝒰(0.3,0.6),T(x)=A_{\mathrm{noise}}\left(A_{\mathrm{down}}(x;s);\lambda_{\mathrm{noise}}\right),\qquad s\sim\mathcal{U}(0.3,0.6), (6)

where AdownA_{\mathrm{down}} downsamples the image without resizing it back to the original resolution, leading to fewer visual tokens input to the student. Downscaling is applied to every sample, whereas Gaussian noise is applied independently with probability ρnoise=0.5\rho_{\mathrm{noise}}=0.5; the noise follows a DDPM forward step, xα¯tx+1α¯tεx\mapsto\sqrt{\bar{\alpha}_{t}}\,x+\sqrt{1-\bar{\alpha}_{t}}\,\varepsilon at t=200t{=}200, equivalent to additive Gaussian noise of standard deviation 0.11\approx 0.11 with negligible signal attenuation. As a practical benefit, lower-resolution student inputs reduce both rollout and student forward-pass costs. We use this composition as the default instantiation of TT in S2VOPD.

4 Experiments

4.1 Setup

Model and training. We adopt Qwen3.5-4B and Qwen3.5-9B (26) as base models for all experiments. We utilize vLLM (12) as the inference engine for rollouts. Every run uses an identical configuration, unless specified otherwise: batch size 9696 prompts, n=8n{=}8 rollouts per prompt, learning rate 2×1062\times 10^{-6} with 1010 warmup steps, 6565 / 130130 optimizer steps (one epoch of the 66K / 1212K training samples). We apply EMA with η=0.05\eta{=}0.05 on the teacher and a maximum prompt length of 8,1928{,}192 and response length of 1,0241{,}024 tokens.

We sample 12K questions from the natural-image domain of FineVision (32) as our training data and train for 130 optimizer steps. For a fair comparison, we also adopt Vision-OPD-6K (38), whose ground-truth region annotations are only provided to Vision-OPD (38) for training and are never used by S2VOPD.

Evaluation. We evaluate on six perception benchmarks and three math reasoning benchmarks: V*Bench (33), ZoomBench (31), HR-Bench 4K and 8K (30), MME-RealWorld and its Chinese subset (41), MathVista (18), MathVerse (40), and MathVision (29). For inference on the six perception benchmarks, we use greedy decoding with a maximum of 4,0964{,}096 tokens; for math reasoning benchmarks, we adopt a 24,57624{,}576-token budget with temperature T=0.3T{=}0.3, top-pp 0.950.95, top-kk 2020, and presence penalty 1.51.5. Generations are evaluated by first extracting the final answer and applying near-exact matching; only cases unresolved by these rules are adjudicated by an LLM judge (i.e., Qwen2.5-72B-Instruct).

Baselines. We compare S2VOPD with various models and baselines: (i) the base model; (ii) symmetric self-distillation (w/o Aug. in Table 4) where on-policy self-distillation is performed without privileged information and augmentation; (iii) three methods with different privileged information, i.e., GT region of interest annotations (ZwZ (31), Vision-OPD (38)), and Opsd with GT answer as privileged information for teacher. To apply Opsd to vision domain, we train Opsd with Qwen3.5-4B on the Vision-OPD-6k dataset; and (iv) three self-rewarding RL methods, i.e., TTRL (44), Intuitor (43), and RENT (20), all trained for 65 steps on Vision-OPD-6k dataset, following a similar configurations.

4.2 Main results

Table 2: Performance of S2VOPD trained on a 12k subset of FineVision (32), compared with open-source, proprietary, and methods that use privileged information on fine-grained perception benchmarks (accuracy, %; Avg is the average over the 6 benchmarks).
Method Size V* Zoom HR-4K HR-8K MME-RW MME-RW-CN Avg
Open-source models
MiniCPM-V-4.5 70.68 42.60 69.63 61.50 62.65 61.64 61.45
Qwen2.5-VL 7B 78.53 42.49 71.62 67.88 60.80 58.30 63.27
MiMo-VL-RL 7B 83.25 45.68 73.50 69.38 62.73 55.89 65.07
Qwen3-VL 4B 80.10 40.24 78.25 72.88 63.47 63.63 66.43
Thyme 7B 82.20 45.09 77.00 72.00 64.80 64.59 67.61
DeepEyesV2 7B 81.68 44.97 77.88 73.75 64.90 65.07 68.04
DeepEyes 7B 85.86 46.51 75.13 72.63 64.10 64.09 68.05
Qwen3-VL-Instruct 8B 84.82 42.96 79.63 75.25 63.19 64.61 68.41
GLM-4.5V 83.25 49.23 81.63 74.88 66.04 60.71 69.29
Qwen3.5 (our base) 4B 84.29 47.69 84.38 80.13 63.86 63.70 70.68
GLM-4.6V 106B 86.91 50.06 82.13 78.88 65.57 65.62 71.53
Kimi-K2.6 1T 88.48 53.14 81.88 78.00 69.22 66.13 72.81
SenseNova-MARS 8B 92.15 47.81 83.13 78.38 67.90 68.90 73.05
Kimi-K2.5 1T 85.86 56.33 81.87 75.38 71.51 68.40 73.23
Qwen3-VL-Instruct 235B 91.10 56.09 86.13 80.38 71.74 69.04 75.75
Qwen3.5 397B 87.96 57.16 89.38 85.50 74.82 69.82 77.44
Proprietary models
GPT-5.1 70.16 47.22 67.00 65.25 64.04 55.57 61.54
GPT-5.2 79.06 50.89 81.12 78.38 72.60 68.80 71.81
GPT-5.4 76.96 52.66 84.00 77.88 74.20 70.93 72.77
Gemini-3-Flash 86.39 59.29 87.88 85.00 74.86 72.62 77.67
Gemini-3.5-Flash 89.01 61.42 89.12 86.62 75.31 73.97 79.24
Gemini-3.1-Pro 87.96 61.18 89.63 86.88 76.53 73.31 79.25
w/ privileged info.
ZwZ (Qwen2.5-VL-7B) 7B 88.48 55.62 75.38 73.25 66.21 66.96 70.98
ZwZ (Qwen3-VL-4B) 4B 92.67 55.74 81.75 79.50 68.52 68.09 74.38
ZwZ (Qwen3-VL-8B) 8B 91.10 58.11 84.38 82.00 69.87 70.59 76.01
Opsd (trained on Vision-OPD-6K) 4B 81.68 52.54 81.25 77.75 71.91 71.96 72.85
Vision-OPD 4B 92.15 59.76 84.50 80.38 74.88 70.76 77.07
w/o privileged info.
S2VOPD (ours) 4B 91.48 55.98 86.38 82.00 76.13 72.66 77.44

Table 2 reports the performance of S2VOPD trained on a 12K subset of FineVision (32), compared against open-source models, proprietary models, and methods trained with privileged information on six perception benchmarks. S2VOPD improves Qwen3.5-4B from 70.68%70.68\% to 77.44%77.44\% average accuracy, a gain of 6.76%6.76\%. This delivers a 44B model that outperforms all open-source models in Table 2, including Qwen3-VL-Instruct-235B (75.75%75.75\%), and matches the performance of Qwen3.5-397B (77.44%77.44\%). Comparing with proprietary models, S2VOPD outperforms the GPT-5 series and is on par with Gemini-3-Flash, trailing only Gemini-3.5-Flash and Gemini-3.1-Pro by less than 2%2\%. It also surpasses all privileged-supervised methos reported, including ZwZ, Vision-OPD, and Opsd, despite using no ground-truth regions or answers during training.

Fair comparison with prior methods.

To isolate the effect of training data from that of our method, we further evaluate S2VOPD trained on Vision-OPD-6K (38) and compare it with prior privileged-information on-policy distillation methods and self-rewarding RL methods. All models in Table 3 are trained on Vision-OPD-6K for 65 steps using the same training configuration and evaluation protocols. For all methods except the three self-rewarding RL baselines, we report performance from the final checkpoint. The self-rewarding RL methods exhibit substantial training instability and eventually collapse, with some degrading to near-chance performance. We therefore report their best performance across 13 checkpoints saved at 5-step intervals, making the comparison conservative in their favor.

Table 3 shows that S2VOPD achieves the best overall average among all methods without privileged information at both model scales: it improves over the strongest self-rewarding baseline by +2.0%+2.0\% at 44B and by +0.7%+0.7\% at 99B. S2VOPD also exceeds all supervised baselines, including ZwZ, Vision-OPD, and Opsd at the 44B scale; at 99B, it matches Vision-OPD as the runner-up overall while requiring no privileged annotations.

Interestingly, methods with privileged visual information substantially improve perception performance, consistent with their training on perception-oriented data, but are less effective for math reasoning. For example, Opsd decreases MathVision performance by 9.3%9.3\% at 4B and 7.9%7.9\% at 9B, while ZwZ reduces MathVerse accuracy by 27.1%27.1\% at 4B relative to the base model. In contrast, self-rewarding RL methods such as TTRL, Intuitor, and RENT generally improve math reasoning, potentially due to the longer and more deliberative responses induced by GRPO. However, their gains on perception remain limited, likely because their optimization does not explicitly steer the model toward perception-oriented behavior, as Vision-OPD does. S2VOPD achieves the best of both. It derives a perception-aligned learning signal from the model itself, without privileged annotations, while improving both visual perception and mathematical reasoning, achieving near-best perception performance while matching the strongest results on math reasoning.

Table 3: Comparison with prior methods trained on the Vision-OPD training data, across six fine-grained perception and three mathematical-reasoning benchmarks at different model scales. Bold and underline mark the best and the second-best entry in each column within each base model; § indicates that best instead of last checkpoint performance is reported.
Perception Math reasoning
Method V* Zoom HR-4K HR-8K MME-RW MME-RW-CN MathVista MathVerse MathVision Avg
Qwen3.5-4B
Qwen3.5-4B 84.29 47.69 84.38 80.13 63.86 63.70 75.80 67.56 65.26 70.30
w/ privileged info.
ZwZ-4B(31) 92.67 55.74 81.75 79.50 68.52 68.09 71.80 40.48 52.17 67.86
Opsd (42) 85.86 59.88 84.25 76.75 74.70 73.40 72.80 66.17 55.92 72.19
Vision-OPD (38) 91.10 61.42 82.12 80.38 74.38 69.98 79.40 71.68 62.50 74.77
w/o privileged info.
Intuitor§ (43) 81.15 51.24 83.75 82.38 57.50 59.57 81.80 71.98 65.23 70.51
RENT§ (20) 80.63 51.01 82.88 81.62 58.55 60.93 80.47 72.64 66.74 70.61
TTRL§ (44) 85.96 55.62 83.00 81.88 69.85 65.56 80.80 71.68 65.33 73.30
S2VOPD (ours) 87.43 57.99 84.88 83.62 72.87 71.29 81.50 73.22 65.13 75.33
Qwen3.5-9B
Qwen3.5-9B 82.72 52.07 85.75 80.63 71.40 67.67 78.80 70.25 66.91 72.91
w/ privileged info.
ZwZ-8B (31) 91.10 58.11 84.38 82.00 69.87 70.59 76.00 56.45 57.01 71.72
Opsd (42) 87.43 61.18 84.75 81.88 74.10 72.00 75.10 70.10 58.98 73.95
Vision-OPD (38) 89.01 63.43 86.00 85.12 69.95 68.92 83.00 74.64 68.98 76.56
w/o privileged info.
RENT§ (20) 88.48 56.69 83.12 81.88 72.20 67.89 79.00 74.92 69.31 74.83
Intuitor§ (43) 89.01 56.88 85.75 83.50 72.18 67.91 80.50 75.56 69.57 75.65
TTRL§ (44) 87.96 56.14 84.62 81.50 72.90 68.08 79.40 74.72 67.62 74.77
S2VOPD (ours) 90.58 56.92 85.12 82.50 74.31 72.22 80.80 75.63 69.11 76.35

4.3 Which augmentations are useful?

We next ask which augmentations create an informative teacher–student asymmetry that can serve as an effective predictive learning signal. Each configuration below is a complete training run that differs only in TT; the training data, optimizer, step budget, and evaluation protocol are held fixed. Due to limited compute, these analysis runs are evaluated with greedy decoding at a 2,0482{,}048-token budget; their absolute numbers are therefore internally comparable but sit slightly below the 4,0964{,}096-token rows of Table 3.

All augmentation families are effective. Under this fixed analysis protocol, the base model achieves 70.58%70.58\%. Symmetric self-distillation with TT equal to the identity reaches only 65.21%65.21\%, slightly degrading the initial model. In contrast, applying each augmentation family independently yields 75.65%75.65\% for information reduction, 74.40%74.40\% for photometric transformations, 74.30%74.30\% for geometric transformations, and 72.44%72.44\% for occlusion (Figure 2(a)). Thus, every family substantially improves over both the base model and unaugmented self-distillation.

Strength matters: neither too weak nor too strong. Across all augmentation families, performance first improves and then declines as the strength increases. We show this in Figure 2(b) by plotting the averaged performance against the teacher-student gap induced by the augmentation. We measure teacher-student gap as the token-level JS Divergence between the teacher and the student distributions, averaged over the first ten steps of training, which aligns well with the strength parameters of each augmentation (e.g., heavy blur induces a larger teacher–student gap than light blur). Resolution reduction peaks at 75.65%75.65\% for a scale range of 0.30.30.60.6, compared with 75.25%75.25\% and 75.05%75.05\% at weaker and stronger strength. Blur follows the same trend, rising from 74.20%74.20\% to 75.71%75.71\% before falling back to 75.07%75.07\%, as does visual-token dropping, which moves from 72.55%72.55\% up to 73.96%73.96\% and back down to 73.72%73.72\%. More generally, plotting accuracy against the induced teacher–student predictive gap reveals a consistent pattern: performance increases with the gap up to a JS divergence of roughly 0.0140.014, then declines beyond it. Thus, useful asymmetry requires sufficient, but not excessive, perturbation.

Figure 2: (a) Performance of each augmentation family applied alone; (b) Accuracy vs. the teacher–student predictive gap induced by the augmentation. We measure the teacher-student gap as the token-level JS Divergence between the teacher and the student distributions, averaged over the first ten steps of training.

A larger gap is not a better gap: the augmentation must preserve question-relevant information. Cropping exposes this limitation. Unlike information-reduction augmentations, its performance decreases monotonically with strength, falling from 71.53%71.53\% to 68.76%68.76\% and then 67.44%67.44\% across mild, moderate, and strong crops (Figure 2(b)). The strongest crop produces the largest predictive gap in our study yet achieves only 67.44%67.44\%, barely above unaugmented self-distillation. Even the mildest setting, whose induced gap coincides with that of the best resolution and blur configurations, trails them by more than 3%3\%. The degradation is especially pronounced on benchmarks whose answers depend on localized or global visual evidence: moving from moderate to strong cropping reduces V*Bench by 2.1%2.1\%, HR-Bench 8K by 2.4%2.4\%, and MME-RealWorld by 2.1%2.1\%. Cropping may remove the evidence required to answer the question altogether. The resulting discrepancy is therefore large partly because the student’s input has become unanswerable, and such a gap provides little useful learning signal.

Overall, useful asymmetry is governed by both magnitude and semantics. The augmentation must create a sufficient information gap to induce learning, while the structure of that gap determines which perceptual capabilities are emphasized. Downscaling with Gaussian noise offers the most robust default across benchmarks.

4.4 Ablation and analysis

We ablate the effectiveness of augmentation and EMA teacher in Table 4.

Table 4: Component ablation on S2VOPD-4B. w/o aug removes the view asymmetry by showing the student the same clean image as the teacher; w/o EMA keeps the augmentation but freezes the teacher at the base model.
Method V* Zoom HR-4K HR-8K MME-RW MME-RW-CN Avg
S2VOPD 87.43 57.99 84.88 83.62 72.87 71.29 76.35
w/o Aug. 79.06 50.18 86.50 80.62 62.85 63.90 70.52
w/o EMA (fixed teacher) 88.48 54.08 86.75 83.25 72.15 70.98 75.95

Asymmetry is necessary. Removing the student-view augmentation while keeping the objective (w/o Aug., Table 4) collapses the gain back to the base level: 70.52%70.52\% against the base model’s 70.68%70.68\% on the six perception benchmarks. With no information gap, the objective amplifies the teacher’s confident errors instead of correcting the student’s.

EMA teacher. Freezing the teacher at the base model (w/o EMA) costs only 0.40%0.40\%, still reaching 75.95%75.95\%: a teacher that never improves still recovers 93%93\% of the gain. The supervision therefore comes more from the constructed asymmetry than from teacher self-improvement.

We analyze the two choices that instantiate the objective: the teacher update rate and the divergence minimized by the student.

S2VOPD is robust to the teacher update rate. In Table 6, across decay values from 0.950.95 to 0.9990.999, the six-benchmark average remains within 0.8%0.8\% and shows no monotonic trend, indicating that S2VOPD is not sensitive to the precise teacher update rate. This robustness suggests that the teacher’s gradual evolution is not the main driver of performance. Rather, the effective learning signal comes from the teacher–student view asymmetry: the teacher provides a less-degraded reference distribution, while the student is trained to recover from the degraded view. Consistent with this interpretation, even the frozen-teacher variant in Table 4 reaches 75.95%75.95\%, only 0.40%0.40\% below the default. Thus, EMA mainly serves as a stable implementation choice, whereas the essential supervision comes from the constructed asymmetry.

S2VOPD benefits from a balanced divergence. Table 6 analyzes the divergence hyperparameter by comparing the generalized Jensen–Shannon divergence with forward-KL and reverse-KL. Both are consistently worse than JSD (the symmetric midpoint) on each reported benchmark and on average, with the ordering JSD >> reverse KL >> forward KL. This pattern indicates that asymmetric-view distillation requires a divergence that balances coverage and selectivity. Forward KL is too coverage-seeking: it forces the student to match probability mass assigned by the teacher, including fine-grained details that may be unavailable in the degraded student view. Reverse KL is too mode-seeking: it lets the student concentrate on high-confidence modes and discard softer corrective signals. JSD provides a middle ground, transferring useful teacher information while avoiding excessive pressure to imitate inaccessible visual details.

Table 5: Comparison of performance under different teacher update rates (EMA). Avg is over 6 perception benchmarks.
Teacher decay MME-RW MME-RW-CN Avg
0.950.95 72.87 71.29 76.35
0.990.99 72.53 71.07 75.56
0.9990.999 72.29 71.56 76.00
Table 6: Comparison of different divergences. Avg is over 6 perception benchmarks.
𝜶\boldsymbol{\alpha} MME-RW MME-RW-CN Avg
0.00.0 (forward KL) 71.92 69.75 74.74
0.50.5 (JSD) 74.15 71.34 76.05
1.01.0 (reverse KL) 72.43 71.00 75.49

5 Conclusion

S2VOPD proposes a novel method to creates informative teacher–student asymmetry without privileged annotations by subtracting task-relevant information from the student view. The teacher observes the original image, while the student learns from a degraded view; this information gap turns the model’s own predictions into a perception-aligned training signal. Further analysis shows that the effectiveness of S2VOPD is governed by the magnitude and semantics of the induced information gap. Augmentation must remove enough task-relevant evidence to create a useful learning signal, but not so much that it changes the underlying question or makes recovery impossible. Across benchmarks and model scales, S2VOPD improves both fine-grained perception and mathematical reasoning, distinguishing S2VOPD from privileged-supervision methods that improve perception but can weaken reasoning, and from self-rewarding RL methods that preserve reasoning but provide weaker perceptual gains.

References

  • Agarwal et al. (2024) R. Agarwal, N. Vieillard, Y. Zhou, P. Stanczyk, S. Ramos Garea, M. Geist, and O. Bachem On-policy distillation of language models: learning from self-generated mistakes. In International Conference on Learning Representations, Vol. 2024, pp. 21246–21263. Cited by: §1, §2.
  • Bousselham et al. (2026) W. Bousselham, H. Kuehne, and C. Schmid Vold: reasoning transfer from llms to vision-language models via on-policy distillation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 26209–26218. Cited by: §1.
  • Caron et al. (2021) M. Caron, H. Touvron, I. Misra, H. Jégou, J. Mairal, P. Bojanowski, and A. Joulin Emerging properties in self-supervised vision transformers. In 2021 IEEE/CVF international conference on computer vision (ICCV), pp. 9630–9640. Cited by: §1, §2.
  • Chen et al. (2020) T. Chen, S. Kornblith, M. Norouzi, and G. Hinton A simple framework for contrastive learning of visual representations. In International conference on machine learning, pp. 1597–1607. Cited by: §1, §2.
  • Chen and He (2021) X. Chen and K. He Exploring simple siamese representation learning. In 2021 IEEE/CVF conference on computer vision and pattern recognition (CVPR), pp. 15745–15753. Cited by: §1, §2.
  • Cubuk et al. (2019) E. D. Cubuk, B. Zoph, D. Mane, V. Vasudevan, and Q. V. Le Autoaugment: learning augmentation strategies from data. In 2019 IEEE/CVF conference on computer vision and pattern recognition (CVPR), pp. 113–123. Cited by: §2.
  • Cubuk et al. (2020) E. D. Cubuk, B. Zoph, J. Shlens, and Q. Le Randaugment: practical automated data augmentation with a reduced search space. Advances in neural information processing systems 33, pp. 18613–18624. Cited by: §2.
  • Grill et al. (2020) J. Grill, F. Strub, F. Altché, C. Tallec, P. Richemond, E. Buchatskaya, C. Doersch, B. Avila Pires, Z. Guo, M. Gheshlaghi Azar, et al. Bootstrap your own latent-a new approach to self-supervised learning. Advances in neural information processing systems 33, pp. 21271–21284. Cited by: §1, §2.
  • He et al. (2020) K. He, H. Fan, Y. Wu, S. Xie, and R. Girshick Momentum contrast for unsupervised visual representation learning. In 2020 IEEE/CVF conference on computer vision and pattern recognition (CVPR), pp. 9726–9735. Cited by: §2.
  • Huang et al. (2026) S. Huang, X. Qu, Y. Li, Y. Luo, Z. He, D. Liu, and Y. Cheng Spotlight on token perception for multimodal reinforcement learning. In International Conference on Learning Representations, Vol. 2026, pp. 103291–103325. Cited by: §2.
  • Hübotter et al. (2026) J. Hübotter, F. Lübeck, L. Behric, A. Baumann, M. Bagatella, D. Marta, I. Hakimi, I. Shenfeld, T. K. Buening, C. Guestrin, et al. Reinforcement learning via self-distillation. arXiv preprint arXiv:2601.20802. Cited by: §1, §2.
  • Kwon et al. (2023) W. Kwon, Z. Li, S. Zhuang, Y. Sheng, L. Zheng, C. H. Yu, J. Gonzalez, H. Zhang, and I. Stoica Efficient memory management for large language model serving with pagedattention. In Proceedings of the 29th symposium on operating systems principles, pp. 611–626. Cited by: §4.1.
  • Laine and Aila (2017) S. Laine and T. Aila Temporal ensembling for semi-supervised learning. External Links: 1610.02242, Link Cited by: §2.
  • Li et al. (2026) Q. Li, T. Li, X. Cheng, H. Li, R. Gong, K. Niu, K. Jiang, and M. Xu PRPO: perception-reinforced policy optimization via token-level dynamic advantage reshaping. arXiv preprint arXiv:2606.08708. Cited by: §2.
  • Li et al. (2023) Y. Li, X. Wang, L. Yang, L. Feng, W. Zhang, and Y. Gao Diverse cotraining makes strong semi-supervised segmentor. arXiv preprint arXiv:2308.09281. Cited by: §2.
  • Liu et al. (2026) R. Liu, X. Lv, G. Li, X. Zhu, Z. Wang, Z. Zhang, J. Chen, Z. Li, B. Li, J. Gao, et al. Visual-advantage on-policy distillation for vision-language models. arXiv preprint arXiv:2605.21924. Cited by: §1, §2.
  • Liu et al. (2025) X. Liu, J. Ni, Z. Wu, C. Du, L. Dou, H. Wang, T. Pang, and M. Shieh Noisyrollout: reinforcing visual reasoning with data augmentation. Advances in Neural Information Processing Systems 38, pp. 2923–2957. Cited by: §2.
  • Lu et al. (2024) P. Lu, H. Bansal, T. Xia, J. Liu, C. Li, H. Hajishirzi, H. Cheng, K. Chang, M. Galley, and J. Gao MathVista: evaluating mathematical reasoning of foundation models in visual contexts. External Links: 2310.02255, Link Cited by: §4.1.
  • Penaloza et al. (2026) E. Penaloza, D. Vattikonda, N. Gontier, A. Lacoste, L. Charlin, and M. Caccia Privileged information distillation for language models. arXiv preprint arXiv:2602.04942. Cited by: §1.
  • Prabhudesai et al. (2026) M. Prabhudesai, L. Chen, A. Ippoliti, K. Fragkiadaki, H. Liu, and D. Pathak Maximizing confidence alone improves reasoning. External Links: Link Cited by: §4.1, Table 3, Table 3.
  • Sang et al. (2026) H. Sang, Y. Xu, Z. Zhou, R. He, Z. Wang, and J. Sun On-policy self-distillation for reasoning compression. arXiv e-prints, pp. arXiv–2603. Cited by: §1.
  • Sharma et al. (2026) Y. K. Sharma, C. R. Kodi, and V. Padmanabhan A self supervised learning framework for imbalanced medical imaging datasets. arXiv preprint arXiv:2604.01947. Cited by: §1.
  • Sohn et al. (2020) K. Sohn, D. Berthelot, N. Carlini, Z. Zhang, H. Zhang, C. Raffel, E. D. Cubuk, A. Kurakin, and C. Li Fixmatch: simplifying semi-supervised learning with consistency and confidence. Advances in neural information processing systems 33, pp. 596–608. Cited by: §2.
  • Sun et al. (2026) H. Sun, Z. Yi, L. Deng, Y. Zhou, P. Jia, J. Zhao, L. Yuan, J. Lv, and T. Wang V-zero: answer-label-free on-policy distillation with contrastive evidence gating for fine-grained visual reasoning. arXiv preprint arXiv:2606.25319. Cited by: §2.
  • Tarvainen and Valpola (2017) A. Tarvainen and H. Valpola Mean teachers are better role models: weight-averaged consistency targets improve semi-supervised deep learning results. Advances in neural information processing systems 30. Cited by: §2.
  • Team (2026) Q. Team Qwen3.5: accelerating productivity with native multimodal agents. External Links: Link Cited by: §4.1.
  • Tian et al. (2020) Y. Tian, C. Sun, B. Poole, D. Krishnan, C. Schmid, and P. Isola What makes for good views for contrastive learning?. Advances in neural information processing systems 33, pp. 6827–6839. Cited by: §1, §2.
  • Tian et al. (2025) Y. Tian, L. Xie, J. Fang, J. Jiao, and Q. Tian Beyond masking: demystifying token-based pre-training for vision transformers. Pattern Recognition 162, pp. 111386. Cited by: §1.
  • Wang et al. (2024) K. Wang, J. Pan, W. Shi, Z. Lu, H. Ren, A. Zhou, M. Zhan, and H. Li Measuring multimodal mathematical reasoning with MATH-vision dataset. In The Thirty-eight Conference on Neural Information Processing Systems Datasets and Benchmarks Track, External Links: Link Cited by: §4.1.
  • Wang et al. (2025) W. Wang, L. Ding, M. Zeng, X. Zhou, L. Shen, Y. Luo, W. Yu, and D. Tao Divide, conquer and combine: a training-free framework for high-resolution image perception in multimodal large language models. In Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 39, pp. 7907–7915. Cited by: §4.1.
  • Wei et al. (2026) L. Wei, L. He, J. Lan, L. Dong, Y. Cai, S. Li, H. Zhu, W. Wang, L. Kong, Y. Wang, Z. Zhang, and W. Huang Zooming without zooming: region-to-image distillation for fine-grained multimodal perception. arXiv preprint arXiv:2602.11858. Cited by: §4.1, §4.1, Table 3, Table 3.
  • Wiedmann et al. (2026) L. Wiedmann, O. Zohar, A. Mahla, X. Wang, R. Li, T. Frere, L. von Werra, A. R. Gosthipaty, and A. Marafioti FineVision: open data is all you need. External Links: 2510.17269, Link Cited by: §4.1, §4.2, Table 2.
  • Wu and Xie (2024) P. Wu and S. Xie V?: guided visual search as a core mechanism in multimodal llms. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp. 13084–13094. Cited by: §4.1.
  • Xie et al. (2020a) Q. Xie, Z. Dai, E. Hovy, T. Luong, and Q. Le Unsupervised data augmentation for consistency training. Advances in neural information processing systems 33, pp. 6256–6268. Cited by: §2.
  • Xie et al. (2020b) Q. Xie, M. Luong, E. Hovy, and Q. V. Le Self-training with noisy student improves imagenet classification. In 2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp. 10684–10695. Cited by: §2.
  • Ye et al. (2026) T. Ye, L. Dong, X. Wu, S. Huang, and F. Wei On-policy context distillation for language models. arXiv preprint arXiv:2602.12275. Cited by: §2.
  • Yoon et al. (2026) H. S. Yoon, E. Yoon, J. Jang, S. Eom, J. W. Hong, M. Hasegawa-Johnson, Q. Dai, C. Luo, and C. D. Yoo Decomposed on-policy distillation for vision-language reasoning: steering gradients for visual grounding. arXiv preprint arXiv:2606.00564. Cited by: §1, §2.
  • Yuan et al. (2026) Q. Yuan, J. Lou, X. Yu, H. Lin, L. Sun, X. Han, and Y. Lu Vision-opd: learning to see fine details for multimodal llms via on-policy self-distillation. arXiv preprint arXiv:2605.18740. Cited by: §1, §2, §4.1, §4.1, §4.2, Table 3, Table 3.
  • Zaher et al. (2026) K. Zaher, I. Moummad, O. Buisson, and A. Joly Self-supervised learning as discrete communication. arXiv preprint arXiv:2602.09764. Cited by: §1.
  • Zhang et al. (2024) R. Zhang, D. Jiang, Y. Zhang, H. Lin, Z. Guo, P. Qiu, A. Zhou, P. Lu, K. Chang, Y. Qiao, P. Gao, and H. Li MATHVERSE: does your multi-modal llm truly see the diagrams in visual math problems?. In Computer Vision – ECCV 2024: 18th European Conference, Milan, Italy, September 29–October 4, 2024, Proceedings, Part VIII, Berlin, Heidelberg, pp. 169–186. External Links: ISBN 978-3-031-73241-6, Link, Document Cited by: §4.1.
  • Zhang et al. (2025) Y. Zhang, H. Zhang, H. Tian, C. Fu, S. Zhang, J. Wu, F. Li, K. Wang, Q. Wen, Z. Zhang, et al. Mme-realworld: could your multimodal llm challenge high-resolution real-world scenarios that are difficult for humans?. In International Conference on Learning Representations, Vol. 2025, pp. 89655–89701. Cited by: §4.1.
  • Zhao et al. (2026a) S. Zhao, Z. Xie, M. Liu, J. Huang, G. Pang, F. Chen, and A. Grover Self-distilled reasoner: on-policy self-distillation for large language models. arXiv preprint arXiv:2601.18734. Cited by: §1, §2, Table 3, Table 3.
  • Zhao et al. (2026b) X. Zhao, Z. Kang, A. Feng, S. Levine, and D. Song Learning to reason without external rewards. In The Fourteenth International Conference on Learning Representations, External Links: Link Cited by: §4.1, Table 3, Table 3.
  • Zuo et al. (2025) Y. Zuo, K. Zhang, L. Sheng, S. Qu, G. Cui, X. Zhu, H. Li, Y. Zhang, X. Long, E. Hua, B. Qi, Y. Sun, Z. Ma, L. Yuan, N. Ding, and B. Zhou TTRL: test-time reinforcement learning. In The Thirty-ninth Annual Conference on Neural Information Processing Systems, External Links: Link Cited by: §4.1, Table 3, Table 3.