ThinkLLM
ModelsCapabilitiesUse CasesBenchmarksPapersGlossary
ModelsCapabilitiesUse CasesBenchmarksPapersGlossary
AboutPrivacyTermsRSS

ThinkLLM

Spot an error in our data? Let us know.

Papers

Recent AI research papers with accessible summaries. Updated daily from arXiv, summarized for developers who don't read papers regularly.

1492 papers20 this month12 topics
AllEvaluation 42Training 39Agents 31Reasoning 27Efficiency 25Safety 18Multimodal 17Applications 17Alignment 11Data 11Architecture 8scaling 6

Jul 6 – Jul 12(1)

Weak-to-Strong Generalization via Direct On-Policy Distillation

Jul 6, 2026

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.

trainingefficiencyreasoning

Jun 29 – Jul 5(24)

Program-as-Weights: A Programming Paradigm for Fuzzy Functions

Jul 2, 2026

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.

efficiencytrainingapplications

Online Safety Monitoring for LLMs

Jul 2, 2026

Mona Schirmer, Metod Jazbec, Alexander Timans et al.

Simple threshold-based monitoring with statistical risk control can effectively catch unsafe LLM outputs in production without requiring complex sequential testing methods.

This paper presents a real-time safety monitoring system for LLMs that uses a verifier model to detect unsafe outputs at deployment time. The approach calibrates decision thresholds using risk control methods and proves competitive with more complex alternatives on reasoning and adversarial datasets.

Jun 22 – Jun 28(16)

Parameter Efficient Hybrid Transformer (PEHT) for Network Traffic Prediction via Dynamic Urban Congestion Integration

Jun 26, 2026

Abdolazim Rezaei, Mehdi Sookhak, Mahboobeh Haghparast

By combining parameter-efficient fine-tuning (LoRA) with multimodal fusion of urban context, you can build accurate traffic prediction models that use fewer trainable parameters without sacrificing performance.

This paper presents PEHT, a traffic prediction model that combines Transformers with urban mobility data to forecast cellular network demand. It uses LoRA to reduce parameters while a multimodal fusion strategy integrates congestion and mobility information, achieving better accuracy than existing methods on real telecom data.

efficiencymultimodalapplications

Learning Topology-Aware Representations via Test-Time Adaptation for Anomaly Segmentation

Jun 26, 2026

Ali Zia, Usman Ali, Abdul Rehman et al.

Using topological features (shape and connectivity patterns) during test-time adaptation significantly improves anomaly segmentation by preserving structural coherence that pixel-level methods miss, achieving 15% F1 improvement on standard benchmarks.

This paper introduces TopoTTA, a test-time adaptation framework for anomaly segmentation that uses topological data analysis (persistent homology) to preserve structural consistency in defect detection.

Jun 15 – Jun 21(22)

Toward Calibrated Mixture-of-Experts Under Distribution Shift

Jun 18, 2026

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.

trainingevaluationefficiency

Multi-Task Bayesian In-Context Learning

Jun 18, 2026

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.

Jun 8 – Jun 14(33)

Persona-Pruner: Sculpting Lightweight Models for Role-Playing

Jun 12, 2026

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.

efficiencytrainingapplications

AdaSR: Adaptive Streaming Reasoning with Hierarchical Relative Policy Optimization

Jun 12, 2026

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.

Jun 1 – Jun 7(4)

Your UnEmbedding Matrix is Secretly a Feature Lens for Text Embeddings

Jun 5, 2026

Songhao Wu, Zhongxin Chen, Yuxuan Liu et al.

LLM embeddings can be significantly improved by filtering out a specific subspace encoded in the unembedding matrix that captures frequent tokens—this also enables dimensionality reduction without quality loss.

This paper reveals that LLM embeddings are dominated by frequent but meaningless tokens, which hurts their quality for text search tasks. The authors propose EmbedFilter, a simple linear transformation that removes this noise by filtering out the subspace where the model's unembedding matrix writes high-frequency tokens.

efficiencyevaluation

Sparse Subspace-to-Expert Sharing for Task-Agnostic Continual Learning

Jun 5, 2026

Fatema Siddika, Md Anwar Hossen, Tanwi Mallick et al.

By separating task-specific experts from shared experts with adaptive routing, SETA solves catastrophic forgetting in continual learning without sacrificing performance on new tasks—useful for deploying LLMs that need to learn from multiple domains over time.

SETA is a continual learning framework that prevents LLMs from forgetting old knowledge while learning new tasks by splitting model parameters into task-specific and shared expert modules. Instead of all tasks competing for the same weights, the method uses sparse subspace decomposition to isolate what's unique to each task while preserving shared capabilities across tasks.

safetyevaluationefficiency

Beyond Adam: SOAP and Muon for Faster, Label-Efficient Training of Machine Learning Interatomic Potentials

Jul 2, 2026

Gil Harari, Yoel Zimmermann, Ola Tangen Kulseng et al.

For scientists training ML models of molecular systems, switching from Adam to SOAP or SOAP-Muon optimizers can improve both training speed and final model accuracy, with bigger gains when you have less labeled data.

This paper compares advanced optimizers (SOAP, Muon, SOAP-Muon) against Adam for training machine learning interatomic potentials—AI models that simulate molecular behavior. The researchers find these newer optimizers converge faster and achieve better accuracy, especially when training data is limited, suggesting optimizer choice significantly impacts MLIP performance.

trainingefficiency

Combating Textual Noise and Redundancy: Entropy-Aware Dense Visual Token Pruning

Jul 2, 2026

Xuehui Wang, Xuankun Yang, Wei Shen

When pruning visual tokens in VLMs, filtering textual noise with entropy and selecting tokens as a structured optimization problem (not just picking top-K) preserves fine-grained details better while reducing computation.

This paper tackles the problem of compressing image tokens in vision-language models (VLMs) while preserving important visual details. The authors identify that existing pruning methods fail because textual noise corrupts the scoring process and selected tokens become fragmented.

efficiencymultimodalevaluation

Learning to Move Before Learning to Do: Task-Agnostic pretraining for VLAs

Jul 2, 2026

Junhao Shi, Siyin Wang, Xiaopeng Yu et al.

Separating motor skill learning from language grounding dramatically reduces the labeled data needed for robot learning—TAP matches models trained on 1M+ expert trajectories while using far less labeled data and shows better robustness to real-world perturbations.

This paper proposes Task-Agnostic Pretraining (TAP), a two-stage approach for training Vision-Language-Action robots that separates learning how to move (from unlabeled robot interactions) from learning what to do (from minimal labeled data).

trainingefficiencymultimodal

OrbitQuant: Data-Agnostic Quantization for Image and Video Diffusion Transformers

Jul 2, 2026

Donghyun Lee, Jitesh Chavan, Duy Nguyen et al.

By rotating activations into a normalized basis before quantization, OrbitQuant eliminates the need to recalibrate for different inputs, timesteps, or models—enabling practical low-bit quantization of diffusion transformers without per-checkpoint tuning.

OrbitQuant is a quantization method for diffusion transformers that works without needing to recalibrate for different inputs or models. It uses a mathematical rotation technique to normalize activations so they stay consistent across different timesteps and prompts, allowing a single quantization scheme to work everywhere.

efficiency

Neuron-Aware Data Selection for Annotation-Free LLM Self-Distillation

Jul 2, 2026

Zhuowei Chen, Xiang Lorraine Li

By analyzing which neurons activate during model predictions, you can automatically select better training data and improve self-supervised learning without any human annotations—useful when expert labels are expensive or unavailable.

This paper proposes Neuron-OPSD, a method for improving large language models without human labels by using the model's internal neuron activations to select which training examples to learn from and how to construct better teacher models. The approach trains the model on its own predictions, achieving better performance on specialized tasks while maintaining general knowledge.

trainingefficiencydata

Understanding the Robustness of Distributed Self-Supervised Learning Frameworks Against Non-IID Data

Jul 2, 2026

Xuanyu Chen, Nan Yang, Shuai Wang et al.

When training on decentralized, non-uniform data, use Masked Image Modeling instead of Contrastive Learning—it's theoretically more robust. Better network connectivity always improves robustness, so federated learning is a viable alternative to fully decentralized systems.

This paper analyzes how distributed self-supervised learning systems handle non-uniform data across devices. The researchers prove that Masked Image Modeling is more robust to data heterogeneity than Contrastive Learning, and that federated learning performs as well as fully decentralized approaches. They introduce MAR loss, a practical improvement that aligns local and global representations.

trainingefficiencydata

Optimal Stabilizer Testing and Learning with Limited Quantum Memory

Jul 2, 2026

Srinivasan Arunachalam, Louis Schatzki

Coherent quantum memory is the critical resource that enables efficient stabilizer state testing; without sufficient memory, testing becomes as hard as learning, requiring linear in n copies instead of a constant number.

This paper studies how to test and learn quantum stabilizer states when algorithms can only keep a limited number of qubits in quantum memory between measurements.

evaluationefficiency

WorldSample: Closed-loop Real-robot RL with World Modelling

Jul 2, 2026

Yuquan Xue, Le Xu, Zeyi Liu et al.

Using a world model trained on real robot data to generate synthetic transitions—combined with careful sample selection—lets robots learn manipulation tasks with 59% fewer real interactions while improving success rates by 28%.

WorldSample combines real robot interactions with a world model to generate synthetic training data for reinforcement learning. By closing a loop between physical rollouts, synthetic data generation, and policy improvement, it reduces the number of costly real-world interactions needed while maintaining high-quality learning.

trainingefficiencyagents

QFedAgent: Quantum-Enhanced Personalized Federated Learning for Multi-Agent Activity Recognition

Jul 2, 2026

Quoc Bao Phan, Tuy Tan Nguyen

Quantum circuits can replace classical fusion layers in federated learning with 72 parameters instead of 33K, making multi-agent activity recognition more practical for resource-constrained robotic systems.

This paper presents QFedAgent, a federated learning system for activity recognition across multiple robotic agents. It uses quantum circuits to fuse sensor data (accelerometer and gyroscope) more efficiently than classical neural networks, reducing parameters by 10x while maintaining accuracy on distributed, non-uniform data.

multimodalefficiency

Neuron-Aware Active Few-Shot Learning for LLMs

Jul 2, 2026

Zhuowei Chen, Liwei Chen, Christian Schunn et al.

Using internal neuron activation patterns to select few-shot examples is more effective than traditional output-based signals, helping identify what the model actually struggles with rather than just guessing from its outputs.

This paper proposes NeuFS, a method for selecting the most useful examples to annotate when adapting large language models to specialized tasks.

trainingefficiencyevaluation

Fast Multi-dimensional Refusal Subspaces via RFM-AGOP

Jul 2, 2026

Thomas Winninger

RFM-AGOP enables rapid identification of multi-dimensional safety subspaces in LLMs, offering a computationally efficient alternative to existing methods that could scale safety monitoring across larger models.

This paper presents a fast method for identifying multi-dimensional refusal subspaces in large language models using an adapted Recursive Feature Machine (RFM) algorithm.

safetyefficiency

WattGPU: Predicting Inference Power and Latency on Unseen GPUs and LLMs

Jul 2, 2026

Mauricio Fadel Argerich, Jonathan Fürst, Marta Patiño-Martínez

You can now predict LLM inference efficiency on GPUs you've never tested by combining public model specs with GPU specifications—no profiling needed, and it works 4x better than physics-based estimates.

WattGPU predicts GPU power consumption and inference latency for large language models without requiring hardware profiling. Using only public LLM metadata and GPU specs, it generalizes to unseen hardware combinations, achieving 3-4x better accuracy than traditional baselines and helping operators choose efficient GPU-LLM pairings.

efficiencyevaluationscaling

VisionAId: An Offline-First Multimodal Android Assistant for People with Visual Impairment, Featuring Personalized Object Retrieval

Jul 2, 2026

Cristian-Gabriel Florea, Stelian Spînu

By running six specialized deep learning models locally on a smartphone with INT8 quantization, VisionAId achieves real-time visual assistance for blind and low-vision users without cloud dependency, while a few-shot learning pipeline lets users teach the system to find their personal objects.

VisionAId is an Android app that helps visually impaired people navigate and interact with their environment using on-device AI models. It combines depth estimation, object detection, and facial recognition to identify obstacles, locate personal items, and recognize faces—all running locally on a smartphone without requiring cloud connectivity, with optional AI for scene descriptions.

multimodalapplicationsefficiency

Is One Layer Enough? Training A Single Transformer Layer Can Match Full-Parameter RL Training

Jul 1, 2026

Zijian Zhang, Rizhen Hu, Athanasios Glentis et al.

You don't need to update all transformer layers during RL training—focusing on middle layers can match full-model performance while dramatically reducing compute and memory costs.

This paper reveals that training just a single transformer layer during RL fine-tuning can recover most or all of the performance gains from updating the entire model. The authors find that RL improvements concentrate in middle layers, with input and output layers contributing far less, and this pattern holds consistently across different models, algorithms, and tasks.

trainingefficiencyreasoning

The State-Prediction Separation Hypothesis

Jul 1, 2026

Giovanni Monea, Nathan Godey, Kianté Brantley et al.

Splitting Transformer computation into separate streams for token prediction and state maintenance improves both training efficiency and model performance—a simple architectural change with consistent gains across scales.

This paper proposes separating two functions in Transformers: predicting the next token and maintaining state for future predictions. The authors design a dual-stream architecture and show it improves language modeling efficiency and downstream task performance by 2-3% compared to standard Transformers.

architectureefficiencytraining

TiRex-2: Generalizing TiRex to Multivariate Data and Streaming

Jul 1, 2026

Patrick Podest, Marco Pichler, Elias Bürger et al.

TiRex-2 enables efficient streaming multivariate forecasting with constant per-patch inference cost and zero-shot generalization, solving the quadratic complexity problem of Transformer-based time series models.

TiRex-2 is a time series foundation model built on xLSTM that handles multiple variables and streaming data efficiently. Unlike Transformer-based models that slow down with longer sequences, TiRex-2 uses a memory-based recurrent design that processes new data at constant cost, even when variables evolve together and some future values are known in advance.

architectureefficiencyscaling

QuasiMoTTo: Quasi-Monte Carlo Test-Time Scaling

Jul 1, 2026

Michael Y. Li, Anthony Zhan, Kanishk Gandhi et al.

You can generate better-coverage samples in parallel by using quasi-Monte Carlo instead of random sampling—achieving the same performance with significantly fewer inference calls, making scaling compute more efficient.

QuasiMoTTo improves inference efficiency by generating correlated rather than independent samples during test-time scaling. Instead of wasting compute on redundant solutions, it uses quasi-Monte Carlo sampling to spread samples across the output space more evenly, achieving the same accuracy with 25-47% fewer samples while maintaining correct marginal distributions for training.

efficiencyreasoning

FedLAB: Traceable Semantic Codebooks for Federated Multimodal Graph Foundation Learning

Jun 30, 2026

Zekai Chen, Kairui Yang, Xuaner Chen et al.

Federated multimodal graph learning can achieve strong performance while maintaining privacy and interpretability by organizing knowledge into typed semantic codebooks that explicitly track how different modalities and graph structure contribute to predictions.

FedLAB enables federated learning on multimodal graphs (graphs with text, images, and attributes) while preserving privacy by organizing knowledge into traceable semantic codebooks.

multimodaltrainingefficiency

Radial Suppression Accelerates Algorithmic Generalization: A Geometric Analysis of Delayed Generalization

Jun 30, 2026

Srijan Tiwari, Aditya Chauhan, Manjot Singh

Penalizing radial expansion of neural network activations forces learning of compact, structured representations and dramatically speeds up generalization on algorithmic tasks—a simple geometric insight with practical training benefits.

Neural networks memorize before generalizing on algorithmic tasks because hidden representations inflate radially during training. This paper proposes a geometric penalty that constrains activations to a hypersphere, forcing the network to learn structured circuits faster—accelerating grokking 6x on arithmetic tasks and halving training time for addition.

trainingreasoningefficiency

One-Step Gradient Delay is Not a Barrier for Large-Scale Asynchronous Pipeline Parallel LLM Pretraining

Jun 29, 2026

Philip Zmushko, Egor Petrov, Nursultan Abdullaev et al.

Asynchronous pipeline parallelism with one-step gradient delay is practical for large LLM training if you use the right optimizer; the performance gap with synchronous training can be closed with modern optimizers and error feedback corrections.

This paper shows that asynchronous pipeline parallelism for LLM training isn't fundamentally limited by stale gradients—the problem depends on which optimizer you use. Modern optimizers like Muon handle one-step gradient delays well, while older ones like AdamW struggle.

trainingefficiencyscaling

DOPD: Dual On-policy Distillation

Jun 29, 2026

Xinlei Yu, Gen Li, Qingyi Si et al.

When distilling from privileged teachers or students, routing supervision based on advantage gaps prevents students from learning to exploit information asymmetry instead of real capabilities—improving both LLM and vision-language model performance.

This paper addresses a key problem in on-policy distillation where adding privileged information (extra inputs) to teachers or students creates a 'privilege illusion'—students learn to mimic information asymmetry rather than transferable skills.

trainingefficiency

C$^{2}$R: Cross-sample Consistency Regularization Mitigates Feature Splitting and Absorption in Sparse Autoencoders

Jun 29, 2026

Haoran Jin, Xiting Wang, Shijie Ren et al.

When scaling sparse autoencoders for interpretability, enforcing cross-sample consistency prevents features from fragmenting or developing exceptions, making the learned representations more reliable for understanding language model behavior.

This paper identifies and fixes two major problems in Sparse Autoencoders (SAEs) used to interpret language models: feature splitting (where single concepts fragment into multiple latents) and feature absorption (where general features develop arbitrary exceptions).

efficiencytraining
evaluationefficiencyreasoning

Beyond the Hard Budget: Sparsity Regularizers for More Interpretable Top-k Sparse Autoencoders

Jun 25, 2026

Nathanaël Jacquier, Maria Vakalopoulou, Mahdi S. Hosseini

Adding soft sparsity regularizers to Top-k sparse autoencoders makes interpretable features more robust and concentrated, without the drawbacks of earlier penalty-based approaches—hard and soft sparsity work better together.

This paper improves sparse autoencoders (SAEs) for interpreting vision models by adding sparsity regularizers to the Top-k SAE architecture. The researchers introduce two penalty methods that work alongside Top-k's hard sparsity constraint to make learned features more interpretable (monosemantic) without hurting reconstruction quality.

efficiencyevaluation

Generative Models on Analog Hardware with Dynamics

Jun 25, 2026

Yu-Neng Wang, Sara Achour

Analog hardware can generate images 100x more efficiently than digital systems, but requires rethinking model design to match fixed physics-based dynamics rather than flexible neural networks.

This paper proposes Analog Interaction Systems (AIS), a framework for building generative models on analog hardware like coupled oscillators. The key innovation is bridging the gap between what neural networks can do and what analog physics naturally computes—using time-varying parameters and hidden states to improve expressivity while keeping energy costs 100x lower than digital approaches.

efficiencyarchitecturetraining

Simulation-based inference for rapid Bayesian parameter estimation in epidemiological models: a comparison with MCMC

Jun 25, 2026

Alina Bazarova, Johann Fredrik Jadebeck, Henrik Zunker et al.

Neural simulation-based inference can replace slow MCMC for fitting complex disease models, running 15-120x faster on GPUs while producing nearly identical results—enabling real-time outbreak analysis.

This paper compares simulation-based inference (SBI) with traditional MCMC methods for fitting epidemiological models to COVID-19 data. SBI uses neural networks to learn the relationship between model parameters and data, enabling much faster Bayesian inference—achieving 15-120x speedups while maintaining accuracy comparable to MCMC.

trainingefficiencyevaluation

How Good Can Linear Models Be for Time-Series Forecasting?

Jun 25, 2026

Lang Huang, Jinglue Xu, Luke Darlow

Before building bigger models, optimize your data preprocessing: context length, normalization strategy, and regularization can close most of the accuracy gap at a fraction of the computational cost.

This paper shows that simple linear models (Ridge regression) can match or beat complex deep learning architectures for time-series forecasting by carefully tuning preprocessing—context length, normalization, and regularization—rather than scaling model size.

efficiencyevaluationdata

Ribbon: Scalable Approximation and Robust Uncertainty Quantification

Jun 25, 2026

Graham Gibson, John Tipton, Kellin Rumsey et al.

You can get reliable uncertainty estimates without expensive retraining by using influence functions and linear algebra—making uncertainty quantification practical for real models.

Ribbon is a fast method for measuring how uncertain a machine-learning model's predictions are. Instead of retraining a model many times (which is expensive), it uses math tricks to estimate uncertainty from a single trained model, working well even when the model assumptions are wrong.

efficiencyevaluation

E-TTS: A New Embodied Test-Time Scaling Framework for Robotic Manipulation

Jun 25, 2026

Wen Ye, Peiyan Li, Tingyu Yuan et al.

Test-time scaling for robots works better when you combine reasoning with action planning, track historical context, and use closed-loop feedback—enabling significant performance gains without retraining.

E-TTS is a framework that improves robot manipulation by combining reasoning and action planning at test time, using historical context and feedback loops. It works with existing vision-language-action models without retraining, achieving up to 33% performance gains in simulation and 27% in real-world tasks.

reasoningagentsefficiency

The Geometry of Updates: Fisher Alignment at Vocabulary Scale

Jun 25, 2026

John Sweeney

FisherSketch enables practical source selection for LLM families by measuring task similarity through Fisher alignment signatures (16 KB per task) instead of expensive full Fisher matrices, revealing whether tasks differ in activations, errors, or their interaction.

This paper solves the problem of selecting training data sources for language models that share vocabularies but differ in tasks (like SMILES vs protein sequences).

trainingefficiencydata

CARVE: Content-Aware Recurrent with Value Efficiency for Chunk-Parallel Linear Attention

Jun 25, 2026

Sayak Dutta

Recurrent models can match Transformer efficiency by making forget gates content-aware (looking at stored memory) rather than memory-blind, enabling a mathematical solver that speeds up training while improving language understanding.

CARVE improves recurrent neural networks by fixing how they decide what to forget. Instead of gates that only see new incoming data, CARVE's gates look at what's already stored in memory before deciding what to erase. This single change fixes three architectural problems, enables faster training, and achieves better performance on language tasks while using less memory than competing approaches.

architectureefficiencytraining

Hierarchical Muon: Tiled Newton-Schulz Updates for Efficient Muon Optimization

Jun 25, 2026

Ziyuan Tang, Tianshi Xu, Yousef Saad et al.

HiMuon makes Muon optimization 10-100x faster by processing weight-matrix tiles independently rather than as full matrices, enabling practical use of this advanced optimizer on large models without sacrificing training quality.

This paper introduces Hierarchical Muon (HiMuon), a faster version of the Muon optimizer for training neural networks. Instead of updating all weights at once, HiMuon splits weight matrices into tiles and updates each tile independently, reducing computation from O(r²sK) to O(HWТK) while maintaining similar training performance.

trainingefficiency

Learning Action Priors for Cross-embodiment Robot Manipulation

Jun 24, 2026

Dong Jing, Tianqi Zhang, Jiaqi Liu et al.

Pretraining action modules on motion structure before vision-language alignment significantly improves robot learning efficiency and cross-embodiment generalization, particularly in data-scarce real-world settings.

This paper proposes a two-stage training approach for robot manipulation models that first learns motion patterns from action trajectories alone, then transfers this knowledge to vision-language-action models.

trainingmultimodalefficiency

SHERLOC: Structured Diagnostic Localization for Code Repair Agents

Jun 23, 2026

Hovhannes Tamoyan, Sean Narenthiran, Erik Arakelyan et al.

By combining structured diagnostic reasoning with efficient repository exploration, SHERLOC helps coding agents spend less time searching for bugs and more time fixing them—improving fix success rates by ~6% while cutting token usage by a quarter.

SHERLOC is a framework that helps AI coding agents quickly find and diagnose bugs in large codebases. Instead of just pointing to buggy files, it provides the reasoning and context needed to actually fix them. The system uses reasoning-focused language models with repository tools and achieves state-of-the-art results while using 36% fewer tokens than competing approaches.

agentsefficiency

Tapered Language Models

Jun 22, 2026

Reza Bayat, Ali Behrouz, Aaron Courville

You can improve language model efficiency by tapering MLP width across depth—allocating more capacity to early layers and less to later ones—a free performance gain that works across different architectures.

This paper shows that language models waste parameters by allocating them uniformly across layers. The authors propose Tapered Language Models, which gradually reduce the width of MLPs (the largest parameter-consuming components) from early to later layers. Across multiple architectures and scales, this simple change improves performance without extra cost.

architectureefficiencyscaling

Muown Implicitly Performs Angular Step-size Decay

Jun 22, 2026

Florian Hübler, Kai Lion, Antonio Orvieto et al.

Muown's effectiveness comes from implicit angular step-size decay; making this explicit in AngularMuown gives you a faster, more controllable optimizer for Transformer pre-training with decoupled learning rate scheduling for directions vs. magnitudes.

This paper analyzes how Muown, a matrix-aware optimizer for training Transformers, implicitly controls step sizes through angular (directional) updates. The authors reformulate this insight into AngularMuown, which explicitly separates angular step-size scheduling from magnitude updates, improving training speed and stability across model sizes from nanoGPT to 1.1B parameter models.

trainingefficiency

Diffusion Models Adapt to Low-Dimensional Structure Under Flexible Coefficient Choices

Jun 22, 2026

Changxiao Cai, Yuchen Jiao, Gen Li

Diffusion models robustly adapt to low-dimensional structure across a wide range of coefficient choices, meaning practitioners don't need to fine-tune these hyperparameters precisely to get dimension-independent speedups on structured data.

This paper proves that diffusion models can efficiently sample from low-dimensional data structures regardless of how you set their update coefficients, as long as they fall within a broad class. The key finding is that sampling takes only O(k/ε) iterations (where k is the intrinsic dimension), independent of the ambient dimension—showing this efficiency isn't fragile to implementation details.

efficiencyscalingtraining
trainingreasoningefficiency

Execution-State Capsules: Graph-Bound Execution-State Checkpoint and Restore for Low-Latency, Small-Batch, On-Device Physical-AI Serving

Jun 18, 2026

Liang Su

For on-device AI agents that need to pause, branch, and resume execution frequently, capsules provide sub-millisecond state snapshots and 27x speedup on long contexts—a different optimization target than high-throughput LLM serving.

This paper introduces execution-state capsules, a checkpoint-restore mechanism for LLM serving on resource-constrained devices.

efficiencyagentsarchitecture

FlowEdit: Associative Memory for Lifelong Pronunciation Adaptation in Flow-Matching TTS

Jun 18, 2026

Harshit Singh, Ayush Pratap Singh, Nityanand Mathur

You can add lifelong learning to frozen TTS models by storing pronunciation fixes in a memory network instead of updating weights—enabling fast adaptation to new proper nouns without retraining.

FlowEdit enables text-to-speech systems to learn and remember pronunciation corrections for proper nouns without retraining. It stores corrections as edits in a memory network, then retrieves and applies them at inference time, reducing pronunciation errors by 93% while keeping the original model frozen.

trainingefficiencyapplications

Marginal Advantage Accumulation for Memory-Driven Agent Self-Evolution

Jun 18, 2026

Mingyu Yang, Keye Zheng, Congchao Cheng et al.

MAA enables agents to learn which memory operations consistently help by accumulating cross-batch evidence, making agent self-improvement more efficient and reliable without requiring online training.

This paper addresses a problem in training AI agents: when the same memory operation gets conflicting feedback across different training batches, it's hard to know which operations actually work. MAA solves this by accumulating evidence for each operation across batches and filtering out unreliable ones, improving agent learning while using 75% fewer tokens during training.

trainingagentsefficiency

UltraQuant: 4-bit KV Caching for Context-Heavy Agents

Jun 18, 2026

Inesh Chakrabarti, David Limpus, Aditi Ghai Rana et al.

4-bit KV cache compression can dramatically speed up multi-turn agent interactions by reducing memory pressure, but requires careful design choices like asymmetric K/V treatment and hardware-specific optimizations to work reliably in production.

This paper optimizes key-value cache memory for AI agents that maintain long conversation histories by compressing KV data to 4-bit precision. The authors develop practical techniques including asymmetric compression, specialized rotations, and GPU-optimized kernels that achieve 3.47x faster response times in later conversation turns while maintaining output quality.

efficiencyagents

Repurposing a Speech Classifier for Guided Diffusion-Based Speech Generation

Jun 18, 2026

Rostislav Makarov, Timo Gerkmann

You can reuse existing discriminative models (classifiers) for generative tasks by freezing them and training lightweight adapters, cutting the model footprint in half while keeping performance—useful when you already have trained classifiers lying around.

This paper shows how to repurpose a pre-trained speech classifier for generating speech by attaching a lightweight denoising network on top of it. Instead of training separate classifier and diffusion models, the authors freeze the classifier and train only a small adapter to guide generation, reducing memory and computation while maintaining high speech quality.

efficiencyarchitecturetraining

Evolutionary Two-Stage Hyperparameter Optimization Strategies for Physics-Informed Neural Networks

Jun 18, 2026

Fedor Buzaev, Dmitry Efremenko, Egor Bugaev et al.

Evolutionary algorithms can efficiently find good hyperparameter configurations for PINNs by combining fast screening of many candidates with full training of the best ones, avoiding the manual tuning and convergence issues that plague standard approaches.

This paper tackles the challenge of tuning Physics-Informed Neural Networks (PINNs) by proposing a two-stage evolutionary algorithm approach. Instead of manually searching for good hyperparameters, the method first quickly screens many configurations using short training runs, then fully trains the most promising ones.

trainingefficiency

HEPTv2: End-to-End Efficient Point Transformer for Charged Particle Reconstruction

Jun 18, 2026

Siqi Miao, Shitij Govil, Jack P. Rodgers et al.

End-to-end transformers can match or beat graph neural networks on complex physics tasks while being dramatically faster and more memory-efficient—showing that careful architecture design beats multi-stage pipelines.

HEPTv2 is an end-to-end transformer model that reconstructs particle tracks from detector measurements at the Large Hadron Collider. It uses locality-sensitive hashing and sectorized decoding to achieve 98.6% accuracy while running 7-50x faster than competing approaches, making it practical for real-time physics experiments.

architectureefficiencyreasoning

On the Redundancy of Timestep Embeddings in Diffusion Models

Jun 18, 2026

José A. Chávez

Timestep embeddings in diffusion models may be redundant—models can achieve competitive image quality without them by inferring noise scales directly from input corruption patterns.

This paper questions whether diffusion models actually need explicit timestep embeddings for denoising. The authors show theoretically and empirically that removing timestep information entirely doesn't significantly hurt performance on image generation tasks, and models can implicitly learn noise levels from corrupted inputs alone.

architectureefficiencytraining

UBP2: Uncertainty-Balanced Preference Planning for Efficient Preference-based Reinforcement Learning

Jun 17, 2026

Mohamed Nabail, Leo Cheng, Jingmin Wang et al.

By jointly reasoning over uncertainty in rewards, dynamics, and values during planning, preference-based RL can achieve sample efficiency comparable to model-based methods while avoiding explicit reward design.

This paper presents UBP2, a method that learns reward models from human preference comparisons while actively exploring the environment. Unlike passive approaches, UBP2 uses ensemble models to balance learning about rewards, environment dynamics, and value functions, enabling efficient sample use during early training stages.

trainingefficiencyreasoning

Optimal scenario design for climate emulation

Jun 17, 2026

Christopher B. Womack, Shahine Bouabid, Andrei Sokolov et al.

For climate emulators, optimizing training data diversity through iterative refinement produces better generalization than simply using more standard scenarios, even with smaller datasets.

This paper shows that training data quality matters more than quantity for climate AI models. Instead of using many standard climate scenarios, researchers created a method to design fewer but more diverse training scenarios that teach AI models to better predict climate behavior across different conditions—like distinguishing how greenhouse gases versus aerosols affect the climate.

trainingdataefficiency

Variable-Width Transformers

Jun 16, 2026

Zhaofeng Wu, Oliver Sieberling, Shawn Tan et al.

Not all transformer layers need the same width—narrowing middle layers while keeping early and late layers wide improves efficiency and performance, suggesting different layers have different computational roles.

This paper proposes Variable-Width Transformers, which use wider layers at the beginning and end of the network while narrowing middle layers. This non-uniform design outperforms standard transformers of the same size on language modeling, while reducing computation by 22% and memory usage by 15%.

architectureefficiencyscaling

Adaptive Volumetric Mechanical Property Fields Invariant to Resolution

Jun 16, 2026

Rishit Dagli, Donglai Xiang, Vismay Modi et al.

Sparse adaptive voxel structures with transformers can predict volumetric material properties 16× more efficiently than fixed-grid approaches, enabling high-fidelity physics simulation of complex 3D objects.

AdaVoMP predicts physical material properties (stiffness, elasticity, density) for 3D objects at high resolution. Instead of using fixed voxel grids, it uses a sparse adaptive structure with a transformer model, achieving 16× higher resolution than previous methods while using less computation. This makes 3D assets ready for realistic physics simulations.

architectureefficiency

Zone of Proximal Policy Optimization: Teacher in Prompts, Not Gradients

Jun 16, 2026

Byung-Kwan Lee, Ximing Lu, Shizhe Diao et al.

Teaching small models through prompt-based learning (showing them correct vs incorrect answers to discriminate) works better than traditional distillation or standard RL, especially for models under 1B parameters.

This paper introduces ZPPO, a training method that improves small AI models by learning from larger teacher models without copying their exact outputs. Instead of forcing students to imitate teacher predictions, ZPPO keeps the teacher in the prompt—creating special question formats that help students learn to discriminate correct from incorrect answers and identify their own failure patterns.

trainingefficiencyalignment

Rethinking Dataset Distillation for Classification: Do Distilled Sets Outperform Coresets?

Jun 16, 2026

Trisha Mittal, Akshay Mehra, Joshua Kimball

Dataset distillation doesn't consistently outperform simpler coreset selection methods on real-world tasks, and coresets are often more computationally efficient for creating compact training datasets.

This paper challenges the effectiveness of dataset distillation by comparing it against simpler coreset selection methods across large-scale benchmarks.

dataevaluationefficiency

Looped World Models

Jun 16, 2026

Hongyuan Adam Lu, Z. L. Victor Wei, Qun Zhang et al.

Iterative refinement of latent states through looped computation offers a new scaling axis for world models—you can trade off depth for parameter efficiency without sacrificing simulation quality.

This paper introduces Looped World Models, which use parameter-shared transformer blocks that iteratively refine latent states instead of stacking deep layers. This approach achieves 100x parameter efficiency while maintaining faithful long-horizon simulation, and introduces adaptive computation that automatically adjusts depth based on prediction complexity.

architectureefficiencyscaling

Fixed-Point Reasoners: Stable and Adaptive Deep Looped Transformers

Jun 16, 2026

Sajad Movahedi, Vera Milovanović, Shlomo Libo Feigin et al.

Fixed-point convergence provides a natural halting mechanism for iterative reasoning models, letting them use fewer steps on easy problems and more on hard ones—without explicit stopping signals.

This paper introduces FPRM, a looped Transformer that solves reasoning tasks by repeatedly applying the same layer until reaching a fixed point, automatically stopping when the model's internal state stabilizes. The approach addresses signal propagation problems in deep networks and adapts computation based on task difficulty.

reasoningarchitectureefficiency

Learning from the Self-future: On-policy Self-distillation for dLLMs

Jun 16, 2026

Yifu Luo, Zeyu Chen, Haoyu Wang et al.

Self-distillation can be adapted for non-autoregressive language models by learning from the model's own future outputs rather than privileged prefixes, achieving better results with 10x fewer training steps than reinforcement learning baselines.

This paper introduces d-OPSD, a self-distillation method designed specifically for diffusion language models (dLLMs) that generate text in arbitrary order rather than left-to-right.

trainingefficiency

KVEraser: Learning to Steer KV Cache for Efficient Localized Context Erasing

Jun 15, 2026

Mufei Li, Shikun Liu, Dongqi Fu et al.

You can efficiently erase stale or harmful information from an LLM's KV cache by learning to replace cached states rather than recomputing—enabling practical context correction in long-context applications without massive latency penalties.

KVEraser is a learned method for efficiently removing unwanted information from an LLM's cached key-value states after processing. Instead of recomputing all tokens after a deleted span (which is slow), it replaces only the cached states of the erased text with learned steering states, achieving near-full-recomputation quality with 3-4x speedup on long-context tasks.

efficiencytrainingreasoning

HAMON: Passive Optical Sequence Mixing for Long-Horizon Forecasting

Jun 15, 2026

Alper Yıldırım

Forecasting can be performed by passive optical diffraction rather than learned digital networks, achieving competitive or better results while suggesting the forecasting task itself may be fundamentally simpler than transformer-based approaches assume.

HAMON replaces learned digital layers in time-series forecasting with a passive optical system using diffraction and phase masks. Historical data is encoded onto an optical aperture, and future predictions emerge directly from light propagating through trainable phase masks—no digital sequence mixing needed.

architectureefficiencyevaluation

TokenPilot: Cache-Efficient Context Management for LLM Agents

Jun 15, 2026

Buqiang Xu, Zirui Xue, Dianmou Chen et al.

Effective context pruning for agents requires preserving prompt cache structure—TokenPilot achieves 56-87% cost reduction by removing content conservatively rather than aggressively rewriting prompts.

TokenPilot manages context in long-running AI agents by smartly removing unnecessary information while keeping the prompt cache valid. It uses two strategies: cleaning up noise when information enters the system, and removing old context only when it's no longer useful. This cuts inference costs by 56-87% while maintaining performance.

efficiencyagentsreasoning
reasoningtrainingefficiency

HumP-KD: A Hybrid Uncertainty-Aware Multi-Stage Progressive Knowledge Distillation Framework for Efficient Fire Classification

Jun 12, 2026

Mohammed Arif Mainuddin, Najifa Tabassum, Omar Ibne Shahid et al.

You can compress state-of-the-art vision transformers into tiny, CPU-deployable models for real-time fire detection without sacrificing accuracy by using uncertainty-aware, multi-stage knowledge distillation with spatial attention guidance.

HumP-KD is a knowledge distillation framework that compresses large transformer models (Swin-Tiny, ViT-Base) into a lightweight MobileViT-S student for real-time fire detection.

efficiencytrainingevaluation

Towards Direct Latent-Space Synthesis for Parallel Branches in LLM-Agent Workflows

Jun 12, 2026

Shikun Liu, Mufei Li, Dongqi Fu et al.

Direct cache-based synthesis enables LLM agents to efficiently combine parallel branches without redundant computation, making multi-agent workflows faster and more aligned with how modern systems actually work.

This paper introduces Parallel-Synthesis, a framework that lets LLM agents directly process cached outputs from multiple parallel worker branches instead of concatenating text. By working with KV caches directly, it reduces computation time by 2.5-11x while maintaining or improving performance across math, code, and reasoning tasks.

agentsefficiencyarchitecture

When to Write and When to Suppress: Route-Specialized Dual Adapters for Memory-Assisted Knowledge Editing

Jun 12, 2026

Yining Huang

The key insight is that knowledge editing isn't just about writing new information—deciding when NOT to apply edits is equally important. A routing mechanism that separates edit injection from suppression outperforms simply adding more model capacity.

This paper tackles knowledge editing—updating specific facts in language models while keeping other knowledge intact. It proposes a dual-adapter system with a router that decides when to apply edits: some prompts get an edit adapter (to learn new facts), while others get a locality adapter (to preserve original knowledge).

trainingefficiency

Influcoder: Distilling Decoders' Gradient Influence Rankings into an Encoder for Data Attribution

Jun 11, 2026

Dimitri Kachler, Damien Sileo, Pascal Denis

You can dramatically speed up identifying problematic training data by training a lightweight encoder to predict influence rankings, rather than computing expensive influence functions directly.

This paper proposes Influcoder, a method that speeds up data attribution for large language models by distilling influence function computations into a compact encoder. Instead of expensive influence calculations, it learns to quickly identify which training samples contributed to specific model outputs, enabling efficient dataset curation and quality filtering.

trainingdataefficiency

HyperTool: Beyond Step-Wise Tool Calls for Tool-Augmented Agents

Jun 11, 2026

Yaxin Du, Yifan Zhou, Yujie Ge et al.

Bundling multiple tool calls into executable code blocks dramatically improves agent performance on multi-step tasks—doubling accuracy on some benchmarks by reducing the overhead of step-by-step tool management.

HyperTool lets AI agents call multiple tools in a single code block instead of one at a time, reducing context waste and improving performance. Rather than exposing each tool call separately, agents write code that chains tools together locally, making complex workflows more efficient.

agentsreasoningefficiency

Dense Supervision, Sparse Updates: On the Sparsity and Geometry of On-Policy Distillation

Jun 11, 2026

Guo Yu, Wenlin Liu, Yulan Hu et al.

On-policy distillation produces sparse, structured parameter updates that preserve geometric properties of on-policy training despite dense supervision—meaning you can train efficient subnetworks instead of full models without losing performance.

This paper analyzes how on-policy distillation (combining student trajectories with teacher supervision) changes model parameters. The researchers found that parameter updates are sparse and concentrated in specific layers (especially feed-forward networks), yet remain geometrically structured—updates avoid principal weight directions and target near-zero weight coordinates.

trainingefficiency

SkMTEB: Slovak Massive Text Embedding Benchmark and Model Adaptation

Jun 11, 2026

Marek Šuppa, Andrej Ridzik, Daniel Hládek et al.

For low-resource languages, adapting existing multilingual embedding models through vocabulary trimming and task-specific fine-tuning can produce efficient, locally-deployable alternatives to large proprietary models without sacrificing performance.

This paper introduces SkMTEB, the first comprehensive benchmark for evaluating text embedding models on Slovak, a low-resource language.

evaluationefficiency

Beyond Uniform Tokens: Adaptive Compression for Time Series Language Models

Jun 11, 2026

Jialin Gan, Xin Qiu, Guangzhe Chen et al.

Time series and text tokens don't need equal treatment in LLMs—compressing redundant time series patterns and reducing prompt tokens at deeper layers can speed up inference 7.68× without hurting performance.

This paper shows that time series tokens and prompt tokens in language models have different information patterns, so treating them equally wastes computation. The authors develop a compression method that removes redundant frequency patterns from time series data and gradually drops prompt tokens deeper in the model, achieving up to 7.68× faster inference while maintaining or improving accuracy.

efficiencytrainingevaluation

Beyond the Commitment Boundary: Probing Epiphenomenal Chain-of-Thought in Large Reasoning Models

Jun 11, 2026

Daniel Scalena, Sara Candussio, Luca Bortolussi et al.

Chain-of-thought reasoning in large models contains a sharp 'commitment boundary' where the answer solidifies—you can safely stop reasoning early and save 55% compute without losing performance.

This paper reveals that large language models often decide their final answer early in chain-of-thought reasoning, with many subsequent steps having no causal effect on the result. By measuring when models commit to an answer, researchers show this happens in a single step on average, followed by 'epiphenomenal' reasoning that doesn't change the outcome.

reasoningefficiencyevaluation

Reward Modeling for Multi-Agent Orchestration

Jun 11, 2026

King Yeung Tsang, Zihao Zhao, Vishal Venkataramani et al.

You can train effective multi-agent orchestrators without human labels by learning from the artifacts agents produce—making it practical to build and improve systems that coordinate specialized LLM agents.

This paper introduces OrchRM, a self-supervised method for training orchestrators that coordinate multiple AI agents without human feedback. Instead of expensive rollouts, it learns from intermediate results of agent executions to build a reward model that guides which agent to use when.

trainingagentsefficiency

EvTexture++: Event-Driven Texture Enhancement for Video Super-Resolution

Jun 11, 2026

Dachun Kai, Jiayao Lu, Yueyi Zhang et al.

Event cameras can significantly boost video super-resolution quality by providing high-temporal-resolution texture cues and motion information, improving detail recovery by up to 1.55 dB PSNR on texture-rich videos.

This paper introduces EvTexture++, a framework that uses event camera data to improve video super-resolution by enhancing texture details and temporal consistency. Event cameras capture high-frequency visual information that helps recover fine details in upscaled videos and reduce flickering artifacts caused by motion.

multimodalefficiencyarchitecture

A2D2: Fine-Tuning Any-Length Discrete Diffusion for Adaptive Decoding

Jun 11, 2026

Sophia Tang, Yuchen Zhu, Molei Tao et al.

You can now fine-tune discrete diffusion models for any-length generation with theoretical guarantees—the method optimizes both token insertion and unmasking policies together, improving reward alignment while maintaining generation flexibility.

A2D2 enables reward-guided fine-tuning of discrete diffusion models that generate sequences of any length. The method jointly optimizes how tokens are inserted and unmasked during generation, plus the inference schedule, using a theoretically grounded approach that converges to reward-optimized outputs without needing target examples.

trainingreasoningefficiency

Edit the Bits, Diff the Codes: Bitwise Residual Editing for Visual Autoregressive Models

Jun 11, 2026

Shengqiang Zhang, Ruotong Liao, Volker Tresp et al.

By working with a VAR model's native bitwise predictions and residual code composition instead of token streams, you can edit images more precisely while preserving backgrounds—no retraining needed.

BitResEdit is a training-free editor for visual autoregressive image generators that uses two techniques: BitEdit guides bit-level predictions toward text descriptions, while ResEdit applies edits through the model's native residual code structure. This approach preserves unedited regions exactly while making precise, localized changes to match text prompts.

multimodalefficiencyapplications

Uncertainty-Aware Hybrid Retrieval for Long-Document RAG

Jun 11, 2026

Hoin Jung, Xiaoqian Wang

You can improve RAG retrieval without retraining by combining multiple chunk sizes and weighing them based on uncertainty—fine-grained chunks find relevant content, larger chunks provide context.

This paper proposes UMG-RAG, a training-free retrieval system that combines dense and sparse retrievers across multiple chunk sizes to improve RAG quality. Instead of choosing one chunk size, it intelligently fuses results from different granularities based on confidence estimates, and optionally returns larger parent chunks for better context while using fine-grained chunks for precise retrieval.

efficiencyreasoning

Reroute, Don't Remove: Recoverable Visual Token Routing for Vision-Language Models

Jun 10, 2026

Cheng-Yu Yang, Shao-Yuan Lo, Yu-Lun Liu

Visual token importance changes as the model processes information deeper—tokens deemed unimportant early on may matter later, so recoverable routing outperforms permanent removal for vision-language tasks.

Vision-language models use thousands of visual tokens, making inference slow. Instead of permanently removing low-scoring tokens, this paper proposes Reroute: tokens can be temporarily skipped and re-evaluated later when they become important. The method works with existing token-reduction techniques and improves performance on grounding tasks without extra computational cost.

efficiencymultimodalarchitecture

Context-Driven Incremental Compression for Multi-Turn Dialogue Generation

Jun 10, 2026

Yeongseo Jung, Jaehyeok Kim, Eunseo Jung et al.

Instead of truncating or summarizing conversations (which loses information), C-DIC stores revisable compression states organized by conversation threads, allowing the model to update and share information across turns efficiently without degrading dialogue quality.

This paper tackles the problem of long conversations becoming inefficient and error-prone in dialogue systems. The authors propose C-DIC, a method that compresses conversation history by organizing it into separate memory threads that can be updated and revised at each turn, rather than keeping the full history.

efficiencytrainingarchitecture

DIRECT: When and Where Should You Allocate Test-Time Compute in Embodied Planners?

Jun 10, 2026

Jadelynn Dao, Milan Ganai, Yasmina Abukhadra et al.

Test-time compute scaling helps embodied AI, but different scaling strategies (reasoning depth, model size, memory) have different costs and benefits—smart routing based on scene context can match stronger models at 65% lower latency.

This paper introduces DIRECT, a routing framework that intelligently allocates test-time compute for vision-language models used as robot planners. Instead of uniformly scaling compute (which increases latency and cost), DIRECT analyzes scene context to decide when to use chain-of-thought reasoning, larger models, or extended memory—achieving better performance per dollar spent on real robots.

agentsefficiencyreasoning

Doc-to-Atom: Learning to Compile and Compose Memory Atoms

Jun 10, 2026

Xingjian Diao, Wenbo Li, Yashas Malur Saidutta et al.

Breaking documents into composable micro-adapters instead of monolithic ones improves both efficiency and accuracy for long-document reasoning in LLMs.

This paper introduces Doc-to-Atom, a system that breaks down documents into small, typed knowledge units called 'atoms' and converts each into a tiny adapter for language models. Instead of creating one large adapter per document, the system selectively combines only relevant atoms based on the query, reducing memory usage and improving performance on question-answering tasks.

efficiencytraining

Redesign Mixture-of-Experts Routers with Manifold Power Iteration

Jun 10, 2026

Songhao Wu, Ang Lv, Ruobing Xie et al.

Aligning router weights with the principal singular directions of experts improves MoE routing efficiency—a simple mathematical principle that scales from 1B to 11B parameter models.

This paper improves Mixture-of-Experts (MoE) models by redesigning how routers select which experts to use. The authors propose aligning each router with the most important direction of its expert using a mathematical technique called Manifold Power Iteration, which helps routers better match tokens to appropriate experts.

architecturescalingefficiency

Illumination-Robust Camera-Based Heart-Rate Estimation for Physiological Sensing in Robots

Jun 10, 2026

Zhi Wei Xu, Torbjörn E. M. Nordling

Robots can now reliably measure human heart rate from RGB cameras in varying lighting by combining spatial-temporal transformers with illumination-aware training, enabling non-contact physiological monitoring for human-robot interaction.

This paper develops a camera-based system for robots to measure human heart rate from video, even when lighting conditions change dramatically.

multimodalapplicationsefficiency

Breaking Entropy Bounds: Accelerating RL Training via MTP with Rejection Sampling

Jun 10, 2026

Yucheng Li, Huiqiang Jiang, Yang Xu et al.

Multi-token prediction with rejection sampling can accelerate RL training by 1.8x, but requires a specialized loss function (TV loss) and pre-training strategy to maintain high acceptance rates as model entropy increases during RL.

This paper tackles a major bottleneck in RL training for large language models: slow rollout generation. The authors show that Multi-Token Prediction (MTP) with rejection sampling can dramatically speed up inference by predicting multiple tokens at once, but acceptance rates drop during RL training due to increasing model entropy.

trainingefficiencyreasoning

EEVEE: Towards Test-time Prompt Learning in the Real World for Self-Improving Agents

Jun 9, 2026

Weixian Xu, Shilong Liu, Mengdi Wang

Test-time prompt learning now works in real-world multi-dataset scenarios through intelligent task routing and co-evolution—enabling agents to adapt their behavior to diverse, heterogeneous data streams without retraining.

EEVEE is a framework that lets AI agents improve themselves during real-world use by learning better prompts on-the-fly. Unlike existing methods that work on single datasets, EEVEE handles messy real-world data from multiple sources by routing different types of tasks to specialized prompts, then co-evolving both the router and prompts together.

trainingagentsefficiency

Piper: A Programmable Distributed Training System

Jun 9, 2026

Megan Frisella, Shubham Tiwari, Andy Ruan et al.

By decoupling strategy declaration from runtime execution through an intermediate representation, Piper lets researchers quickly prototype and compose different parallelism strategies without reimplementing the entire distributed training system.

Piper is a distributed training system that separates how you describe a training strategy from how it actually runs. Instead of manually coding each parallelism approach (like data parallelism or pipeline parallelism), users annotate their model and declare scheduling rules.

trainingefficiencyscaling

ReasonAlloc: Hierarchical Decoding-Time KV Cache Budget Allocation for Reasoning Models

Jun 9, 2026

Wenhao Liu, Hao Shi, Yunhe Li et al.

For reasoning models with long chain-of-thought outputs, you can reduce memory requirements by 50-75% while maintaining accuracy by using hierarchical KV cache allocation instead of uniform budget distribution.

ReasonAlloc optimizes memory usage during AI reasoning by intelligently allocating the KV cache budget across different layers and attention heads during decoding. Instead of treating all layers equally, it identifies which layers need more memory at different reasoning steps and dynamically reallocates resources to the most important attention heads in real-time.

efficiencyreasoning

Itô maps for any-step SDEs

Jun 9, 2026

Zhengkai Pan, Peter Potaptchik, Wenxi Yao et al.

Itô maps enable fast, differentiable sampling from stochastic differential equations at inference time, making it practical to do posterior sampling and stochastic control without expensive iterative procedures.

This paper introduces Itô maps, a new way to learn stochastic flow maps that can predict future states from any intermediate point in a stochastic process. Unlike recent one-step generative models that work with deterministic flows, Itô maps handle randomness (Brownian motion) directly, enabling efficient sampling and control in a single forward pass.

trainingefficiencyreasoning

Data assimilation for subsurface flow using latent diffusion model parameterization: performance of ensemble-Kalman and Monte Carlo techniques

Jun 9, 2026

Guido Di Federico, Wenchao Teng, Louis J. Durlofsky

When using neural network-based model compression for inverse problems, traditional ensemble Kalman methods can fail due to nonlinearity—rigorous Monte Carlo sampling with surrogate models offers a more reliable alternative.

This paper tackles a key challenge in subsurface modeling: updating geological parameters to match well observations while keeping models realistic. The authors use latent diffusion models to compress high-dimensional geological data into a smaller space, then compare different update methods (ensemble Kalman, MCMC, SMC).

trainingefficiencyevaluation

An Agency-Transferring Model-Free Policy Enhancement Technique

Jun 8, 2026

Anton Bolychev, Georgiy Malaniya, Sinan Ibrahim et al.

You can accelerate RL training by blending a working baseline policy with a learnable policy, progressively shifting control to the learner—this keeps success rates high early on while producing a better final policy.

This paper presents a method for training RL policies more efficiently by starting with an existing suboptimal policy and gradually transferring control to a new learning policy. The approach maintains high success rates throughout training and produces a final standalone policy that outperforms the baseline, without requiring the baseline at test time.

trainingefficiencyreasoning

Rethinking the Divergence Regularization in LLM RL

Jun 8, 2026

Jiarui Yao, Xiangxin Zhou, Penghui Qi et al.

When training LLMs with RL, use smooth regularization on policy shifts instead of hard cutoffs—it gives better training stability without throwing away useful learning signals.

This paper improves how language models learn from reinforcement learning by fixing how we measure when a model's behavior has changed too much during training. Instead of abruptly cutting off gradient updates (like existing methods do), the authors propose DRPO, which smoothly reduces their impact. This keeps training more stable and efficient across different model sizes.

trainingalignmentefficiency

AHA-WAM:Asynchronous Horizon-Adaptive World-Action Modeling with Observation-Guided Context Routing

Jun 8, 2026

Jisong Cai, Long Ling, Shiwei Chu et al.

Decoupling world prediction and action execution into asynchronous temporal streams—where the world model runs slowly and the action model runs fast—improves both robot control performance and computational efficiency without requiring robot pretraining data.

This paper presents AHA-WAM, a robot control system that separates world prediction from action execution at different speeds. A slow video model learns long-term scene patterns while a fast action model executes short movements by reusing the video model's learned context, enabling responsive closed-loop control without redundant computation.

efficiency

FASE: Fast Adaptive Semantic Entropy for Code Quality

Jun 8, 2026

Shizhe Lin, Ladan Tahvildari

You can reliably detect buggy code from LLM agents using cheap embedding comparisons instead of expensive LLM verification—FASE achieves this with minimal computational overhead.

FASE is a fast method to measure code quality uncertainty in multi-agent AI systems without needing expensive LLM checks. It uses structural and semantic similarity graphs to estimate whether generated code is likely correct, running 300x faster than existing approaches while achieving better accuracy.

evaluationagentsefficiency

Data Synthesis and Parameter-Efficient Fine-Tuning for Low-Resource NMT: A Case Study on Q'eqchi' Mayan

Jun 8, 2026

Alexander Chulzhanov, Soeren Eberhardt, Arjun Mukherjee

Synthetic data can efficiently teach a model grammatical structure for low-resource languages, but semantic understanding requires authentic data—synthetic bootstrapping works best as a primer before curriculum learning with real examples.

This paper tackles machine translation for Q'eqchi' Mayan, an Indigenous language with almost no digital text. Instead of scraping the web (which violates data sovereignty), researchers created synthetic training data from dictionaries and fine-tuned a multilingual model using LoRA adapters.

dataefficiencytraining
trainingefficiencyarchitecture

Accelerated Decentralized Stochastic Gradient Descent for Strongly Convex Optimization

Jun 5, 2026

Ming Sun, Kun Yuan

For distributed machine learning without a central server, this algorithm achieves state-of-the-art communication efficiency by coupling gossip rounds with batch sizes, meaning you can train faster across networks with fewer total messages sent between nodes.

This paper presents MG-ADSGD, a decentralized learning algorithm where multiple agents optimize a shared problem by communicating only with neighbors. The algorithm combines acceleration techniques with efficient message-passing to achieve better communication efficiency than prior methods, requiring fewer total messages exchanged across the network to reach a solution.

trainingefficiencyscaling

Twelve quick tips for designing AI-driven HPC workflows

Jun 5, 2026

Jamie J. Alnasir

AI workflows on HPC systems need different optimization strategies than traditional scientific computing: focus on containerization for portability, smart job scheduling, explicit feedback mechanisms, and I/O efficiency rather than just raw compute throughput.

This guide offers twelve practical strategies for running AI workloads efficiently on HPC clusters. It addresses the unique challenges of AI workflows—which are iterative and data-driven—compared to traditional scientific computing, covering containerization, job scheduling, feedback loops, and file I/O optimization to help researchers build scalable, reproducible AI pipelines.

efficiencyapplications