Can a model's own consensus replace ground truth labels?
Explores whether majority-vote agreement from multiple model rollouts can substitute for external ground-truth supervision in self-distillation, and whether the model can learn by correcting its own inconsistencies.
The paper's opening complaint is that existing on-policy (self-)distillation "still rel[ies] heavily on external supervision" — ground-truth signals, environmental feedback, or guidance from larger models — and so "fall[s] short of genuine 'self'-distillation." Its answer, unsupervised on-policy self-distillation (U-OPSD), removes all three. With the OPSD recipe "otherwise untouched," the ground-truth solution is replaced by the model's own majority-vote consensus, and the label-free variant "outperforms its supervised counterpart on the five-benchmark average." The abstract goes further and says U-OPSD "matches or surpasses" GT-supervised methods such as OPSD and GRPO.
The mechanism has two gates. The model samples multiple rollouts and builds a pseudo solution by majority vote "under a self-consistency threshold," so a consensus exists only when the model agrees with itself often enough. The model's distribution is then conditioned on that pseudo solution, and distillation is applied "only to self-inconsistent rollouts." The agreeing rollout is the teacher's reference; the disagreeing completions are the training targets. That is how the paper describes correcting the model "precisely where it is confidently wrong": the signal comes from the gap between what the model usually says and what it sometimes says instead.
The discussion states its own scope condition. The advantage reproduces at both model sizes tested in non-thinking mode and is a tie in thinking mode, which the authors attribute to the base model already being strong enough that little headroom remains. Their conclusion is that in the regime of "a base model competent enough to vote well and fallible enough to have headroom," the binding constraint "is not access to gold solutions but the machinery for surfacing and correcting the model's own inconsistencies."
Against the neighbors, this pushes the self-teacher idea one step further. Can environment feedback replace scalar rewards in policy learning? still needs the environment to supply the feedback the policy conditions on; U-OPSD supplies the conditioning content from the model's own vote, and the abstract lists environmental feedback among the supervision that falls short of "genuine" self-distillation. In the terms of Can language models replace reward models with internal signals?, it looks like a further substitution: consensus stands in for the verifier or label while the distillation machinery stays put. It also inherits the on-policy benefit described in Can distillation work on the student's own generated sequences?, which the introduction cites as the reason to distill on the model's own generations.
The excerpt does not establish several things. It names no benchmarks, base models, sizes, effect sizes, threshold value, or rollout count, and says nothing about compute cost against supervised training. It does not say what happens when the majority answer is wrong, so how far the threshold protects against reinforcing a confident error is unreported here. It does not test what the label-free teacher does to reasoning length or out-of-distribution behavior, the trade-off flagged in Does richer teacher context hurt student generalization?. What follows at the strength the evidence allows is narrow: for models that already vote well and still have headroom, gold solutions are not the limiting input to on-policy self-distillation. For saturated or weak models the excerpt gives no support.
Inquiring lines that read this note 11
This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.
Does model confidence reliably signal actual accuracy in practice? Why do LLM recommenders underperform collaborative filtering despite their capabilities? What makes distillation transfer some model capabilities while suppressing others?- Who serves as the teacher model in the routing-guided distillation process?
- Why does unsupervised self-distillation lose its advantage in thinking model mode?
- How does distilling only inconsistent rollouts compare to distilling all generations?
- Does teacher scale matter for on-policy distillation success?
Related concepts in this collection 4
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Can environment feedback replace scalar rewards in policy learning?
Can rich tokenized feedback from environments serve as a direct learning signal for policies, without relying on compressed scalar rewards? This matters because scalar rewards discard information needed for credit assignment.
same self-teacher structure, but the conditioning content is the model's own consensus rather than environment feedback
-
Can language models replace reward models with internal signals?
Recent RL research shows three independent patterns—self-judgment, belief-shift, and rich feedback—that each eliminate a component of the traditional RLHF stack. Are these patterns converging on a fundamentally different architecture for training without external verifiers?
consensus pseudo-labeling reads as another substitute for the verifier inside the same decomposition
-
Can distillation work on the student's own generated sequences?
Supervised distillation trains on fixed teacher outputs, but students must generate at inference. Does training on self-generated sequences scored by the teacher close this distribution mismatch and improve learning?
the on-policy premise U-OPSD builds on, with the external teacher removed
-
Does richer teacher context hurt student generalization?
When teachers are given more information during distillation, they produce confident but brittle students. Does this trade-off between in-domain wins and out-of-distribution robustness hold across different task distributions?
the OOD and trace-length trade-off this excerpt leaves untested for consensus-conditioned teachers
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- On-Policy Self-Distillation without Any Supervision
- Why Does Self-Distillation (Sometimes) Degrade the Reasoning Capability of LLMs?
- Co-RL: Unsupervised Reasoning Emerges from Diverse Cohort in Multi-agent RL
- Reinforcement Learning via Self-Distillation
- Consistency Models Made Easy
- Self-consistency Improves Chain Of Thought Reasoning In Language Models
- Self-distillation Enables Continual Learning
- Can Large Reasoning Models Self-Train?
Original note title
majority-vote consensus can replace the ground-truth solution in on-policy self-distillation — the constraint is surfacing inconsistencies not gold labels