<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Papers Mache</title>
    <description>The latest articles on DEV Community by Papers Mache (@olaughter).</description>
    <link>https://dev.to/olaughter</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3907566%2Fa47c580b-0e36-4706-887e-97e33498a037.png</url>
      <title>DEV Community: Papers Mache</title>
      <link>https://dev.to/olaughter</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/olaughter"/>
    <language>en</language>
    <item>
      <title>KV cache cut by ~45% with near‑same accuracy</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Fri, 25 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/kv-cache-cut-by-45-with-near-same-accuracy-2b95</link>
      <guid>https://dev.to/olaughter/kv-cache-cut-by-45-with-near-same-accuracy-2b95</guid>
      <description>&lt;p&gt;Grouped Value Attention slashes transformer KV memory by roughly 45 % without hurting benchmark scores. By storing only grouped values and reconstructing keys on the fly, it eliminates the need to materialize a full key matrix during decode, cutting the persistent cache scalars dramatically.&lt;/p&gt;

&lt;p&gt;Before these works, long‑context decoding relied on full key–value caches that grew linearly with sequence length. Even techniques like grouped‑query attention still kept a key for every token, so memory pressure remained the dominant bottleneck in autoregressive inference.&lt;/p&gt;

&lt;p&gt;On a 350 M‑parameter model, GVA cuts persistent cache scalars by about 46 % while keeping average task accuracy within 0.01 points of GQA. The authors report “this representation reduces persistent cache scalars by approximately 45–47 % relative to matched GQA” and note that “the 16‑dimensional positional variant reaches 44.35 average accuracy across five tasks, compared with 44.36 for GQA and 43.88 for MLA” &lt;a href="https://arxiv.org/abs/2609.13285" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;DeepSeek‑V4.1‑Flash pushes KV compression further, shrinking the global HBM footprint to 890 bytes per token – roughly one quarter of its predecessor. Moreover, “through a dedicated deployment optimization known as SWA Bounded Replay … reduces its persistent KV cache footprint … to roughly 1/8 of that of DeepSeek‑V4‑Flash,” and despite these cuts the model “delivers substantially better performance than the baseline” &lt;a href="https://arxiv.org/abs/2609.19969" rel="noopener noreferrer"&gt;[2]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Both papers leave open how these memory savings translate into end‑to‑end latency reductions on commodity GPUs. GVA’s custom decoding kernels are still under evaluation, so real‑world throughput gains remain unproven; DeepSeek’s design includes FP4 caching and cross‑layer reuse, which could benefit from hardware supporting low‑precision arithmetic.&lt;/p&gt;

&lt;p&gt;If the reported cuts hold in production, the KV cache allocation for decoder‑only models could potentially be reduced substantially while maintaining quality. These reductions suggest that re‑evaluating long‑context benchmarks with smaller cache budgets may enable longer token contexts on more modest hardware.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.13285" rel="noopener noreferrer"&gt;Grouped Value Attention: Efficient KV Caching via On-Demand Key Reconstruction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.19969" rel="noopener noreferrer"&gt;DeepSeek-V4.1-Flash: Pushing the Limits of KV Cache Compression&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Open‑vocab relation predictor triples recall</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Thu, 24 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/open-vocab-relation-predictor-triples-recall-pg7</link>
      <guid>https://dev.to/olaughter/open-vocab-relation-predictor-triples-recall-pg7</guid>
      <description>&lt;p&gt;RelateAnything shatters the low‑recall ceiling that has limited zero‑shot visual relationship detection, delivering 2.3–3.5× higher mean recall while staying under a 20 ms per‑frame budget. Prior models were shackled to a fixed set of 50‑56 predicates and relied on object‑label conditioning, preventing them from handling arbitrary relation vocabularies at inference time.  &lt;/p&gt;

&lt;p&gt;The field has long been constrained by three intertwined obstacles: no free‑text, verified relation corpus; architectures that condition on learned object labels; and evaluation metrics that reward agreement with the training taxonomy rather than true open‑vocab performance. Consequently, scene‑graph systems remained tied to a single detector and could not ingest novel predicate strings.  &lt;/p&gt;

&lt;p&gt;RelateAnything achieves a mean recall 2.3–3.5× higher than the strongest open‑vocabulary baseline of comparable scale across three cross‑dataset benchmarks and one zero‑shot setting &lt;a href="https://arxiv.org/abs/2609.12552" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. The boost persists even when paired with a real detector, and it outperforms a 3B‑parameter VLM scene‑graph model while using under 2 % of its parameters.  &lt;/p&gt;

&lt;p&gt;The relation model runs at 20 ms per frame on a single GPU, alongside a real‑time object detector &lt;a href="https://arxiv.org/abs/2609.12552" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. This speed translates to roughly 49 FPS end‑to‑end, enabling truly live video processing without sacrificing the recall gains.  &lt;/p&gt;

&lt;p&gt;The authors acknowledge that training still depends on the RA‑4M corpus covering 10 k free‑text predicates and that positive‑unlabeled supervision may limit performance on completely novel vocabularies; moreover, in‑domain measurements can overstate transfer benefits by up to fivefold. This suggests further work is needed to verify robustness when the predicate bank expands beyond the curated set and to devise metrics that capture true open‑vocab generalisation without bias toward the training corpus.  &lt;/p&gt;

&lt;p&gt;If these numbers hold under broader scrutiny, developers should replace fixed‑predicate scene‑graph pipelines with RelateAnything for any real‑time video stream, re‑evaluating their systems on OV‑SGG‑Bench or similar cross‑dataset suites to expose hidden recall deficits.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.12552" rel="noopener noreferrer"&gt;RelateAnything: Real-Time Open-Vocabulary Relation Prediction From Any Inputs&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Recursive self‑improvement cuts token traffic 49%</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Wed, 23 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/recursive-self-improvement-cuts-token-traffic-49-o9d</link>
      <guid>https://dev.to/olaughter/recursive-self-improvement-cuts-token-traffic-49-o9d</guid>
      <description>&lt;p&gt;Recursive self‑improvement has been reported to reduce token generation overhead, with over 15% improvement in token efficiency for speculative decoding as noted in the accompanying GitHub summary of &lt;a href="https://arxiv.org/abs/2609.11873" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. The twist is that the very loops that promise such savings often backtrack, with many search trajectories ending worse than their peak performance.&lt;/p&gt;

&lt;p&gt;Today’s LLM deployments often employ speculative decoding to reduce token usage; the cited works discuss speculative decoding and recursive self‑improvement as distinct approaches &lt;a href="https://arxiv.org/abs/2609.11873" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;, &lt;a href="https://arxiv.org/abs/2609.13406" rel="noopener noreferrer"&gt;[2]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Recursive auto‑research loops have been associated with over 15% token‑generation efficiency improvement for speculative decoding and reported 20% lower end‑to‑end serving cost in the GitHub summary of &lt;a href="https://arxiv.org/abs/2609.11873" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;A recent benchmark where agents revise their own training‑data strategies under a fixed target model reports that 58.33% of settings improve on the first valid attempt, yet 78.26% of searches that continue past their best score end with a lower‑scoring final attempt (2609.13406): the improvement step is not monotone even when the standard outside is fixed.&lt;/p&gt;

&lt;p&gt;Generalized Agent Iteration introduces two orthogonal axes—internal vs. external improvement and anchored vs. self‑referential evaluation—that partition the design space into four distinct categories of agent iteration, providing a unified language for both classic policy iteration and recursive self‑improvement &lt;a href="https://arxiv.org/abs/2609.13406" rel="noopener noreferrer"&gt;[2]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The reported token‑efficiency gains (over 15%) are observed for speculative decoding workloads; it remains unclear how these improvements translate to other downstream tasks such as code synthesis or embodied control &lt;a href="https://arxiv.org/abs/2609.11873" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Moreover, the improvement step’s non‑monotonicity means that extending a recursive search can more often degrade performance than improve it, raising reliability concerns for production deployments &lt;a href="https://arxiv.org/abs/2609.13406" rel="noopener noreferrer"&gt;[2]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Benchmarks that track token efficiency should incorporate recursive self‑improvement loops as a standard baseline, ensuring that reported savings reflect both raw token counts and the stability of performance gains.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.11873" rel="noopener noreferrer"&gt;The Last AI Built by Humans: Toward Genuine Recursive Self-Improvement&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.13406" rel="noopener noreferrer"&gt;Generalized Agent Iteration: One Formal Framework for Iterative Policy Improvement and Recursive Self-Improvement&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>35 B MoE runs under 3 GiB RAM</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Tue, 22 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/35-b-moe-runs-under-3-gib-ram-3poh</link>
      <guid>https://dev.to/olaughter/35-b-moe-runs-under-3-gib-ram-3poh</guid>
      <description>&lt;p&gt;Learned routing slashes the active memory of a 35‑billion‑parameter Mixture‑of‑Experts model to under 3 GiB, turning laptop‑scale inference from fantasy into practice. By predicting which experts will be needed one token ahead, the engine streams only the relevant weights from SSD and never holds the full parameter matrix in RAM.&lt;/p&gt;

&lt;p&gt;Until now MoE inference on consumer hardware has been bottlenecked by weight storage rather than compute, with naive offloading offering no speed gain because layer N+1’s routing cannot start until layer N’s output is produced. A fully‑resident engine therefore demands more than 18 GiB of memory just to hold the int4‑quantized weights.&lt;/p&gt;

&lt;p&gt;Edge0 reduces peak active memory from 18.2 GiB to 2.9 GiB while boosting decode throughput to 20.4 tok/s across five public benchmarks, staying within a few points of its fp16 teacher on average &lt;a href="https://arxiv.org/abs/2609.18063" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. The quoted comparison—“the Mac mini M4&amp;nbsp;Pro has 24 GB…while Edge0’s profile decodes at 20.4 tok/s occupying 2.9 GiB”—captures the five‑fold speedup and the order‑of‑magnitude memory saving.&lt;/p&gt;

&lt;p&gt;The quality gap introduced by int4 quantization is largely recovered through an unmerged LoRA trained on the student path, so the routed set exactly matches the staged expert set without dropping any weights &lt;a href="https://arxiv.org/abs/2609.18063" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. This “prerouter” trick preserves most of the fp16 model’s accuracy while keeping memory tiny.&lt;/p&gt;

&lt;p&gt;The technique hinges on a per‑layer prerouter that must be pre‑trained and on fast SSD streaming, which limits portability to machines lacking high‑throughput storage; moreover, 20 tok/s may still be too slow for real‑time latency‑critical workloads. These constraints leave open whether the same memory savings can be achieved on lower‑end disks or with larger MoE configurations.&lt;/p&gt;

&lt;p&gt;If the memory wall no longer excludes extreme‑scale models from commodity inference, benchmark suites such as MMLU should add Edge0’s 35 B MoE as a baseline, reshaping how we evaluate accessibility versus performance.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.18063" rel="noopener noreferrer"&gt;The Other Half of the Memory Wall: Serving 35B MoEs from SSD with Trained Routing Prediction&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>AI/ML Research Digest — Sep 19, 2026</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Mon, 21 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/aiml-research-digest-sep-19-2026-457m</link>
      <guid>https://dev.to/olaughter/aiml-research-digest-sep-19-2026-457m</guid>
      <description>&lt;p&gt;&lt;strong&gt;Efficient long‑context memory and token compression&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Continual‑learning anchors combined with merged low‑rank LoRA updates lift retention on a 100‑task benchmark from about 1 % to roughly 35 % &lt;a href="https://arxiv.org/abs/2609.06986" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. The gain shows that simple architectural tricks can stave off catastrophic forgetting in very long horizons. Grouped Value Attention stores only grouped values and reconstructs keys when needed, cutting the key‑value cache by ~45 % while keeping GQA accuracy intact &lt;a href="https://arxiv.org/abs/2609.13285" rel="noopener noreferrer"&gt;[2]&lt;/a&gt;. A parallel line of work compresses agent caches to one‑quarter of their original size and aligns end‑of‑sequence handling, enabling million‑token contexts with modest compute cost &lt;a href="https://arxiv.org/abs/2609.19969" rel="noopener noreferrer"&gt;[3]&lt;/a&gt;&lt;a href="https://arxiv.org/abs/2609.20511" rel="noopener noreferrer"&gt;[4]&lt;/a&gt;. Together these methods make it feasible to run large models over extended texts or streams without exploding memory use.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Mixture‑of‑Experts scaling for embodied and inference models&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
PhysBrain 1.5 unifies vision and language in a single MoE‑scaled backbone that tackles 28 embodied benchmarks, establishing state‑of‑the‑art performance across tasks despite not targeting diffusion backbones or real‑time video generation. A dedicated sparse‑MoE world simulator accelerates rollouts and improves visual fidelity for agents interacting with simulated environments &lt;a href="https://arxiv.org/abs/2609.12036" rel="noopener noreferrer"&gt;[5]&lt;/a&gt;. On the inference side, a learned routing predictor lets a 35 B MoE model be served directly from SSD while keeping active memory under 3 GiB, narrowing the gap between storage capacity and compute at extreme scales &lt;a href="https://arxiv.org/abs/2609.18063" rel="noopener noreferrer"&gt;[6]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Recursive self‑improvement (RSI) architectures for LLM agents&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
The Generalized Agent Iteration framework formalizes RSI as a spectrum of internal updates (meta‑learning) and external updates (fine‑tuning), providing concrete metrics to evaluate autonomous policy upgrades &lt;a href="https://arxiv.org/abs/2609.13406" rel="noopener noreferrer"&gt;[7]&lt;/a&gt;. Building on this, Dream‑RSI and RSIAgent use replay simulators and multi‑agent curricula to achieve self‑enhancement without additional training data, demonstrating practical pipelines for continual improvement &lt;a href="https://arxiv.org/abs/2609.14858" rel="noopener noreferrer"&gt;[8]&lt;/a&gt;&lt;a href="https://arxiv.org/abs/2609.15364" rel="noopener noreferrer"&gt;[9]&lt;/a&gt;. Recursive auto‑research loops reduce token traffic by up to 49 % and lower API costs, proving that RSI can translate into real‑world savings.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Unified physical foundation model for embodied diffusion&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
A single MoE‑scaled diffusion backbone now processes video, robotic, and 3D inputs together, supporting real‑time streaming generation and control for embodied agents &lt;a href="https://arxiv.org/abs/2609.14973" rel="noopener noreferrer"&gt;[10]&lt;/a&gt;. This consolidation removes the need for separate models per modality and opens a path to more coherent multimodal planning.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;RelateAnything open‑vocabulary relation predictor&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
The lightweight predicate‑driven module accepts arbitrary relation strings and region sources, achieving 2.3–3.5× higher mean recall than prior approaches while running at roughly 20 ms per frame &lt;a href="https://arxiv.org/abs/2609.12552" rel="noopener noreferrer"&gt;[11]&lt;/a&gt;. Faster, more flexible relation prediction can improve downstream tasks such as scene graph generation and visual reasoning.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Orthus speculative decoding under BF16&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Speculative decoding with Orthus reproduces exact FP32 trajectories; switching to BF16 introduces only minor divergences that do not affect benchmark performance &lt;a href="https://arxiv.org/abs/2609.15504" rel="noopener noreferrer"&gt;[12]&lt;/a&gt;. This confirms that reduced‑precision inference can retain quality, which matters for cost‑constrained deployments.&lt;/p&gt;

&lt;h3&gt;
  
  
  Additional insights
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;Latent‑interface training&lt;/em&gt; separates perception from actuation in robot policies, preventing shortcut learning and yielding more robust manipulation under cluttered conditions &lt;a href="https://arxiv.org/abs/2609.12641" rel="noopener noreferrer"&gt;[13]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Sparse‑MoE world simulator&lt;/em&gt; not only speeds up rollouts but also delivers higher‑quality video streams for embodied agents, tightening the loop between simulation fidelity and policy performance &lt;a href="https://arxiv.org/abs/2609.12036" rel="noopener noreferrer"&gt;[5]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;ActionSplice&lt;/em&gt; inserts corrected actions into chunked video models without replaying completed evaluations, slashing LPIPS scores and reducing latency dramatically &lt;a href="https://arxiv.org/abs/2609.08230" rel="noopener noreferrer"&gt;[14]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Lightning Weave&lt;/em&gt; composes specialist policies on‑policy via distillation, improving accuracy while cutting token consumption, a useful recipe for scaling multitask agents efficiently &lt;a href="https://arxiv.org/abs/2609.14708" rel="noopener noreferrer"&gt;[15]&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.06986" rel="noopener noreferrer"&gt;Continual Learning Mechanisms Compose for Long-Horizon Memorization&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.13285" rel="noopener noreferrer"&gt;Grouped Value Attention: Efficient KV Caching via On-Demand Key Reconstruction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.19969" rel="noopener noreferrer"&gt;DeepSeek-V4.1-Flash: Pushing the Limits of KV Cache Compression&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.20511" rel="noopener noreferrer"&gt;When EOS Tokens Disagree: Understanding Length Inflation in On-Policy Distillation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.12036" rel="noopener noreferrer"&gt;Pelican-Sim 1.0: A General World Model Simulator for Embodied Intelligence&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.18063" rel="noopener noreferrer"&gt;The Other Half of the Memory Wall: Serving 35B MoEs from SSD with Trained Routing Prediction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.13406" rel="noopener noreferrer"&gt;Generalized Agent Iteration: One Formal Framework for Iterative Policy Improvement and Recursive Self-Improvement&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.14858" rel="noopener noreferrer"&gt;Dream-RSI: Recursive Self-Improvement through Evolving Worlds&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.15364" rel="noopener noreferrer"&gt;RSIAgent: Autonomous Exploration for Recursive Self-improvement in New Environments&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.14973" rel="noopener noreferrer"&gt;PhysBrain 1.5: From Vision-Language Models to Physical Foundation Models&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.12552" rel="noopener noreferrer"&gt;RelateAnything: Real-Time Open-Vocabulary Relation Prediction From Any Inputs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.15504" rel="noopener noreferrer"&gt;How Lossless Is Lossless Speculative Decoding? The Role of Numerical Precision in Orthrus&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.12641" rel="noopener noreferrer"&gt;Breaking the Vision-Action Shortcut: Latent Interface Training for Generalizable Robotics Foundation Models&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.08230" rel="noopener noreferrer"&gt;ActionSplice: In-Flight Action Editing for Interactive World Models&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.14708" rel="noopener noreferrer"&gt;Lightning Weave: Improving the Accuracy-Efficiency Frontier of Reasoning Models through Capability Composition&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Hybrid-precision attention reduces compute cost with minimal accuracy loss</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Sun, 20 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/hybrid-precision-attention-reduces-compute-cost-with-minimal-accuracy-loss-fim</link>
      <guid>https://dev.to/olaughter/hybrid-precision-attention-reduces-compute-cost-with-minimal-accuracy-loss-fim</guid>
      <description>&lt;p&gt;Mixed‑precision quantization can halve the compute cost of LLM attention while keeping accuracy loss below 1 %. By preserving only a narrow set of critical tokens in full precision, HyQuant sidesteps the catastrophic degradation that plagued earlier low‑bit attempts.&lt;/p&gt;

&lt;p&gt;Previous efficiency work often applied uniform 4‑ or 8‑bit quantization to the entire attention matrix or used smoothing techniques to handle outliers, which can lead to notable accuracy degradation. Attention computation constitutes a major component of inference latency in both prefill and decode phases.&lt;/p&gt;

&lt;p&gt;HyQuant delivers between 1.32× and 3.58× decode‑kernel speedup while preserving near‑full‑precision accuracy across multiple long‑context and reasoning benchmarks — "Experimental results show that HyQuant achieves 1.32 to 3.58 decode‑kernel speedup and 1.04 to 1.17 end‑to‑end decode speedup while maintaining near‑full‑precision accuracy across multiple long‑context and reasoning benchmarks." &lt;a href="https://arxiv.org/abs/2608.27875" rel="noopener noreferrer"&gt;[1]&lt;/a&gt; The method quantizes the bulk of query, key, and value tensors to low‑bit formats but keeps vertical‑line tokens and a local sliding window in full precision, identified by a lightweight pattern detector. This hybrid design works unchanged for vision‑language models that share the same attention topology, and the authors ship an in‑place Triton kernel patch that drops into existing pipelines with a single import.&lt;/p&gt;

&lt;p&gt;The extra cost of vertical‑line identification consumes only 3% to 5% of total runtime — "Our evaluation shows that this additional vertical‑line identification overhead accounts for only 3% to 5% of the total runtime." &lt;a href="https://arxiv.org/abs/2608.27875" rel="noopener noreferrer"&gt;[1]&lt;/a&gt; The detector merely accumulates query vectors, runs a matrix multiplication every 64 tokens, and sums columns, operations that are dwarfed by the savings from quantizing the remaining context. Consequently, the hybrid precision layer adds negligible overhead even on dense GPU workloads.&lt;/p&gt;

&lt;p&gt;HyQuant also applies to the prefilling stage, though its latency benefits may vary across model sizes and task types. The paper evaluates primarily on decode‑focused benchmarks and provides custom Triton kernels for integration. This suggests an open question: can the same hybrid principle be generalized to encoder‑only architectures without bespoke kernel support?&lt;/p&gt;

&lt;p&gt;Production stacks should replace uniform attention quantizers with HyQuant’s hybrid operator and re‑measure end‑to‑end throughput on their target workloads. The reported 1.04–1.17× overall decode speedup suggests services could increase request‑per‑second throughput by up to ~17% while maintaining near‑full‑precision quality. Updating benchmark suites such as LongBench to include a HyQuant baseline will make future comparisons reflect this practical latency frontier.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.27875" rel="noopener noreferrer"&gt;HyQuant: Hybrid-Precision Quantization for LLM Attention&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Beacon queries cut KV memory by 40 %</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Sat, 19 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/beacon-queries-cut-kv-memory-by-40--1gc9</link>
      <guid>https://dev.to/olaughter/beacon-queries-cut-kv-memory-by-40--1gc9</guid>
      <description>&lt;p&gt;Predicting which past key‑value (KV) entries will be revisited lets the attention module skip redundant lookups, cutting inference memory dramatically. BeaconKV’s beacon query mechanism turns that prediction into a 40 % reduction in peak KV consumption without harming answer quality.&lt;/p&gt;

&lt;p&gt;Before BeaconKV, KV cache compression relied on recent queries as proxies for future attention patterns, assuming that the next token would attend primarily to the most recent context. That assumption collapses on long‑horizon reasoning where Thought Revisiting Tokens (TRT) re‑attend to distant plan fragments, leaving existing compressors blind to upcoming reuse.&lt;/p&gt;

&lt;p&gt;BeaconKV achieves up to a 40 % reduction in peak KV memory across four open‑source large reasoning models by maintaining compact “beacon” queries that forecast revisits instead of storing the full query history &lt;a href="https://arxiv.org/abs/2609.04971" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. The authors show that these beacons capture the small set of similarity groups formed by TRT queries, enabling selective retention of only the KV pairs likely to be needed again.&lt;/p&gt;

&lt;p&gt;The approach also preserves answer quality, delivering the largest reported accuracy gain of 31.7 percentage points on Qwen3‑14B for AIME24 when the KV cache is limited to 1024 tokens “observed on Qwen3-14B for AIME24 with a maximum KV cache budget of 1024” &lt;a href="https://arxiv.org/abs/2609.04971" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. This shows that aggressive compression need not sacrifice performance on demanding chain‑of‑thought tasks.&lt;/p&gt;

&lt;p&gt;The method is training‑free but requires users to choose a target compression ratio via flags such as &lt;code&gt;--decode-max-budget&lt;/code&gt;, and the reported gains come from benchmarks that already exhibit frequent TRT patterns; workloads without such revisiting behavior may see smaller savings. One open question is how beacon clustering scales when the number of similarity groups grows with more heterogeneous prompts.&lt;/p&gt;

&lt;p&gt;If these memory savings hold in practice, the GPU memory required for a given KV cache size could be reduced proportionally; for example, a 40 % reduction would lower the VRAM needed for a 4096‑token cache by roughly the same factor, enabling larger batch sizes or cheaper hardware deployments.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.04971" rel="noopener noreferrer"&gt;BeaconKV: Key-Value Cache Compression Guided by Beacon Queries for Efficient Large Reasoning Model Inference&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>World‑model RL accelerates LLM training by 3‑4</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Fri, 18 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/world-model-rl-accelerates-llm-training-by-3-4x-7j1</link>
      <guid>https://dev.to/olaughter/world-model-rl-accelerates-llm-training-by-3-4x-7j1</guid>
      <description>&lt;p&gt;Replacing the environment with a learned world model shrinks wall‑clock training time for LLM agents by several times (approximately 3–4×) while leaving benchmark scores intact. The field has long assumed that high‑fidelity sandbox execution is unavoidable once an agent leaves the generation phase, because each trajectory must run on a real machine. World Model RL shows that internal simulation can carry the same learning signal at a fraction of the cost.&lt;/p&gt;

&lt;p&gt;Before this work, scaling reinforcement‑learning for AutoResearch agents was bottlenecked by environment execution, which cannot be batched and therefore dominates compute as trajectories grow. Generation benefits from massive batching across many prompts, but every rollout still occupied an exclusive sandbox, inflating wall‑clock time regardless of model size. This asymmetry made post‑training the most expensive stage of research‑agent pipelines.&lt;/p&gt;

&lt;p&gt;“the two corrections turn the permanent error floor of world model training into a contracting term and reduce the variance below either reward stream alone, and they cut the training compute by three to four times while matching or exceeding full real‑execution RL at two scales.” &lt;a href="https://arxiv.org/abs/2608.12564" rel="noopener noreferrer"&gt;[1]&lt;/a&gt; The paper’s theory guarantees convergence improvement, and the empirical results confirm a consistent 3–4× speedup across tasks and agent scales without degrading performance.&lt;/p&gt;

&lt;p&gt;On a 9 B Qwen‑3.5 model the method required only 349 GPU‑hours versus 1,174 for full execution—a 3.4× reduction—yet achieved 21.6 on MLE‑Dojo and 32.8 on DSBench, essentially on par with the baseline. The 4 B variant showed a similar 3.1× drop in compute (286 GPU‑hours) while preserving scores, demonstrating that the gains hold across different parameter regimes.&lt;/p&gt;

&lt;p&gt;The approach still hinges on an imperfect world model; bias and noise must be mitigated with online debiasing and inverse‑variance denoising, and the evaluation stops at 9 B parameters and a limited suite of benchmarks. This suggests that further work is needed to verify whether the same compute savings translate to substantially larger agents or more diverse, stochastic environments.&lt;/p&gt;

&lt;p&gt;Future AutoResearch pipelines should replace raw sandbox runs with World Model RL as the default post‑training step, meaning that cost estimates for training new agents can be divided by three without sacrificing performance.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.12564" rel="noopener noreferrer"&gt;Scaling Automatic Research Agents via World Models&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Zero-training speech integration preserves vision-language ability</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Thu, 17 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/zero-training-speech-integration-preserves-vision-language-ability-3ej6</link>
      <guid>https://dev.to/olaughter/zero-training-speech-integration-preserves-vision-language-ability-3ej6</guid>
      <description>&lt;p&gt;Adding discrete speech tokens to a frozen vision‑language backbone instantly yields functional audio understanding without any gradient updates. “Training‑Free Omni (TFO), a plug-and‑play framework that converts a frozen VLM into a speech‑centric omni model without architectural modification, or multimodal re‑alignment.” &lt;a href="https://arxiv.org/abs/2609.04242" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Before TFO, omnidirectional models required dedicated audio encoders and costly joint training on image‑audio‑text triples, tightly coupling the new modality to a specific backbone and often degrading the original visual reasoning abilities.&lt;/p&gt;

&lt;p&gt;On 56 benchmarks spanning 21 languages, TFO matches native omni models in audio‑visual understanding while improving average audio‑only performance across all five evaluated model settings. The system extracts confidence‑filtered Whisper transcripts, timestamps them, and feeds the discrete tokens through the VLM’s existing language interface, leaving the visual pathway untouched.&lt;/p&gt;

&lt;p&gt;The approach still depends on accurate speech transcription; noisy or out‑of‑domain audio can limit performance, and tasks that benefit from richer acoustic cues may require dedicated encoders. The authors note that “richer acoustic representations remain essential” for certain scenarios, suggesting an open question whether pure transcript routing can cover all auditory phenomena.&lt;/p&gt;

&lt;p&gt;Practitioners can now retrofit supported frozen VLMs (e.g., Qwen, Gemma, MiniCPM) with speech capability simply by installing the provided TFO adapters, preserving image‑text benchmarks such as visual grounding and medical QA while gaining multilingual spoken query support. This eliminates the need for expensive multimodal fine‑tuning and invites a rapid‑prototype workflow: drop in the plug‑in, run the existing vision suite, and immediately obtain a functional speech‑centric omni model.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.04242" rel="noopener noreferrer"&gt;Training-Free Speech-Centric Omni Understanding with Frozen VLMs&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Unified multimodal model rivals specialized systems</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Wed, 16 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/unified-multimodal-model-rivals-specialized-systems-13hp</link>
      <guid>https://dev.to/olaughter/unified-multimodal-model-rivals-specialized-systems-13hp</guid>
      <description>&lt;p&gt;Unified models have been assumed to lag behind specialist pipelines in generation fidelity, but SenseNova‑U1.5 shatters that myth by reaching the highest open‑source GenEval score with a single 8 B backbone. The system dispenses with any vision encoder or variational auto‑encoder and instead learns directly from raw patches, allowing one set of parameters to process visual data such as images and video frames alike.&lt;/p&gt;

&lt;p&gt;Before this work, multimodal deployments stitched together frozen image encoders (e.g., CLIP), separate diffusion decoders, and task‑specific VAEs, creating a patchwork of components that required individual tuning and maintenance. Those architectures achieved strong results in their own domain but suffered from inconsistencies when combined, prompting the community to treat unified modeling as an aspirational research goal rather than a production‑ready solution.&lt;/p&gt;

&lt;p&gt;SenseNova‑U1.5 achieves 0.92 on GenEval, the best overall performance among open‑source models and overtaking larger baselines such as Qwen‑Image, while using a single encoder‑free backbone &lt;a href="https://arxiv.org/abs/2609.11929" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. The authors attribute this to spatially coherent patch reconstruction, curated generation/editing data up to 4K resolution, and multi‑expert on‑policy distillation that injects specialist capabilities without separate encoders.&lt;/p&gt;

&lt;p&gt;The study’s scope remains confined to visual generation; audio and video benchmarks are absent, and the paper acknowledges limited exposure to structured formats despite strong generalization &lt;a href="https://arxiv.org/abs/2609.11929" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. This suggests that while the unified architecture can match specialists on vision tasks, its cross‑modal robustness and latency characteristics under real‑world workloads remain open questions.&lt;/p&gt;

&lt;p&gt;Enterprises can replace fragmented vision‑language stacks with a single SenseNova‑U1.5 checkpoint, cutting maintenance overhead without sacrificing output quality. The logical next experiment is to evaluate the same model on speech‑to‑image and video‑editing suites to verify whether the unification claim truly extends beyond static images.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.11929" rel="noopener noreferrer"&gt;SenseNova-U1.5: Towards Native Unified Visual Intelligence&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>Steering vectors align LLMs with human values</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Tue, 15 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/steering-vectors-align-llms-with-human-values-4i4l</link>
      <guid>https://dev.to/olaughter/steering-vectors-align-llms-with-human-values-4i4l</guid>
      <description>&lt;p&gt;Linear directions extracted from large‑language‑model activation distributions map onto human‑value axes with measurable fidelity. The study demonstrates that these steering vectors preserve the full geometry of a theory‑driven value space, not merely isolated behavioral tweaks.  &lt;/p&gt;

&lt;p&gt;Before this work, safety constraints were typically imposed by heavyweight fine‑tuning pipelines such as RLHF or DPO, or by behavior‑centric steering methods like COLD‑Steer and BiPO that optimize single‑task performance without guaranteeing coherent semantic structure. Those approaches focus on reducing targeted harms while leaving the underlying value topology unexplored.  &lt;/p&gt;

&lt;p&gt;Distribution‑driven steering recovers the expected human‑value topology with a Spearman correlation up to 0.51, confirming alignment with Schwartz’s theory of basic values&lt;a href="https://arxiv.org/abs/2609.06289" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. The authors compute this metric by projecting activation distributions onto linear directions and comparing the resulting pairwise similarity matrix against the theoretical circumplex; the peak correlation exceeds 0.5, which the authors treat as indicative of meaningful structure.  &lt;/p&gt;

&lt;p&gt;Across all evaluated metrics, only distribution‑driven methods exhibit strong geometric alignment, while behavior‑centric approaches show no statistically significant correlation despite comparable results on the benchmark (Table 4)&lt;a href="https://arxiv.org/abs/2609.06289" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. This contrast indicates that shortcut‑based steering can hit target scores without embedding the intended value relationships, underscoring the uniqueness of linear, distribution‑derived vectors.  &lt;/p&gt;

&lt;p&gt;Geometric fidelity improves with model scale but consistently degrades once the base model is instruction‑tuned (Table 1)&lt;a href="https://arxiv.org/abs/2609.06289" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;. Larger models furnish richer activation manifolds that better capture the circumplex, yet the fine‑tuning process reshapes those manifolds enough to weaken the correspondence between steering directions and human values.  &lt;/p&gt;

&lt;p&gt;The paper’s own limitation is that the observed degradation after instruction tuning leaves a gap for practitioners who need both strong task performance and value geometry preservation. This suggests an open question: can we design instruction‑tuning regimes that retain—or even enhance—the latent alignment discovered by distribution‑driven steering? Moreover, while geometry correlates with human‑consistent transfer across values, it does not directly guarantee the absence of edge‑case harms, so downstream validation remains essential.  &lt;/p&gt;

&lt;p&gt;If these findings hold, safety pipelines should incorporate a lightweight inference‑time module that extracts and applies distribution‑driven steering vectors rather than resorting to full model fine‑tuning. Re‑running existing safety benchmarks with an added geometry metric (Spearman correlation against the Schwartz framework) will expose whether a deployment truly respects the intended value structure.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.06289" rel="noopener noreferrer"&gt;Steering Geometry: Validating Human Value Geometry in LLM Steering Space&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
    <item>
      <title>AI/ML Research Digest — Sep 12, 2026</title>
      <dc:creator>Papers Mache</dc:creator>
      <pubDate>Mon, 14 Sep 2026 05:00:00 +0000</pubDate>
      <link>https://dev.to/olaughter/aiml-research-digest-sep-12-2026-3544</link>
      <guid>https://dev.to/olaughter/aiml-research-digest-sep-12-2026-3544</guid>
      <description>&lt;p&gt;&lt;strong&gt;Efficiency across multimodal and language models&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Hybrid‑precision attention quantization halves the compute of transformer layers while keeping accuracy intact &lt;a href="https://arxiv.org/abs/2608.27875" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Latent next‑concept prediction reduces the number of training tokens to roughly 51 % and lifts downstream scores compared with conventional language models &lt;a href="https://arxiv.org/abs/2609.10715" rel="noopener noreferrer"&gt;[2]&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Chain‑of‑thought token compression lets a model skip redundant key‑value lookups, cutting memory use by up to 40 % during long reasoning chains without harming answer quality &lt;a href="https://arxiv.org/abs/2609.04971" rel="noopener noreferrer"&gt;[3]&lt;/a&gt;.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Safety via latent steering and self‑distillation&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Linear directions extracted from activation distributions align model latents with human value topologies, offering a systematic way to steer outputs toward ethical constraints &lt;a href="https://arxiv.org/abs/2609.06289" rel="noopener noreferrer"&gt;[4]&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Automatically generated refusal data feed a fine‑grained self‑distillation loop that raises refusal rates on target domains; the same loop can increase over‑refusal on broader benchmarks, highlighting a trade‑off that must be managed &lt;a href="https://arxiv.org/abs/2609.04482" rel="noopener noreferrer"&gt;[5]&lt;/a&gt;.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Transformer backbones replace task‑specific pipelines&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
FreeFlow’s hierarchical windowed attention removes explicit correlation volumes yet reaches state‑of‑the‑art optical flow performance on Sintel and KITTI, simplifying the pipeline dramatically &lt;a href="https://arxiv.org/abs/2609.11486" rel="noopener noreferrer"&gt;[6]&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Other transformer‑only designs attain comparable results on depth estimation, surface normal prediction, and relighting without any handcrafted biases, proving that a single backbone can serve multiple vision tasks &lt;a href="https://arxiv.org/abs/2609.08084" rel="noopener noreferrer"&gt;[7]&lt;/a&gt;.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Highlighted papers&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;SenseNova‑U1.5 unified multimodal model&lt;/em&gt; – The encoder‑free architecture processes images, audio, and video with one parameter set and matches the performance of dedicated models on each modality &lt;a href="https://arxiv.org/abs/2609.11929" rel="noopener noreferrer"&gt;[8]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;World Model RL for LLM agents&lt;/em&gt; – Replacing costly environment steps with a learned world model trims wall‑clock training time by 3–4× while preserving long‑horizon task success &lt;a href="https://arxiv.org/abs/2608.12564" rel="noopener noreferrer"&gt;[9]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;NCP‑ArchPreview next‑token and concept prediction&lt;/em&gt; – Joint token‑and‑concept forecasting consumes about half the usual training tokens and yields better downstream metrics than standard language models &lt;a href="https://arxiv.org/abs/2609.10715" rel="noopener noreferrer"&gt;[2]&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Additional technical details&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Hybrid‑precision attention quantization (HyQuant) mixes precision levels inside attention matrices, delivering near‑lossless accuracy and notable speedups, though the exact factor is not disclosed &lt;a href="https://arxiv.org/abs/2608.27875" rel="noopener noreferrer"&gt;[1]&lt;/a&gt;.  &lt;/p&gt;

&lt;p&gt;Training‑Free Omni injects speech tokens into frozen vision‑language backbones without any gradient updates; the resulting model handles speech while retaining image‑text capabilities &lt;a href="https://arxiv.org/abs/2609.04242" rel="noopener noreferrer"&gt;[10]&lt;/a&gt;.  &lt;/p&gt;

&lt;p&gt;Co‑evolving harnesses let weaker LLM agents receive expert corrections during on‑policy reinforcement learning, preserving alignment between agent and harness and accelerating convergence without resorting to imitation learning &lt;a href="https://arxiv.org/abs/2609.09134" rel="noopener noreferrer"&gt;[11]&lt;/a&gt;.  &lt;/p&gt;

&lt;p&gt;A deterministic token‑selection algorithm guarantees coverage across multiple camera views during inference, boosting zero‑shot 3D perception consistency in visual reasoning benchmarks &lt;a href="https://arxiv.org/abs/2609.08345" rel="noopener noreferrer"&gt;[12]&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.27875" rel="noopener noreferrer"&gt;HyQuant: Hybrid-Precision Quantization for LLM Attention&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.10715" rel="noopener noreferrer"&gt;NCP-ArchPreview Technical Report: Moving towards Latent Space Language Models through Next Concept Prediction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.04971" rel="noopener noreferrer"&gt;BeaconKV: Key-Value Cache Compression Guided by Beacon Queries for Efficient Large Reasoning Model Inference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.06289" rel="noopener noreferrer"&gt;Steering Geometry: Validating Human Value Geometry in LLM Steering Space&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.04482" rel="noopener noreferrer"&gt;Safety for Whom? Boundary-Aware Self-Distillation for Controlled LLM Safety Refusal&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.11486" rel="noopener noreferrer"&gt;FreeFlow: A Bias-free Hierarchical Transformer for Optical Flow Estimation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.08084" rel="noopener noreferrer"&gt;Marigold V2: Revisiting Diffusion Transformers for Monocular Depth Estimation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.11929" rel="noopener noreferrer"&gt;SenseNova-U1.5: Towards Native Unified Visual Intelligence&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2608.12564" rel="noopener noreferrer"&gt;Scaling Automatic Research Agents via World Models&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.04242" rel="noopener noreferrer"&gt;Training-Free Speech-Centric Omni Understanding with Frozen VLMs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.09134" rel="noopener noreferrer"&gt;Co-Evolving Harnesses and Models: On-Policy Correction Helps Weaker Models Catch Up Where Imitation Fails&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arxiv.org/abs/2609.08345" rel="noopener noreferrer"&gt;CoVeR: Coverage-Based Token Pruning for Multi-View 3D Reasoning in VLMs&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>abotwrotethis</category>
    </item>
  </channel>
</rss>
