The most reliable way to make a language model reason better has, until now, involved a bottleneck no lab can fully engineer away: someone, or something, has to know the right answer. Ground-truth math solutions, verified code, a bigger and more capable teacher model — modern reasoning training runs on a diet of external correctness signals. A paper posted to arXiv on August 6, 2026, argues that the model already contains the signal it needs, and that you can extract it for free.

The method, called Unsupervised On-Policy Self-Distillation (U-OPSD), comes from Yijiang Li, Bingyang Wang, Yijun Liang, Yunjie Tian, Di Fu, and Nuno Vasconcelos, whose group is based at UC San Diego. Its central claim is bracing: a model can teach itself to reason more effectively using nothing but its own generations, and in several cases it matches or beats methods that were handed the correct answers.

The problem: supervision doesn't scale

Reasoning post-training has coalesced around a family of techniques that all lean on some external oracle. Reinforcement learning with verifiable rewards (the GRPO lineage) needs a checker that can confirm a final answer. On-policy distillation needs a stronger teacher model to imitate. On-policy self-distillation (OPSD) is subtler — the same model plays both student and teacher — but the teacher only becomes useful because it is conditioned on privileged information, typically a reference solution the student never sees.

That privileged information is the catch. As the authors put it, existing approaches "still rely heavily on external supervision, including ground-truth signals, environmental feedback, or guidance from larger models, and therefore fall short of genuine 'self'-distillation." Every one of those dependencies is a scaling wall. Ground-truth labels are expensive and finite. Verifiers exist for math and code but thin out fast for open-ended reasoning. Bigger teachers eventually don't exist, because you are already training the frontier.

The question the paper poses is whether the supervision was ever strictly necessary — or whether a capable model already disagrees with itself in structured, exploitable ways.

The method: consensus becomes the teacher

U-OPSD's answer is to manufacture a teacher out of the model's own uncertainty. The recipe has a clean logic to it.

First, sample many solutions to a problem. Then take a majority vote across those rollouts, gated by a self-consistency threshold, to construct a pseudo-solution — the answer the model most agrees with, standing in for the ground truth it isn't given. This is the well-worn observation behind self-consistency: correct reasoning tends to converge, while errors scatter.

The second move is where the paper earns its title. Rather than simply rewarding the consensus answer, U-OPSD conditions a teacher distribution on the shortest pseudo-solution and distills that dense, next-token distribution into the prefixes of the model's longest incorrect completion. In the authors' framing, the technique samples rollouts, "constructs a pseudo-solution by majority vote under a self-consistency threshold," then "conditions a teacher distribution on the shortest pseudo-solution and distills it into prefixes of the model's longest incorrect completion, allowing the model to correct itself precisely where it is confidently wrong."

That last phrase is the crux. The method targets the exact stretches of reasoning where the model was verbosely, confidently mistaken — and overwrites them with the token-level distribution implied by its own consensus. It is self-correction aimed with a scalpel, not a blunt reward pushed onto the whole trajectory. The privileged context that OPSD borrowed from a reference solution is replaced by privileged context the model generates about itself.

The numbers

The headline result is that removing supervision doesn't cost accuracy — and sometimes gains it. On a suite of competition-math benchmarks (AIME24, AIME25, HMMT25, MATH500, and AMC23), U-OPSD lifts Qwen3 in non-thinking mode by 8.5% at the 4B scale and 10.7% at 8B over the base model. Against supervised OPSD, which sees ground-truth answers, the unsupervised method wins by an average of 3.2% (4B) and 2.3% (8B).

In thinking mode — where the base models are already stronger — U-OPSD stays competitive rather than dominant: it edges OPSD by 0.9% at 4B and matches it at 8B, while topping GRPO by 0.7% and 1.1% respectively. The authors summarize the pattern by noting the method "consistently improves over the base models and matches or surpasses supervised methods with ground truth (GT), such as OPSD and GRPO."

The honest read is that U-OPSD is roughly at parity with label-hungry baselines, occasionally better, using none of the labels. For a technique whose entire pitch is cost, parity is the win.

Why it matters: the RL-versus-self-improvement fault line

U-OPSD lands in the middle of the year's defining argument in reasoning research. One camp holds that reinforcement learning against verifiable rewards is the engine of reasoning gains. A growing counter-camp argues that much of what RLVR "teaches" is really the model sharpening capabilities it already latently possesses — and that if the gain is mostly self-generated, you may not need the reward machinery at all.

This paper is a data point for the second camp, and a pointed one, because it competes directly with GRPO on GRPO's home turf of math. If a consensus-derived self-teacher can match a verifiable-reward pipeline, then the verifier was doing less unique work than assumed. The arXiv listing for August alone is thick with neighbors chasing the same intuition — label-free distillation under privileged context, consensus gating, turning binary rewards into dense supervision — which suggests "consensus as supervision" is hardening into a genuine research program rather than a one-off trick.

The label-efficiency story is the practical stakes. If reasoning improvement can be driven by internal consistency, the cost curve for post-training bends downward and, more importantly, extends into domains where no verifier exists.

What to watch

Three questions will decide how far this travels. The first is the consensus ceiling: majority vote only helps when the model is right often enough for its plurality answer to be right, which likely explains why the gains shrink in already-strong thinking mode. What happens on problems the base model gets wrong more often than not — does self-distillation reinforce confident errors instead of correcting them?

Second is domain reach. The evidence here is competition math, where consensus is a strong proxy for correctness. Whether the shortest-pseudo-solution-into-longest-wrong-completion recipe holds for coding, agentic tasks, or genuinely open-ended reasoning is unproven.

Third is compounding. The most consequential version of this idea is iterative — a model that distills its consensus, gets sharper, produces better consensus, and repeats. If that loop compounds without collapsing into stale self-agreement, unsupervised self-distillation stops being a clever way to skip labels and becomes a path toward reasoning systems that improve on their own.

Source: "On-Policy Self-Distillation without Any Supervision," Yijiang Li, Bingyang Wang, Yijun Liang, Yunjie Tian, Di Fu, and Nuno Vasconcelos, arXiv:2608.06296 (August 6, 2026).

"On-policy self-distillation can be achieved using only a model's own generations via internal consistency."
— Li et al., 'On-Policy Self-Distillation without Any Supervision' (arXiv:2608.06296)
+8.5% / +10.7%
Gain over base Qwen3 at 4B / 8B
+3.2% / +2.3%
Margin over supervised OPSD, no labels
+0.7% / +1.1%
Margin over GRPO in thinking mode
0
External labels or teacher models required