Category intelligence

Research Briefing — March 25, 2026

511 current items analyzed and ranked.

Executive synthesis

Research Summary

Today's research centers on test-time compute theory, LLM efficiency, and reasoning faithfulness — with notable safety implications across multiple threads.

On the training methodology front, Sparse but Critical reveals that RLVR fine-tuning changes only a tiny fraction of token-level distributions but at highly targeted positions. ReVal introduces off-policy RL for LLMs, addressing sample efficiency bottlenecks. Problems with Chinchilla Approach 2 exposes systematic biases in the widely-used IsoFLOP parabola fitting methodology for neural scaling laws. T-MAP advances agentic AI safety through trajectory-aware evolutionary red-teaming, while Computational Arbitrage formalizes inference budget allocation across model providers as an economic arbitrage problem.

Key Themes

AI Safety & Alignment · 24Language Models & Test-Time Compute · 8Reinforcement Learning · 21Language Models & Reasoning · 14AI Agents & Automation · 11Mechanistic Interpretability · 10AI Safety & Security · 12AI Safety & Privacy · 8LLM Reasoning and Interpretability · 6Efficient & Scalable Transformers · 4

Primary evidence

Top Ranked Signals

Research arXiv (Machine Learning) Mar 25

Caterpillar of Thoughts: The Optimal Test-Time Algorithm for Large Language Models

By Amir Azarmehr, Soheil Behnezhad, Alma Ghafari

78 score
AI Analysis

Models LLM test-time computation as a Markov chain where the algorithm can backtrack to any previous state. Derives the optimal strategy ('Caterpillar of Thoughts') for allocating a fixed computation budget, providing theoretical foundations for test-time compute.

arXiv:2603.22784v1 Announce Type: new Abstract: Large language models (LLMs) can often produce substantially better outputs when allowed to use additional test-time computation, such as sampling, chain of thought, backtracking, or revising partial solutions. Despite the growing empirical success of such techniques, there is limited theoretical understanding of how inference time computation should be structured, or what constitutes an optimal use of a fixed computation budget. We model test-t
Language ModelsTest-Time ComputeLearning TheoryOptimization
Research arXiv (Artificial Intelligence) Mar 25

Early Discoveries of Algorithmist I: Promise of Provable Algorithm Synthesis at Scale

By Janardhan Kulkarni

72 score
AI Analysis

Introduces Algorithmist, an autonomous agent built on GitHub Copilot that synthesizes algorithms with provable guarantees through a multi-agent research-and-review loop. Demonstrates provable algorithm synthesis at scale with stages for idea generation, proof development, and implementation.

arXiv:2603.22363v1 Announce Type: cross Abstract: Designing algorithms with provable guarantees that also work well in practice remains difficult, requiring both mathematical reasoning and careful implementation. Existing approaches that bridge worst-case theory and empirical performance, such as beyond-worst-case analysis and data-driven algorithm selection, typically assume prior distributional knowledge or restrict attention to a fixed pool of algorithms. Recent progress in LLMs suggests a n
AI AgentsScientific DiscoveryAlgorithm DesignFormal Verification
72 score
AI Analysis

Introduces step-level evaluation for CoT reasoning: removing one reasoning sentence at a time and checking if the answer changes. Finds that for most frontier models, individual reasoning steps are decorative—removal doesn't change the answer. Costs ~$1-2 per model per task.

arXiv:2603.22816v1 Announce Type: cross Abstract: Language models increasingly "show their work" by writing step-by-step reasoning before answering. But are these reasoning steps genuinely used, or decorative narratives generated after the model has already decided? Consider: a medical AI writes "The patient's eosinophilia and livedo reticularis following catheterization suggest cholesterol embolization syndrome. Answer: B." If we remove the eosinophilia observation, does the diagnosis change?
AI SafetyReasoningInterpretabilityEvaluation
Research arXiv (Machine Learning) Mar 25

Sparser, Faster, Lighter Transformer Language Models

By Edoardo Cetin, Stefano Peluchetti, Emilio Castillo, Akira Naruse, Mana Murakami, Llion Jones

72 score
AI Analysis

Introduces sparse packing formats and CUDA kernels for unstructured sparsity in LLM feedforward layers, showing L1 regularization can induce 99%+ sparsity with negligible performance loss and real wall-clock speedups during inference and training.

arXiv:2603.23198v1 Announce Type: new Abstract: Scaling autoregressive large language models (LLMs) has driven unprecedented progress but comes with vast computational costs. In this work, we tackle these costs by leveraging unstructured sparsity within an LLM's feedforward layers, the components accounting for most of the model parameters and execution FLOPs. To achieve this, we introduce a new sparse packing format and a set of CUDA kernels designed to seamlessly integrate with the optimized
Language ModelsEfficiencySparsitySystems
Research arXiv (Artificial Intelligence) Mar 25

Sparse but Critical: A Token-Level Analysis of Distributional Shifts in RLVR Fine-Tuning of LLMs

By Haoming Meng, Kexin Huang, Shaohang Wei, Chiyu Ma, Shuo Yang, Xue Wang, Guoyin Wang, Bolin Ding, Jingren Zhou

70 score
AI Analysis

Provides systematic token-level analysis of how RLVR fine-tuning changes LLM distributions, finding that changes are highly sparse and targeted—only a small fraction of token distributions shift meaningfully, but these sparse changes drive sequence-level reasoning improvements.

arXiv:2603.22446v1 Announce Type: cross Abstract: Reinforcement learning with verifiable rewards (RLVR) has significantly improved reasoning in large language models (LLMs), yet the token-level mechanisms underlying these improvements remain unclear. We present a systematic empirical study of RLVR's distributional effects organized around three main analyses: (1) token-level characterization of distributional shifts between base and RL models, (2) the impact of token-level distributional shifts
Reinforcement LearningLanguage ModelsMechanistic InterpretabilityReasoning
Research arXiv (Artificial Intelligence) Mar 25

Lie to Me: How Faithful Is Chain-of-Thought Reasoning in Reasoning Models?

By Richard J. Young

70 score
AI Analysis

Evaluates chain-of-thought faithfulness across 12 open-weight reasoning models (7B-685B), extending prior work limited to two proprietary models. Finds that many models exhibit very low acknowledgment rates for injected reasoning hints, suggesting CoT is often decorative rather than functional.

arXiv:2603.22582v1 Announce Type: cross Abstract: Chain-of-thought (CoT) reasoning has been proposed as a transparency mechanism for large language models in safety-critical deployments, yet its effectiveness depends on faithfulness (whether models accurately verbalize the factors that actually influence their outputs), a property that prior evaluations have examined in only two proprietary models, finding acknowledgment rates as low as 25% for Claude 3.7 Sonnet and 39% for DeepSeek-R1. To exte
AI SafetyReasoningInterpretabilityLanguage Models
Research arXiv (Machine Learning) Mar 25

Off-Policy Value-Based Reinforcement Learning for Large Language Models

By Peng-Yuan Wang, Ziniu Li, Tian Xu, Bohan Yang, Tian-Shuo Liu, ChenYang Wang, Xiong-Hui Chen, Yi-Chen Li, Tianyun Yang, Congliang Chen, Yang Yu

70 score
AI Analysis

Proposes ReVal, a value-based off-policy RL method for LLMs that combines stepwise Bellman updates with trajectory-level outcome signals and replay buffer training for improved sample efficiency.

arXiv:2603.23355v1 Announce Type: new Abstract: Improving data utilization efficiency is critical for scaling reinforcement learning (RL) for long-horizon tasks where generating trajectories is expensive. However, the dominant RL methods for LLMs are largely on-policy: they update each batch of data only once, discard it, and then collect fresh samples, resulting in poor sample efficiency. In this work, we explore an alternative value-based RL framework for LLMs that naturally enables off-polic
Language ModelsReinforcement LearningSample Efficiency
Research arXiv (Artificial Intelligence) Mar 25

Computational Arbitrage in AI Model Markets

By Ricardo Olmedo, Bernhard Sch\"olkopf, Moritz Hardt

68 score
AI Analysis

Studies arbitrage in AI model markets where an intermediary efficiently allocates inference budget across providers (GPT-5 mini and DeepSeek v3.2) to undercut market prices. Demonstrates viable arbitrage strategies on SWE-bench with net profit generation.

arXiv:2603.22404v1 Announce Type: new Abstract: Consider a market of competing model providers selling query access to models with varying costs and capabilities. Customers submit problem instances and are willing to pay up to a budget for a verifiable solution. An arbitrageur efficiently allocates inference budget across providers to undercut the market, thus creating a competitive offering with no model-development risk. In this work, we initiate the study of arbitrage in AI model markets, em
AI EconomicsModel MarketsSoftware Engineering
Research arXiv (Artificial Intelligence) Mar 25

T-MAP: Red-Teaming LLM Agents with Trajectory-aware Evolutionary Search

By Hyomin Lee, Sangwoo Park, Yumin Choi, Sohyun An, Seanie Lee, Sung Ju Hwang

68 score
AI Analysis

Proposes T-MAP, a trajectory-aware evolutionary search method for red-teaming LLM agents that leverages execution trajectories to discover adversarial prompts causing harmful tool interactions, specifically targeting Model Context Protocol (MCP) ecosystems. Demonstrates attacks that bypass safety guardrails through multi-step tool execution.

arXiv:2603.22341v1 Announce Type: cross Abstract: While prior red-teaming efforts have focused on eliciting harmful text outputs from large language models (LLMs), such approaches fail to capture agent-specific vulnerabilities that emerge through multi-step tool execution, particularly in rapidly growing ecosystems such as the Model Context Protocol (MCP). To address this gap, we propose a trajectory-aware evolutionary search method, T-MAP, which leverages execution trajectories to guide the di
AI SafetyRed TeamingAI AgentsAdversarial Attacks
Research arXiv (Machine Learning) Mar 25

Problems with Chinchilla Approach 2: Systematic Biases in IsoFLOP Parabola Fits

By Eric Czech, Zhiwei Xu, Yael Elmatad, Yixin Wang, William Held

68 score
AI Analysis

Reveals systematic biases in Chinchilla Approach 2 for fitting neural scaling laws. Shows the parabolic approximation causes compute-optimal allocation errors worth $1.4M at frontier scales, with even larger costs for multimodal models.

arXiv:2603.22339v1 Announce Type: new Abstract: Chinchilla Approach 2 is among the most widely used methods for fitting neural scaling laws. Its parabolic approximation introduces systematic biases in compute-optimal allocation estimates, even on noise-free synthetic data. Applied to published Llama 3 IsoFLOP data at open frontier compute scales, these biases imply a parameter underallocation corresponding to 6.5% of the $3.8\times10^{25}$ FLOP training budget and \$1.4M (90% CI: \$412K-\$2.9M)
Scaling LawsLanguage ModelsTraining EfficiencyMachine Learning Theory
Research arXiv (Machine Learning) Mar 25

Non-Adversarial Imitation Learning Provably Free of Compounding Errors: The Role of Bellman Constraints

By Tian Xu, Chenyang Wang, Xiaochen Zhai, Ziniu Li, Yi-Chen Li, Yang Yu

68 score
AI Analysis

Revisits IQ-Learn and proves it reduces to behavioral cloning with quadratic horizon-dependent imitation gap, still suffering from compounding errors. Proposes Bellman constraint-based non-adversarial methods that provably avoid compounding errors.

arXiv:2603.22713v1 Announce Type: new Abstract: Adversarial imitation learning (AIL) achieves high-quality imitation by mitigating compounding errors in behavioral cloning (BC), but often exhibits training instability due to adversarial optimization. To avoid this issue, a class of non-adversarial Q-based imitation learning (IL) methods, represented by IQ-Learn, has emerged and is widely believed to outperform BC by leveraging online environment interactions. However, this paper revisits IQ-Lea
Imitation LearningReinforcement LearningLearning Theory
Research arXiv (Artificial Intelligence) Mar 25

Scaling Attention via Feature Sparsity

By Yan Xie, Tiansheng Wen, Tangda Huang, Bo Chen, Chenyu You, Stefanie Jegelka, Yifei Wang

65 score
AI Analysis

Proposes Sparse Feature Attention (SFA) that reduces attention cost from O(n²d) to O(n²k²/d) by representing queries and keys as k-sparse codes. Introduces FlashSFA, an IO-aware kernel extending FlashAttention for sparse operations.

arXiv:2603.22300v1 Announce Type: cross Abstract: Scaling Transformers to ultra-long contexts is bottlenecked by the $O(n^2 d)$ cost of self-attention. Existing methods reduce this cost along the sequence axis through local windows, kernel approximations, or token-level sparsity, but these approaches consistently degrade accuracy. In this paper, we instead explore an orthogonal axis: feature sparsity. We propose Sparse Feature Attention (SFA), where queries and keys are represented as $k$-spars
Efficient TransformersAttention MechanismsScalability