Recent AI research papers with accessible summaries. Updated daily from arXiv, summarized for developers who don't read papers regularly.
Adam Fisch, Shubhendu Trivedi, Fantine Huot et al.
Use value-of-information theory to decide when to invest in expensive model quality estimates before routing—this cuts estimation costs dramatically while maintaining routing accuracy.
This paper solves the problem of efficiently routing queries to the best AI model in a system with multiple specialists. The key challenge: estimating which model will perform best costs money (slow but accurate estimators vs. fast but noisy ones).
Qian Kou, Xiaofeng Shi, Xiaosong Qiu et al.
To internalize document knowledge without retrieval, separate the training into three stages: inject documents as training data, align with QA supervision, then merge back with the base model to avoid catastrophic forgetting of general skills.
This paper tackles the problem of making LLMs answer questions about specific documents without retrieving them at inference time. The authors propose IAR, a three-stage training method that injects document knowledge, aligns the model to answer questions correctly, and recovers general abilities by merging with the base model.
Masahiro Kato, Taka Kato
You can characterize the minimal information needed to hand off an LLM task between sessions using predictive equivalence; for Gaussian regression, this gives exact finite-dimensional representations with quantified memory-accuracy tradeoffs.
When an LLM task continues in a new session (due to context limits, restarts, or agent handoff), the application must decide what information to pass along. This paper develops a theory of 'handover'—transferring task-relevant in-context learning state between sessions—showing what information is sufficient to preserve performance and how much memory it requires.
Hanfeng Lu, Tianyu Feng, Suyi Li et al.
By overlapping independent computation phases and sharing GPU memory intelligently, you can train vision-language models 1.2–2.2× faster without needing more hardware or changing your RL algorithm.
Rollplex is a GPU runtime that speeds up vision-language model training by overlapping different computational phases.
Gyuwan Kim, Cheoneum Park, Tao Yang
By breaking retrieved documents into semantic nuggets and reusing their pre-computed KV caches, you can cut inference costs while improving RAG accuracy—achieving 5.3% better answers under strict latency constraints.
CoinRAG optimizes retrieval-augmented generation by reusing fine-grained KV cache "nuggets" instead of processing entire chunks, reducing computational cost while improving answer quality. It uses two-stage retrieval to identify semantically relevant information units and assembles their cached representations efficiently.
MY Pitsane, Hope Mogale
For developers building with coding agents: smart context eviction can cut token costs by a quarter while maintaining byte-exact reversibility, making long-running agentic coding tasks more affordable.
Blast Radius is a memory management system for AI coding agents that predicts how much context a prompt needs and intelligently removes unused code/context to save tokens. It archives dead code reversibly and identifies repeated patterns, reducing token use by 17-26% while keeping everything recoverable.
Zhenyu Zhang, Zhichao Cao
Stateful tokenization can cut tokenization overhead from 64% to near-zero for agent workloads by reusing cached tokens and only re-tokenizing small appended text, achieving 437x speedup over standard methods.
TokTier is a stateful tokenization service that eliminates redundant re-tokenization in LLM serving. Instead of re-tokenizing entire requests on each call, it intelligently reuses cached tokenization from previous calls by only re-tokenizing small windows around new appended text. For new sessions, it uses GPU acceleration to tokenize efficiently.
Maria Smirnova, Alexey Kravatskiy
Extreme compression (1 bit) of matrix-aware optimizers like Muon is possible but creates a theory-practice gap: the provably convergent variants underperform the theoretically divergent sign-after-LMO approach on real tasks like CIFAR-10 and language model training.
This paper studies SignMuon, which compresses the Muon optimizer to one bit per parameter by taking the sign of updates. While it outperforms SignSGD in practice, the authors prove it can diverge even on linear functions. They show error feedback—the standard fix for biased compression—fails when applied to Muon's output but works when applied to gradients, achieving convergence guarantees.
Athanasios Papastathopoulos-Katsaros, Steven T. Lee, Lin Yao et al.
For EEG analysis in low-data settings, learning interpretable waveform dictionaries can match deep learning performance while using far fewer parameters and providing clinically meaningful explanations.
Bag-of-waves is an interpretable EEG analysis method that learns a small dictionary of recurring waveform patterns (atoms) without labels, then represents brain signals as sequences of these patterns.
Jianghui Wang, Silong Yong, Francesco Orabona et al.
You can make LoRA fine-tuning significantly faster and cheaper by only updating weight matrices with high condition numbers—the ones that actually need rebalancing—rather than updating all matrices uniformly.
This paper shows that not all LoRA weight matrices contribute equally to fine-tuning, and proposes κ-LoRA, which selectively updates only the matrices with high condition numbers (those with imbalanced singular values). By updating just the top 50% of matrices ranked by condition number, the method cuts fine-tuning time by 16% while maintaining accuracy and reducing memory use by 4.5%.