INQUIRING LINE

Training an AI usually means copying a teacher first, then chasing a reward — but can both happen in a single step?

Can distillation and reward optimization happen in a single training loop?

This explores whether learning-from-a-teacher (distillation) and learning-from-a-reward-signal (RL) can be fused into one update rather than run as separate stages — and what the corpus shows about making that fusion stable.


This question is really asking whether the classic two-step recipe — first copy a teacher (distillation/SFT), then push against a reward (RL) — can collapse into a single loop where both signals shape the same update. The corpus suggests the boundary between the two is thinner than the pipeline convention implies. The clearest bridge is on-policy distillation: instead of imitating a distant, fixed teacher, Can proximity between teacher and student fix distillation instability? constructs a *close* teacher and bounds the update inside a trust region — the same machinery RL uses to keep policy steps from blowing up. Once distillation borrows RL's trust-region discipline, it stops being a separate phase and starts behaving like one term in a policy update.

Coming from the other direction, several notes show reward optimization quietly absorbing the job distillation used to do. Can reinforcement learning embed domain knowledge more effectively than supervised fine-tuning? rewards both answer accuracy *and* explanation quality while cycling between augmented and unaugmented generation — so knowledge that SFT would have transferred by imitation gets internalized through the reward loop instead, and does it better because it optimizes reasoning rather than token-level copying. Can recommendation metrics train language models directly? goes further: training directly on rule-based metrics as RL rewards *eliminates* the SFT-distillation-from-a-proprietary-teacher step entirely. The lesson is that when a good reward exists, the distillation stage can be dissolved into it.

The deepest version is the model becoming its own teacher inside the loop. Can models learn to evaluate their own work during training? trains the model to compute its own reward in the unused sequence space after its output — self-evaluation and generation optimized together, with no external reward model at inference. That's distillation and reward optimization not just co-located but merged into a single self-referential objective.

If you do keep both signals as explicit, separate reward terms in one loop, the corpus is unusually concrete about how to stop them from fighting. Does binary reward training hurt model calibration? shows two objectives (accuracy + a calibration term) can be *jointly* optimized without trade-off when the second term is a proper scoring rule, and How should multiple reward objectives be weighted during training? gives the balancing recipe — weight each objective by its within-group reward variance so the high-signal term dominates automatically. Treat the distillation loss as just another objective and these tools apply directly.

The catch worth carrying away: fusing the two changes *what* gets transferred, not just efficiency. Does richer teacher context hurt student generalization? finds that teachers conditioned on answers and verifier output produce confident, concise traces students inherit — great in-domain, but they suppress the uncertainty-expression that out-of-distribution problems need. So a single loop that rewards a teacher's confident style can bake overconfidence straight into the policy. The unification is real and increasingly the default — but the reward you fold distillation into decides whether you're transferring competence or just transferring a teacher's blind spots.


Sources 7 notes

Can proximity between teacher and student fix distillation instability?

TOP-D constructs a close teacher instead of distilling from a distant target, bounded by a trust region. This controls gradient variance, guarantees monotonic improvement, and outperforms standard distillation with zero computational overhead.

Can reinforcement learning embed domain knowledge more effectively than supervised fine-tuning?

RLAG rewards both answer accuracy and explanation rationality by cycling between augmented and unaugmented generation, progressively internalizing coherent knowledge structures. This outperforms SFT because it prioritizes reasoning quality over token-level correctness.

Can recommendation metrics train language models directly?

Rec-R1 demonstrates that LLMs can be trained directly on rule-based recommendation metrics like NDCG and Recall as RL reward signals, eliminating the need for SFT distillation from proprietary models while remaining model-agnostic across different retriever architectures.

Can models learn to evaluate their own work during training?

Post-Completion Learning exploits unused sequence space after model output to train self-assessment capabilities during training while maintaining zero inference cost. The model learns to compute its own reward functions, internalizing evaluation rather than relying on external reward models.

Does binary reward training hurt model calibration?

Binary correctness rewards incentivize high-confidence guessing because they don't penalize confident wrong answers. Adding the Brier score as a second reward term mathematically guarantees joint optimization of accuracy and calibration without trade-off.

Show all 7 sources
How should multiple reward objectives be weighted during training?

DVAO weights objectives by their within-group variance, automatically up-weighting high-signal objectives and suppressing noise without hyperparameter tuning. This keeps advantage magnitudes bounded and replaces fixed scalarization constants with data-driven weighting.

Does richer teacher context hurt student generalization?

Teachers conditioned on correct answers and verifier output produce confident, concise traces that students inherit. This style suppresses uncertainty expression, optimizing in-domain performance while degrading generalization to out-of-distribution problems that require epistemic caution.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.

Research prompt for your LLMexpand ↓

Copy into ChatGPT or Claude to take this line of inquiry further — it asks the model to find newer work and re-test which earlier constraints still hold.

You are an ML research analyst. Still-open question: can distillation and reward optimization run inside one training loop, instead of the classic distill-then-RL pipeline?

What a curated library found — and when (dated claims, not current truth): findings span ~2024–2026.
- On-policy distillation builds a close, proximal teacher and bounds updates inside a trust region — the same machinery RL uses — so distillation stops being a separate phase and behaves like one term in a policy update (~2026).
- Rewarding answer accuracy plus explanation quality internalizes domain knowledge more effectively than SFT imitation, because it optimizes reasoning over token-level copying (~2025).
- Training directly on rule-based metrics as RL rewards eliminates the SFT-distillation-from-a-proprietary-teacher step entirely (~2025).
- Post-completion learning trains a model to compute its own reward in the unused post-EOS space, merging self-evaluation and generation into one self-referential objective, no external reward model at inference (~2025).
- Accuracy plus a proper-scoring calibration term can be jointly optimized without trade-off; weighting each reward by its within-group variance balances competing objectives automatically (~2026).

Anchor papers (verify; mind their dates): Rec-R1 (arXiv:2503.24289, 2025); Post-Completion Learning (arXiv:2507.20252, 2025); Embedding Domain Knowledge via RL from Augmented Generation (arXiv:2509.20162, 2025); Reinforcement Learning via Self-Distillation (arXiv:2601.20802, 2026).

Your task:
(1) Re-test each constraint. For every finding, judge whether newer models, training methods, tooling, orchestration, or evaluation have relaxed or overturned it. Separate the durable question from the perishable limitation; cite what resolved it, and say plainly where a constraint still holds.
(2) Surface the strongest contradicting or superseding work from the last ~6 months — especially the disagreement over whether fusing the two loops transfers competence or bakes a teacher's overconfidence straight into the policy.
(3) Propose 2 research questions that assume the regime may have moved.

Cite arXiv IDs; flag anything you cannot ground in a real paper.