Also Worth Noting - 2026-07-21
Five papers tightening the feedback loop in LLM training and inference, from hybrid RL-distillation to diffusion-based world models for agent curricula
Also Worth Noting
02 [Training] Distilled Reinforcement Learning for LLM Post-training Pure RL fails at credit assignment; pure on-policy distillation collapses when teacher and student diverge too far. Distilled RL combines outcome-level RL signals with token-level distillation targets, letting the student use coarse correctness feedback to identify where fine-grained teacher guidance is actually informative. The result is reasoning behaviors that neither paradigm produces alone. Teams hitting a post-training ceiling on complex reasoning tasks have a concrete two-signal alternative to try before scaling compute. link
03 [Inference] SWE-Pruner Pro: The Coder LLM Already Knows What to Prune Coding agents internally encode line-level relevance signals while reading tool output, making a separate classifier model unnecessary for context pruning. SWE-Pruner Pro attaches a small head to the agent's own representations and produces a keep-or-prune label per line, with a length-aware embedding keyed to each token's position. No second model, no external classifier, no added inference pipeline. Teams running coding agents at scale can cut context length without the overhead of a two-model pruning stack. link
04 [Theory] Group Entropy-Controlled Policy Optimization Global entropy regularization in mixed-task RLHF actively misfires: it suppresses exploration on already low-entropy tasks while leaving high-entropy tasks under-regulated. The root cause is that heterogeneous task mixtures induce distinct entropy regimes under the same policy, making a single penalty statistically incoherent across prompt groups. Group Entropy-Controlled Policy Optimization applies per-task-type entropy control and corrects the advantage bias that GRPO-style normalization introduces when entropy varies across groups. Any lab running mixed-task alignment should audit whether their current global entropy schedule is quietly degrading performance on a subset of task types. link
05 [Training] LLM-as-a-Coach: Experiential Learning for Non-Verifiable Tasks Collapsing a rubric-based evaluation to a scalar reward discards the quality distinctions that matter most for open-ended tasks like writing, and reward hacking on that single number is the dominant failure mode. Experiential Learning repurposes the judge model as a coach: it distills its full textual assessment of each on-policy response into transferable knowledge that conditions a teacher, which the policy then internalizes through context distillation. Higher-bandwidth feedback replaces the scalar bottleneck entirely. For teams training on non-verifiable tasks, this is a direct answer to the reward hacking problem that scalar RL cannot fix by design. link
06 [Agent] Masked Diffusion Language Models are Strong and Steerable Text-Based World Models for Agentic RL Autoregressive world models for RL training environments carry a left-to-right generation bias that blocks conditioning on globally interdependent state variables, limiting how controllable the generated environments can be. Masked diffusion language models sidestep this by generating text-world states bidirectionally, enabling steerable difficulty and reward shaping without hand-curated environment design. The approach produces more diverse tool-use trajectories than static sandboxes and avoids the mode collapse that sparse rewards over long horizons typically induce. Teams building agent curricula have a practical alternative to fixed-difficulty environments that scales diversity on demand. link