The storage-accuracy trade-off for knowledge-intensive tasks just got clarified. Representation injection (Cartridges) wins on pure budget efficiency, but real retrieval workflows still need the context window. For RAG builders: this is the paper that quantifies when caching representations beats fine-tuning, and the answer is more often than you'd expect.
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.
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.
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.
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.
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.
This addresses a real deployment cost: latency and compute for research-heavy long-form generation. The idea—predict whether more thinking helps, then bail early—is practical for any system generating multi-section reports. If you're building extended reasoning or report generation, this is worth testing. For short-form systems, the savings are marginal.
This is a practical efficiency signal. Layer dropout works and the paper establishes best practices for layer distribution and scheduling. If you're training large models or working with constrained compute budgets, this is directly actionable. The 25% FLOP savings is substantial enough to affect iteration speed and hardware costs. Update your training recipes.
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.
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.
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.
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.
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.
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.
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.
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.
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.
This is a practical win for agent efficiency. The insight is simple: repeated or similar queries shouldn't re-trace the same reasoning steps. By caching execution traces as reusable skills, TRIAGE cuts compute and latency without changing the underlying model. If you're running ReAct agents at scale, this is a templating trick worth borrowing immediately.
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.
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.
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.
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.
Efficient multimodal inference is valuable but this is an optimization inside the model architecture layer. You don't build with this; vendors ship it. Worth watching if you're optimizing vision-heavy agent stacks, but not actionable this week.
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.
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.
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.
The cost number is the story here: a tiny model beating prior cost-accuracy tradeoffs on ARC-AGI without verbalized reasoning suggests latent recurrent computation can substitute for chain-of-thought in some regimes. Still early and benchmark-specific, but worth watching if you care about cheap reasoning at the edge.
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.