Recent AI research papers with accessible summaries. Updated daily from arXiv, summarized for developers who don't read papers regularly.
Zhekai Chen, Chengqi Duan, Kaiyue Sun et al.
This benchmark separates what a language model can do from how well an agent framework uses those abilities—showing that both matter equally for real-world performance.
UniClawBench is a new benchmark for evaluating AI agents that work with real-world tools and applications. Unlike older benchmarks that use static simulations, it tests agents in live environments with 400 real tasks across five key capabilities: using tools, exploring options, understanding long documents, processing images/video, and coordinating across platforms.
Xinyan Chen, Ziyu Guo, Renrui Zhang et al.
Video generation can be a reasoning mechanism: training models on diverse temporal reasoning tasks and adding explicit reasoning tokens improves their ability to solve logical problems by generating step-by-step visual explanations.
OpenCoF introduces a dataset and fine-tuned video model designed to teach AI systems to reason through generating sequences of video frames. Unlike text-based reasoning, this 'Chain-of-Frame' approach lets models unfold logical steps visually across time. The work shows that video models trained on diverse reasoning tasks with special reasoning tokens perform better at solving complex problems.
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.