Omniscient
AllBulletinArticlesReviewsTakesCommentaryFeatured
Sign In

Omniscient

AI intelligence briefings, analysis, and commentary — delivered in broadsheet form.

By Noah Ogbi

Subscribe

Weekday briefings and flagship analysis, delivered to your inbox.

Sections

  • All
  • Bulletin
  • Articles
  • Reviews
  • Takes
  • Commentary

Topics

  • Industry Strategy
  • Anthropic
  • AI Policy
  • Frontier Models
  • OpenAI
  • Compute Economics
  • Research
  • Agents

Meta

  • About
  • Masthead
  • Standards
  • Corrections
  • RSS Feed
  • Privacy Policy
  • Terms of Service

Omniscient Media — made by ForeverBuilt, LLC.
© 2026 ForeverBuilt, LLC. All rights reserved.

  1. Home
  2. ›AI Research
  3. ›Moonshot AI's Attention Residuals Challenge a Core Assumption of Modern LLMs

AI Research

Vol. 1·Saturday, March 21, 2026

Moonshot AI's Attention Residuals Challenge a Core Assumption of Modern LLMs


Noah Ogbi5 min readUpdated Jun 1, 2026

Tips, corrections, or questions? support@omniscient.media

TopicsResearch
Moonshot AI's Attention Residuals Challenge a Core Assumption of Modern LLMs

Since the original ResNet paper in 2015, residual connections have been one of the most durable assumptions in deep learning: each layer adds its transformation to the running total of all previous layers, creating a "gradient highway" that enables stable training at depth. Moonshot AI's Kimi team is now challenging whether that assumption was ever the right one. Their new paper, Attention Residuals, proposes replacing fixed residual accumulation with something far more selective.[1]

The Problem With Fixed Weights

Standard residual connections are, at their core, a uniform sum. Every layer receives an equally weighted aggregate of all prior layer outputs, with no mechanism to selectively emphasize or suppress what came before. As models grow deeper, this causes what the paper calls "PreNorm dilution": hidden-state magnitudes grow as O(L) with depth, progressively burying the contribution of individual layers under an ever-growing accumulated sum.[1] The empirical consequence is concrete: a significant fraction of layers in standard LLMs can be pruned with minimal loss in performance, which implies they were contributing relatively little to begin with.

The Kimi team draws an explicit analogy to the problem that attention mechanisms solved for sequences. Before transformers, recurrent neural networks compressed all prior information into a single hidden state, which was then passed forward - a lossy summary that couldn't be selectively queried. Attention replaced that fixed compression with dynamic, input-dependent retrieval. AttnRes applies the same logic along the depth dimension rather than the sequence dimension.

How AttnRes Works

Rather than summing all previous layer outputs with unit weights, each layer in AttnRes computes a softmax attention score over all preceding layers and aggregates them with learned, input-dependent weights.[1] The query is a single lightweight learnable vector per layer - not the full representation - which keeps the computational overhead minimal. Attention and MLP layers can now receive different effective weightings of earlier representations, which the paper argues is more natural given that different layer types may benefit from different historical contexts.

At training scale, the challenge is memory: storing all prior layer outputs for attention increases memory footprint as O(Ld). The team's solution is Block AttnRes, which groups layers into blocks, reduces each block to a single representation via summation, and applies attention only over the N block-level summaries rather than all L individual layers. This brings memory and cross-pipeline communication down to O(Nd), making the mechanism practical for large-scale distributed training with negligible additional overhead. The paper reports less than 2% latency increase at inference time.[1]

There's one of these every weekday.

The Omniscient Bulletin turns the day's AI news into 5 to 7 items with the take, not the recap. Free.

What the Numbers Show

Scaling law experiments across model sizes confirm the improvement is consistent: Block AttnRes matches the performance of a baseline trained with 1.25 times more compute - the same result at 80% of the cost, effectively.[1] The team also integrated AttnRes into their Kimi Linear architecture (48B total parameters, 3B activated in a mixture-of-experts configuration) and pre-trained it on 1.4 trillion tokens. AttnRes improved performance across all downstream benchmarks evaluated, while producing more uniform gradient distributions and bounded hidden-state magnitudes across depth - direct evidence that PreNorm dilution was being mitigated.[1]

Significance

Architecture changes that apply cleanly across model sizes, train as drop-in replacements for existing components, and show consistent scaling-law improvements are rare. Most proposed improvements to transformer architecture either don't scale, require significant reengineering of training infrastructure, or fail to replicate across labs. AttnRes has none of those obvious failure modes: it is designed as a literal drop-in for residual connections, its overhead is marginal, and its gains are confirmed by scaling experiments.

The paper is perhaps most interesting as a conceptual move. Attention was already recognized as having fundamentally solved the problem of long-range dependence over the sequence dimension. AttnRes argues that an analogous problem - long-range dependence over the depth dimension - was hiding in plain sight, and that the same family of solutions applies. Whether the result is, as some have suggested, a meaningful architectural inflection point, or a useful but incremental improvement, will depend on how the approach replicates at the largest scales and across different architectures. The paper is already drawing attention from researchers and engineers for whom transformer efficiency is not academic.


Sources

  1. Kimi Team (Moonshot AI): Attention Residuals - arXiv:2603.15031 Inline ↗

Share:

Get this every weekday.

The Omniscient Bulletin: consequential AI, explained and evaluated. 5 to 7 items a day with the take, not the recap.


Related

Reference Library

Vol. 1·Saturday, March 21, 2026

Transformers Explained: The Architecture Behind Modern AI


Transformers Explained: The Architecture Behind Modern AI

Every time you use a chatbot or ask an AI to generate an image, you are interacting with the same underlying idea: a transformer. This is a complete guide to the architecture that made modern AI possible, written for anyone curious enough to want to understand what is actually happening inside these systems.


Research
Noah Ogbi17 min read
Continue →

Reference Library

Vol. 1·Monday, March 16, 2026

Inside the Machine: A Deep Dive into LLM Security


Inside the Machine: A Deep Dive into LLM Security

Large language models inherit their deepest vulnerabilities not from sloppy engineering but from the mathematical architecture that makes them powerful. This deep-dive dissects the threat landscape from the transformer's attention mechanism up through infrastructure-level defenses, examining prompt injection, context window attacks, laundering, RAG poisoning, multimodal cross-modal injection, and the emerging challenge of agentic AI security.


AI Security
Noah Ogbi20 min read
Continue →

AI Research

Vol. 1·Tuesday, May 5, 2026

The Self-Improving Machine: How AI Is Learning to Build Its Own Successors


The Self-Improving Machine: How AI Is Learning to Build Its Own Successors

Jack Clark, co-founder of Anthropic and former policy director at OpenAI, puts the probability of a fully automated AI research pipeline at 60% or higher before the end of 2028. The benchmark evidence he assembles - from coding agents to alignment research - suggests the transition is already underway.


Frontier ModelsResearch
Noah Ogbi12 min read
Continue →