Recent AI research papers with accessible summaries. Updated daily from arXiv, summarized for developers who don't read papers regularly.
Shiyuan Feng, Huan-ang Gao, Haohan Chi et al.
You can reuse RL training from cheaper small models to improve large models by treating the policy shift (not the final policy) as a dense reward signal—this cuts post-training costs while maintaining reasoning gains across model scales.
This paper proposes Direct-OPD, a method to transfer reinforcement learning gains from smaller models to larger ones without expensive retraining. Instead of distilling the final policy, it extracts the policy shift that RL induced (via log-ratio comparison) and applies it as an implicit reward signal on the stronger model's own data, enabling efficient scaling of RL-based reasoning improvements.
Raphaël Bonnet-Guerrini, Bruno Sanchez, Dominique Fouchez et al.
You can train accurate astronomical classifiers without expensive human labels by combining synthetic data injection with robust handling of noisy labels, and get reliable confidence scores through a hybrid uncertainty approach.
This paper develops a Real-Bogus classification system for astronomical transients that requires no human-labeled training data. It uses simulated transient injections combined with noisy survey data and a dual-network training approach to reliably distinguish real astronomical events from false detections, while also providing calibrated uncertainty estimates.
Matteo Boglioni, Thibault Rousset, Siva Reddy et al.
Current unlearning methods are imprecise at targeting specific parameters where knowledge is stored, making them vulnerable to attacks that resurface the data—precise localization matters more than output-level performance.
LACUNA is a new benchmark for testing whether LLM unlearning methods actually erase sensitive data from model parameters or just hide it. The researchers inject fake personal information into specific weights of language models, then check if unlearning methods successfully target those exact parameters.
Wentao Zhang, Liliana Hotsko, Woojeong Kim et al.
Instead of calling large language models for every fuzzy task, you can compile a natural-language specification once into a tiny reusable neural artifact that runs locally and cheaply—shifting from per-input problem solving to one-time function compilation.
This paper introduces Program-as-Weights (PAW), a method to compile natural-language function specifications into small, locally-executable neural adapters. A 4B compiler generates parameter-efficient adapters that run on a lightweight 0.6B interpreter, matching the performance of much larger models while using 50x less memory and running efficiently on consumer hardware like MacBook M3.
Shuang Li, Zhihui Zhu, Qiuwei Li
Bregman ADMM provably avoids saddle points and finds second-order stationary solutions for nonconvex problems without Lipschitz gradient requirements, making it applicable to polynomial and tensor optimization problems where standard methods fail.
This paper analyzes Bregman ADMM, an optimization algorithm for nonconvex problems with linear constraints that don't require standard smoothness assumptions.
Sihang Nie, Xiaofen Xing, Rui Xing et al.
Separating content and emotion into distinct latent spaces during training prevents reward conflicts and enables better emotional control in TTS systems without sacrificing intelligibility.
This paper addresses emotional expressiveness in LLM-based text-to-speech by proposing HPRO, a hierarchical reward optimization framework that separates emotional and semantic information to avoid conflicting gradients, then progressively aligns rewards across frame, word, and sentence levels to improve emotional control while maintaining speech clarity.
Wenhao Chi, Arkaprava Sinha, Dominick Reilly et al.
Using proxy models as intermediaries between diverse teachers prevents conflicting gradients and enables learning richer egocentric representations from heterogeneous knowledge sources—achieving better results than naive multi-teacher distillation.
This paper introduces UNIEGO, a unified egocentric video encoder trained through a novel multi-teacher distillation framework.
Gina Wong, Drew Prinster, Suchi Saria et al.
Expert-level calibration alone isn't enough for soft-routed MoE models under distribution shift—you need to explicitly calibrate the routing mechanism's aggregate predictions to maintain trustworthy uncertainty estimates.
This paper studies how mixture-of-experts (MoE) models maintain calibrated predictions under distribution shift. The authors show that calibrating individual experts works for hard-routed models but fails for soft-routed ones, and propose an adversarial reweighting method to improve calibration across different routing mechanisms and data distributions.
Jinsu Kim, Jihoon Tack, Noah Lee et al.
You can shrink language models for specific character personas by 50%+ while keeping 93.8% of role-playing quality, making multi-NPC applications practical without sacrificing character consistency.
This paper introduces Persona-Pruner, a technique that creates lightweight language models optimized for specific character roles by identifying and preserving only the persona-relevant parts of a full model. Unlike standard pruning that indiscriminately removes parameters, this method maintains role-playing quality while reducing computational cost—useful for applications with many NPCs.
Junlong Tong, Wenqi Xu, Yingqi Fan et al.
Models can now learn to reason efficiently during streaming input instead of only after seeing everything, using fine-grained reward signals that separately optimize early thinking and final deliberation phases.
AdaSR enables language models to reason incrementally as data streams in (like audio or video), rather than waiting for complete input. It uses a new training method called Hierarchical Relative Policy Optimization to teach models when to think and how much computation to spend at each stage, balancing accuracy, speed, and efficiency.