ArtificialIntelligence.io

The Signal

Everything that matters in AI, with our take.

Updated through the day. Every headline links straight to the source. The two lines underneath are ours.

arXiv cs.CLPaper

Negative Self-Distillation: Learning to Reason by Avoiding Flaws

This directly addresses a failure mode in self-improvement: forcing confidence on correct solutions actually breaks reasoning quality on hard problems because it penalizes the exploration and self-correction needed to solve them. NSD inverts the signal to learn from mistakes instead. If you're using self-distillation for reasoning, this changes the approach.

arXiv cs.AIPaper

Everything in Moderation: Per-Domain Coverage Optima and Alignment-Resistant Domain Gaps in Multi-Domain Mid-Training

This is careful empirical work on a real problem: how much of each domain should you train on before alignment? The finding that moderate coverage is best for all domains is useful, but it's domain-specific to logical reasoning on KOR-Bench. The second finding, that alignment can't fully undo mid-training allocation choices, is more consequential: it means those decisions get locked in. Relevant if you're doing multi-domain mid-training, otherwise academic.

arXiv cs.LGPaper

Curriculum Learning as Transport: Understanding Curricula with Wasserstein Geodesics

This is solid methodological work for training researchers. The key insight—that curriculum effects are task and context-dependent with no universal dominant strategy—is useful for practitioners who thought there was a silver-bullet curriculum recipe. If you're tuning model training, the framework lets you isolate what's actually helping versus what's noise. Most builders won't need this, but RL engineers working on reasoning models should read it.

Alignment ForumArticle

Training on probes: Research ideas

This is early-stage research on how to train models to behave better when supervised on properties like honesty. The idea is to avoid gaming the probe itself. The excerpt is dense and incomplete, so it's hard to know if this works or matters. Check the full post if you're building interpretability or RLHF pipelines.

arXiv cs.AIPaperClaude Watch

What Matters in On-Policy Distillation? A Perspective on Data Efficiency and Data Selection

On-policy distillation (extracting reasoning by fine-tuning a student on teacher outputs) is becoming standard practice. This paper's finding is useful: hard examples matter more than quantity, and what matters is CoT length, not token randomness. For builders: when distilling reasoning models, prioritize data quality and example difficulty. The 1-shot result is striking but the sample is small.

arXiv cs.AIPaper

RISE: Recursive Improvement via Self-Extrapolating Policy Distillation

This addresses a real bottleneck in LLM post-training: most distillation approaches require external teachers or expensive privileged information. RISE bootstraps improvement from the model's own trajectory, which is cheaper and avoids distribution mismatch. If you're optimizing LLM training, the technique is concrete and reproducible. The recursive loop between rewards and token-level refinement is clever.

arXiv cs.LGPaper

On the Principles Behind Neural Network Optimizers

Adam's dominance in LLM training rests on special Hessian geometry that emerges during transformer training, not on general principles. If you're building custom optimizers or training at scale, this explains why Adam's diagonal preconditioner works when theory says it shouldn't, and points toward concrete improvements for specific hardware and batch sizes.

arXiv cs.AIPaper

Blog: Survey of Optimizers

The optimizer design space has genuinely expanded in two years. Muon, Shampoo, schedule-free training each win in different regimes, and AdamW is still competitive. For builders: your 2024 optimizer might be inefficient now; experiment with matrix methods and schedule-free on your scale. For teams shipping models: there's no one knob to turn, so benchmark your specific workload.

arXiv cs.CLPaper

Hidden Threat in Synthetic Data: Covert Targeted Bias Injection through Benign Text

This is a real attack surface that will matter more as synthetic data becomes standard for model training and fine-tuning. The threat isn't new data poisoning, it's poisoning that survives alignment and stays hidden in task performance. If you're building with synthetic data or training models on it, you need to audit not just the data itself but the source model that generated it. For vendors: this becomes a procurement question, not just a training one.

arXiv cs.LGPaper

Normalized Low-Rank Adaptation

LoRA is the dominant adapter method, and any improvement that has zero inference overhead is worth auditing. This paper shows measurable gains across pretraining, supervised finetuning, and RL without added parameters or latency. If you're shipping LoRA-based fine-tuning for any scale, normalizing the down-projection is a free upgrade. The implementation is trivial and the gains are real.

arXiv cs.CLPaper

From Production Traffic to Post-Training: Building a Self-Hosted LLM That Covers the Corporate Request Mix

This is how you consolidate a sprawling serving fleet under data-residency constraints: split the problem into independent failure modes (instruction-following, function-calling, task distribution), train separate experts, merge them carefully. The constraint-driven engineering here is the point. If you're running on-prem or private cloud, you need this recipe.

TechCrunch AIArticle

AfterQuery reportedly becomes Y Combinator’s fastest-ever unicorn, now valued at $3.2B

This is signal about capital allocators' appetite for model training infrastructure. Training data and optimization are becoming venture-fundable categories at scale. For builders: if you're generating synthetic data or working on training efficiency, this is validation. For investors: the model training layer is hot, but AfterQuery's actual product and defensibility matter more than the valuation headline.

arXiv cs.CLPaper

Sequential Beats Joint: On the Interplay between On-Policy Distillation and RLVR

This is concrete and actionable. The two-stage pipeline (OPD-then-RL) beats joint training across logic and math benchmarks. The insight is clean: distillation expands coverage, RL sharpens within it. Joint training causes interference. If you're post-training a reasoning model, this directly changes your training recipe. Implement this before experimenting further with joint approaches.

arXiv cs.AIPaper

Environment Evolution for Terminal Agents

Frontier models need harder problems faster. This tackles a real bottleneck: on-policy co-evolution doesn't generalize well as models get stronger. The solution is off-policy environment evolution with scheduled difficulty. If you're training agents at scale or building the training infrastructure for them, this is worth implementing. The mechanism here directly affects sample efficiency.

arXiv cs.LGPaper

Cliff: Learning Process Rewards from the First Mistake

Process reward modeling has been stuck on the problem of noisy intermediate signals. Cliff's insight is clean: once reasoning goes wrong, everything after is noise. This makes the learning signal sharper without needing a separate reward model or teacher-student alignment. Worth experimenting with if you're training reasoning-heavy models.

arXiv cs.CLPaper

From Reweighting to Rewriting: Unlocking the Intervention Effects of Influential Samples in Training Data Attribution

Influence functions identify important examples but don't tell you how to intervene on them. Response rewriting instead of reweighting does, and persists across checkpoints. This is methodologically sound but stays inside academia. If you're building training systems where you need to nudge model behavior, the insight is: find the examples that matter, then replace their labels, don't just adjust their weights. Harder to implement, stronger effect.

arXiv cs.LGPaper

Efficiently Estimating Optimal Hyperparameter Scaling Laws through Power-Law Entropy Search

The efficiency gain is real if you're training LLMs at scale and need to predict optimal configs at new model sizes. But this is a narrow tool for a narrow audience: if you're not doing frontier model training, it doesn't change your day. Even among LLM labs, the question is whether the sampling budget PLES saves outweighs the latency cost of Bayesian optimization.

arXiv cs.CLPaper

From Rollouts to Recipes: Self-Contained Post-Training for LLMs

This is a concrete improvement to post-training efficiency: instead of applying one recipe to all samples, route samples adaptively based on what the model's own outputs tell you. The results show consistent gains over uniform GRPO on math reasoning. If you're post-training LLMs, this is worth testing on your workload; the payoff is cheaper, faster convergence without external data.

arXiv cs.LGPaper

Does On-Policy Distillation Really Distill? From Noisy Teacher to Self-Improvement

This challenges a standard assumption about how on-policy distillation actually works. If the student learns despite noisy supervision, and the real mechanism is token suppression, then OPD might be a blunt instrument you're using wrong. For teams building RL systems for code or reasoning: revisit your distillation setup. The paper suggests simpler baseline methods may work as well, which could unlock faster training.

arXiv cs.LGPaper

Sycophantic Agreement Transfers with Neutral Data via Contrastive Preference Optimization

The finding is real and methodologically sound: bad alignment behaviors can be baked into training via preference data you don't control. This matters for teams building or fine-tuning models on third-party datasets. The fix isn't in this paper, but the diagnostic is useful. Check your preference data if you're building models that need to disagree with users sometimes.

arXiv cs.CLPaper

PLC-DPO: Posterior Label Correction in Noisy and Ambiguous Preference Optimization

This matters if you're doing RLHF or DPO at scale and dealing with imperfect human feedback or weak signals. The routing approach (clean/flip/tie) is a practical improvement over naive filtering, and the 60.5 vs 55.5 win rate delta is material. It's not a paradigm shift, but if you're actively training models on preference pairs, revisiting your label-handling strategy here pays off.

arXiv cs.CLPaper

REER-PT: Reverse-Engineered Reasoning for Perplexity-Guided Pre-training Data Augmentation

This attacks a real bottleneck: high-quality reasoning data for pre-training. Instead of expensive synthetic rollouts during training, the method tags continuations offline and inserts annotations that show the missing step. It's sparse and compatible with standard next-token prediction. For labs scaling training, this is immediately applicable and should improve reasoning capability per token. The perplexity-guided signal is a smart way to automate curation. This is the kind of data engineering that moves capability needles.

arXiv cs.CLPaper

GMTS: Gradient Magnitude-based Token Selection Improves RLVR Training for LLM Reasoning

The entropy-gradient connection is real: high-entropy tokens correlate with large gradients, but entropy alone doesn't explain importance across different reward signals. GMTS improves on entropy-only selection by accounting for answer-level variation. This matters for anyone running RLVR pipelines on reasoning: it's a tuning lever that should measurably reduce your training cost per reasoning improvement. The paper is incremental but practically useful for scaling reasoning training.