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.
Jacky Kwok, Shulu Li, Pranav Atreya et al.
Using continuous probability-based scores instead of discrete LLM judgments improves verification accuracy and calibration, and these fine-grained signals can guide both solution selection and reinforcement learning training.
This paper introduces LLM-as-a-Verifier, a framework that uses language models to evaluate solution correctness by computing probability distributions over scoring tokens rather than discrete scores.
Yanjun Zhao, Ruizhong Qiu, Tianxin Wei et al.
You can boost long-context reasoning without retraining by identifying relevant evidence through attention patterns and replaying it before generation—a simple inference-time trick that works across different model sizes.
ReContext improves how LLMs use information in long documents by replaying relevant evidence before generating answers. Instead of training or pruning context, it uses the model's internal attention signals to identify and reorder important passages, helping the model focus on what matters for each question.
Yuxuan Li, Lingxi Xie, Xinyue Huo et al.
Reasoning models can improve speaker identification in video by combining multiple modalities and contextual evidence, outperforming traditional audio-only approaches on challenging cases.
This paper tackles speaker recognition in long-form TV dramas by introducing DramaSR-532K, a large benchmark with 532K annotated dialogue lines, and DramaSR-LRM, a reasoning-based approach that combines audio, text, and visual information to accurately identify which character is speaking. The method works especially well on short utterances where voice alone isn't reliable.
Kijung Jeon, Thuy-Duong Vuong, Molei Tao
MDM-VGB enables efficient test-time scaling for constrained generation by allowing tokens to be remasked during sampling, achieving quadratic complexity while competing methods like best-of-N suffer exponential complexity—making it practical for real-world constraint satisfaction problems.
This paper introduces MDM-VGB, a sampling method for masked diffusion models that improves generation quality at test time by allowing tokens to be strategically unmasked and remasked based on reward signals.
Kevin Kingslin, Anish Natekar, Ashutosh Ranjan et al.
Using multi-perspective debate to extract alignment principles from preferences captures richer decision-making reasoning than single-pass explanations, leading to more faithful and interpretable AI steering.
This paper improves how AI systems learn from human preferences by using structured debates between different viewpoints to uncover the reasoning behind choices. Instead of just recording which option humans prefer, Democratic ICAI captures multiple competing arguments that influence decisions, then distills these into clear principles that guide AI behavior.
Qingyang Zhu, Eric Karl Oermann, Kyunghyun Cho
You can train a transformer to act as a fast Bayesian predictor by treating prior information as part of the input context, achieving oracle-level accuracy orders of magnitude faster than traditional Bayesian methods.
This paper presents a method for training transformers to perform Bayesian inference quickly by learning from examples of prior distributions and target datasets. Instead of computing exact Bayesian predictions (which is slow), the model learns to map sequences of prior information and data directly to predictions, enabling fast uncertainty-aware inference that adapts to new priors at test time.
Md Nayem Uddin, Amir Saeidi, Eduardo Blanco et al.
Explicitly tracking task state in a separate ledger helps agents avoid stale information and policy violations—two major failure modes in tool-calling agents—without requiring model retraining.
LedgerAgent is a method that helps AI agents handle customer service tasks by maintaining a separate record (ledger) of important task information like facts and constraints. Instead of having agents dig through long prompts to find relevant details, the ledger keeps this information organized and visible, and also checks whether tool calls follow domain rules before executing them.
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.
Pengxin Wang, Lihao Guo, Yi Xie et al.
Allowing different agents to optimize for different objective trade-offs—rather than forcing all agents to use the same preferences—improves both individual performance and team coordination in multi-objective cooperative settings.
This paper tackles multi-objective multi-agent reinforcement learning where teams must balance multiple conflicting goals while coordinating across agents with different roles. The authors propose PCMA, which learns different preference weights for each agent to enable better trade-offs between objectives and improve overall team performance.