ArtificialIntelligence.io

The Signal

Everything that matters in AI, with our take.

Updated through the day. Every headline links straight to the source. The two lines underneath are ours.

arXiv cs.CLPaper

VikingRAG: Accurate and Token-efficient Retrieval-augmented Generation over Structured Documents

The token-efficiency angle is concrete and relevant: RAG systems routinely spend 60-80% of tokens on structural context, and your costs scale with query volume. VikingRAG's directory-aware design and experience-edge reuse show real cost reductions. If you're operating a production RAG pipeline on structured documents, this is worth modeling against your actual token spend.

arXiv cs.CLPaper

ConvMem: Convolutional Memory for Long-Context Reasoning

The problem is real: long contexts kill latency and cost. Reformulating it as a CNN-style hierarchy is clever and training-free, which lowers the friction to test. But the excerpt cuts off before results, so it's unclear if this actually works in practice or if it's another hierarchical-retrieval idea. Come back when there's evidence it outperforms simpler baselines on real workloads.

arXiv cs.AIPaper

Beyond One-Size-Fits-All: Sample-Adaptive Strategy Routing for Vision Token Pruning in MLLMs

Token pruning in vision is well-trodden, but the insight here is that different inputs respond better to different pruning strategies. VIP-Router picks the strategy per sample. It's clever, but the speedup is likely modest compared to a simpler fixed strategy that runs once. Worth implementing if you're serving vision queries with tight latency budgets, otherwise YAGNI.

arXiv cs.CLPaper

Why Is Video Still So Expensive? A Survey of Inference-Efficiency Mechanisms in Video and Audiovisual LLMs

VideoLLM inference is expensive, and this paper methodically maps where the cost lives: frame sampling, token reduction, LLM decoding. For builders shipping video agents or retrieval systems, the takeaway is that one-size-fits-all frame sampling leaves money on the table. The survey's organization by pipeline stage makes it actionable rather than just cataloging methods.

arXiv cs.AIPaper

A*-Thought-V2: Efficient Latent Reasoning via Geometric Dynamics of LLM

The core idea is to prune reasoning steps that wander from the direct question-to-answer path, using geometric alignment in PCA space as a criterion. If your use case is cost-sensitive reasoning or long contexts, this is worth testing. The method is more principled than hard pruning since it preserves deviating steps as compressed latents. Applicable to any CoT workflow where inference cost matters.

arXiv cs.AIPaper

CogEvol: Towards Efficient and Reliable Learning Environment Generation

Single-pass generation with enforced reliability, not probabilistic hope. The production grounding (53k verified SFT samples, caught reward hacking) is the real story. If you're building generation systems where output quality is binary—playable or not, works or doesn't—the pipeline CogEvol describes is your template. The 27x parameter efficiency on 83.7 slide quality also matters for cost-sensitive deployments.

arXiv cs.CLPaper

Every Token Leaves a Ripple in the Stream of Thought: Eliciting Model-Internal Token Saliency for Chain-of-Thought Compression

CoT reasoning is expensive at inference time, and token pruning is a real efficiency lever for production agents. This paper's approach—measuring token contribution through the residual stream—is more principled than existing heuristics. If you're deploying reasoning-heavy agents and token costs are eating your margin, this method and the underlying insight about model internals are worth a careful read.

arXiv cs.CLPaper

Language Models Can Control Their Own Attention

This is a real efficiency win for long-context inference. Instead of scanning the full KV cache at each step, the model declares which region it needs (global, focused, or local), and the inference engine skips the rest. It's intrinsic rather than extrinsic: the model already knows what matters. If you're running long-context inference at scale, this cuts compute per token without architectural changes. Likely to land in production systems within months.

arXiv cs.LGPaper

Free Pause Tokens

This is a practical win for inference efficiency. Pause tokens let models think without adding latency or KV cache overhead, which matters at scale. If you're optimizing model serving or want better quality without retraining from scratch, this is worth implementing. The training cost is low enough that it changes the math on inference-time improvements.

arXiv cs.CLPaper

Select, Compress, Reinvest: A Controlled Study of Visual-Token Allocation in Long-Video MLLMs

This is valuable empirical work that isolates one variable at a time. The finding that Orthogonal Matching Pursuit, an off-the-shelf algorithm from the 1990s, performs as well as purpose-built selectors is both useful and humbling. If you are building long-video systems, this suggests you should experiment with simple classical methods before reaching for learned selectors. The gains are solid but not transformative.

arXiv cs.CLPaper

ShallowStream: Index Shallow then Answer Deep for Streaming Video Understanding

This targets a real deployment constraint: streaming video through a full multimodal model is prohibitively expensive. Reusing shallow layers for indexing while deferring deep reasoning is architecturally sound. But the excerpt cuts off before results, so the signal here is incremental: yet another token-reduction technique in a crowded space. Check the full paper to see if the throughput gains justify the added complexity.

arXiv cs.LGPaper

Graph Machine: Towards Better Pretraining via Edges

This is incremental progress on sparse attention, not a breakthrough. Replacing 75% of a 600M parameter model's dense layers with sparse routing and seeing minimal loss impact is solid engineering, but it's still the same bet: sparser models train a bit cheaper. Wait for evidence this matters at scale or in training-to-inference transfer before reshaping your infrastructure plans.

arXiv cs.CLPaper

Scalable Kronecker-Fisher Approximation: Efficient Hessian Analysis for Billion-Parameter Language Models Compression

Compression is about to matter a lot more. This work shows that value projections are consistently fragile across model families, and you can figure out where to cut without brute force. If you're shipping models to edge devices or trying to reduce inference cost, this gives you a principled way to identify where safe sparsity exists. The cross-layer insight is novel enough to change how you think about pruning.

arXiv cs.CLPaper

Debias-SparseGPT: Bias-Aware Pruning for Large Language Models

Model compression and fairness don't usually mix well—you prune aggressively, you amplify whatever biases hide in the weights. This work shows a way to prune and keep bias roughly flat, which is the real win. If you're shipping compressed LLMs and have strong bias requirements, this is worth testing. For everyone deploying pruned models: you probably haven't measured if sparsification changed your demographic performance. Measure it before this matters to your users.

arXiv cs.LGPaper

SinkPruner: Sink-Free Visual Token Pruning for Multimodal Large Language Models

This is incremental efficiency work. The insight is solid: high-norm outlier tokens look important but are often redundant. If you're running inference on MLLMs at scale and token count is a bottleneck, this saves compute. But it's part of a crowded space of pruning techniques. The training-free approach is nice; the gains need to be measured against the added latency of sanitization and pruning.

arXiv cs.CLPaper

A Model with No Head and Many Thoughts

The core insight is interesting: reasoning doesn't need to be tokenized if you're not outputting it yet. Early-stage but promising for inference efficiency. The gains on small models (1.5B-3B) are real, and continuous-space thinking could reduce compute per step during long reasoning chains. Relevant if you're optimizing inference cost on reasoning-heavy workloads, though still experimental.

arXiv cs.AIPaper

A Universal Context-Reuse Layer for Cross-Model KV Sharing

Cross-model KV reuse is clever infrastructure thinking but solves a narrow problem. It helps when you're repeatedly running different models over the same context, like multi-stage routing or ensemble inference. The 6.89 point improvement on LongBench2 is solid, but this is a serving optimization, not a capability shift. Useful if you're building inference infrastructure, not if you're building applications.

arXiv cs.LGPaper

LoGo: Token-Level Dynamic Local-Global Attention

The efficiency gains here are real but modest in scope. This is an incremental optimization to the Transformer backbone targeting a specific bottleneck (attention cost at scale), and it requires gate learning to work. Worth tracking if you're building inference-heavy systems that need to serve long contexts, but this isn't a paradigm shift. The mechanism assumes you can identify which tokens need long-range access before computing attention, which is a strong constraint.

arXiv cs.CLPaper

Sliding-window beats linear attention

Linear attention has been the darling of the efficiency crowd, but this work shows the simpler sliding-window baseline was never actually beaten. For builders working on long-context systems, this is permission to stick with what you know works rather than chasing the research hype. The implication is that the scaling path forward stays quadratic, not linear. That has cost consequences at million-token scale.

arXiv cs.LGPaper

Non-Parametric Spatiotemporal Trajectory Prediction via State-Conditioned Transition Sampling

This is a neat engineering result: simpler, cheaper, no training, and it handles data scarcity better. But it's specialized to trajectory prediction and tested only on maritime AIS data. The generalization to other domains and the practical advantage over fine-tuned transformers in realistic deployment scenarios remain unclear. Worth considering if you're building systems in data-poor geographies, but don't expect this to replace learned models broadly.

arXiv cs.CLPaper

Matryoshka Language Model Suites

This is a real infra efficiency gain for anyone maintaining a model suite across sizes, since it collapses separate training runs into one nested pipeline and gets speculative decoding almost for free. Worth watching if you're running multi-size deployments and want to cut both training and serving costs, though it needs validation at larger scales before it changes production defaults.

arXiv cs.AIPaper

A Picture is Worth a Thousand Tokens: How Vision Language Models Cut AI Energy Costs While Improving Accuracy

Reformatting numerical data as images to shrink token counts is a cheap trick that keeps paying off, and the accuracy gains here look too large to be pure efficiency noise. Worth a look if you're running any kind of telemetry or time-series pipeline through an LLM, since the same trick likely generalizes beyond telecom. Not urgent, but a cost line item worth testing on your own KPI data.