Transformer's Ancestral Design Under Fire: Three Papers at COLM Conference Strike a Blow

marsbitPublicado a 2026-08-17Actualizado a 2026-08-17

Resumen

This article discusses three studies presented at COLM 2026 that challenge fundamental, widely-adopted design choices in Transformer-based language models. The first paper, "Cracks in the Foundation," investigates standard components like QK normalization, GQA, and sliding window attention. Using a controlled set of 26 models (OlmPool), it finds that combinations of these "default" choices can severely degrade long-context performance by up to 47% on the HELMET benchmark. Notably, QK normalization, intended to stabilize training, was found to hurt performance in certain models, and "attention head concentration" (focus on initial tokens) correlated positively with better long-context capabilities. The second paper, "Lost in Backpropagation," analyzes the output projection layer. It reveals a major "gradient bottleneck": because the vocabulary size is much larger than the hidden state dimension, 95-99% of the gradient signal is lost during backpropagation, and the remaining signal is poorly aligned with the true gradient direction, potentially hindering training efficiency. The third paper, "When Fewer Layers Break More Chains," examines layer pruning. While pruning has minimal impact on standard knowledge benchmarks, it catastrophically damages models' ability for complex, multi-step reasoning (test-time scaling). Pruned models fail to improve with more thinking tokens or sampling passes. Fine-tuning struggles to recover this lost reasoning capability. Collectively, these...

Many key techniques in Transformer architecture collectively crumbled at a conference?!

At COLM 2026, multiple papers simultaneously targeted the same issue—

Those unquestioned design choices in Transformers that nobody doubts anymore, actually don't hold up.

Transformer is almost the default architecture for all mainstream models, and its settings are largely regarded as sacred, with few looking back to verify.

As a result, these papers recalculated the costs of these default choices from different angles.

And the conclusions reached by different researchers were strikingly consistent: every standard design choice in Transformer has paid a real cost in some dimension not measured by existing evaluation systems.

Cracks in Long Context

The first paper, titled 'Cracks in the Foundation', from institutions including Ai2, targeted the architectural choices often treated as 'standard'—QK normalization, GQA, sliding window attention, and pretraining context length.

The researchers selected the values used in real models like Llama 2, Llama 3, Qwen 3, and Olmo 3, created permutations and combinations, and trained 26 models for comparison.

These models had parameters ranging from 7B to 8B, with data, tokenizer, and context extension schemes kept identical—only the architecture differed.

The team called these models 'OlmPool', pretrained them all on 140B tokens, then performed long-context finetuning with an additional 10B tokens, burning over 170,000 GPU hours in total.

The result: on the HELMET 32K evaluation, the 26 models scored a high of 56.4 and a low of 29.9—a difference of 26.5 points, translating to a relative gap of 47%.

With the same data and largely similar architecture, just flipping four different switches could cause such a wide score gap.

Flipping a single switch had little impact. Using a context length of 4096 vs 8192 during pretraining, or adding sliding window attention, only dropped the score by one or two points on average.

The real trouble came when several choices were combined. Once SWA and GQA were placed in the same model, the average score dropped by 9 points—far more than the sum of their individual effects.

The worst combination identified by the team was using GQA, sliding window attention, and per-head QK normalization together, with a drop in performance also significantly greater than the sum of individual effects.

They later found that simply counting how many 'harmful design' items a model had could accurately predict its long-context performance, even more reliably than analyzing the architecture item by item.

QK normalization was the most counterintuitive. It was originally added to models for training stability and is largely considered a good thing in the industry.

But the paper found that removing Olmo 3's original QK normalization and post-norm, and replacing them with pre-norm, actually increased the HELMET score by 6 points.

Applying the same change to Llama 3, however, had the opposite effect, dropping the score by 3.8 points.

The same 'standard' choice can yield completely opposite results when applied to a different base model.

This section also revealed a phenomenon contrary to many people's intuition—'attention concentration', referring to the model allocating a large portion of its attention to the first few tokens of the context.

This phenomenon has long been considered a bad habit that wastes compute, and many new methods specifically aim to eliminate it. However, in the OlmPool models, the more pronounced the attention concentration phenomenon, the better the long-context performance.

QK normalization happens to weaken this concentration, which might be the reason it hampers long-context ability.

Lost Gradients

The second paper, titled 'Lost in Backpropagation', from Cornell University, targeted the last layer used by almost all language models—the output projection layer.

At each processing step, a language model calculates a series of numbers representing its understanding of the current context; this series is called the hidden state D.

To predict the next word, the model must convert the hidden state into scores for each candidate word in the vocabulary, outputting as many scores as there are words in the vocabulary.

These scores are called logits; the higher the score, the more likely the model considers that word to be the next one.

The component performing this conversion is the output layer, essentially a matrix operation.

The size of the vocabulary is typically much larger than the length of the hidden state—one is tens of thousands, the other may only be a few thousand.

This size disparity was previously only viewed as one problem, called the 'softmax bottleneck', meaning a vocabulary too large compared to the hidden state limits the variety of next-word distributions the model can express.

This paper argues that the same disparity has another effect.

During backpropagation, the error signal must pass through the output layer to guide the model's parameter adjustments; this stage is also affected by the disparity.

Theoretically, the error signal contains as much information as the vocabulary before it is passed back.

However, the amount of information the output layer can transmit back is limited by its own structure, with an upper bound roughly the size of the hidden state, which is much smaller than the vocabulary.

The paper measured this information loss step on already-trained models like GPT-2, Pythia, Llama 3, OLMo 2, and Qwen 3, by projecting the error signal into the null space of the output layer weights and observing what remained.

The result: on models like GPT-2, Pythia, Llama 3, OLMo 2, and Qwen 3, 95% to 99% of the gradient norm was clipped at this step.

The remaining signal had a cosine similarity with the original gradient of only 0.1 to 0.2.

Over 90% of the signal meant to be passed back was 'eaten' at this step, and the remaining bit pointed in a direction misaligned with the intended one.

This output layer is a necessary passage almost every language model must traverse, never viewed as something needing scrutiny. Yet, during every backpropagation, it quietly erases most of the training signal that should have been transmitted back.

Cutting a Layer Breaks the Reasoning Chain

Another paper, titled 'When Fewer Layers Break More Chains', from the University of Tübingen, discusses a widely used model compression technique—layer pruning, which involves directly deleting certain layers from the Transformer to save compute by reducing model depth.

Layer pruning is viable because prior research found that some layers contribute little to overall performance; deleting them results in minimal score drops on conventional knowledge-based evaluations.

Pruning a quarter of the layers can retain over 80% of the original accuracy. Results like these have made layer pruning a generally accepted efficiency method.

But these evaluations test knowledge-based tasks with short answers, which can be answered correctly based on what the model has memorized.

This paper tests another capability—long-chain reasoning. The method used is 'test-time scaling', essentially letting the model think longer—giving it more tokens for reasoning, or having it generate answers multiple times and pick the correct one. Normally, the longer it thinks or the more attempts it makes, the higher the accuracy should be.

The paper selected two models inherently capable of this, s1.1-7B and Qwen3-8B, pruned one or two layers using three mainstream layer pruning methods, and observed whether these scaling methods still worked.

On knowledge-based evaluations, scores indeed dropped gradually. But on AIME24, with math competition difficulty, for s1.1-7B, pruning just one layer caused a significant drop in accuracy; pruning two layers dropped it close to zero.

Giving the model more thinking tokens should help it reason better. Instead, the pruned models showed no improvement with longer thinking time; test-time scaling essentially failed.

The authors then tested if finetuning could recover performance, using both LoRA finetuning and full-parameter finetuning on the pruned models.

For models pruned by one layer, finetuning had almost no effect. For models pruned by two layers, finetuning recovered some scores but remained far from pre-pruning levels.

In short, this paper aims to warn that layer pruning is not as safe as it appears.

The three papers study completely different subjects: one looks at long context, one at training gradients, and one at reasoning chains.

But viewed together, a common pattern emerges—all three papers focus on conventional designs already widely adopted by mainstream models, with few looking back to question them.

Now, these 'conventional' practices are also being re-examined.

This article is from the WeChat public account 'QbitAI', author: Follow Frontier Technology

Preguntas relacionadas

QWhat major finding did the paper 'Cracks in the Foundation' present regarding Transformer architecture choices?

AThe paper found that common Transformer design defaults like QK normalization, GQA, sliding window attention, and pretraining context length, when combined, significantly harm long-context performance. The worst combination (GQA + SWA + per-head QK normalization) caused performance drops greater than the sum of individual effects.

QAccording to the paper 'Lost in Backpropagation', what is a significant but overlooked problem with the standard output projection layer in language models?

AThe paper identifies that the output layer, due to the large size difference between the vocabulary and the hidden state dimension, causes severe gradient information loss during backpropagation. In models like GPT-2 and Llama 3, 95% to 99% of the gradient's magnitude is discarded, and the remaining signal's direction is poorly aligned with the true gradient.

QWhat key weakness of layer pruning for model compression was highlighted in the paper 'When Fewer Layers Break More Chains'?

AThe paper reveals that while layer pruning minimally impacts performance on knowledge-based tasks, it severely damages a model's ability for long-chain reasoning and 'test-time compute' scaling. On complex tasks like AIME24, pruning even one layer caused a dramatic accuracy drop, and the benefit of giving the model more thinking tokens was essentially nullified.

QWhat counterintuitive correlation did the 'Cracks in the Foundation' study find related to 'attention concentration'?

AThe study found that models with more pronounced 'attention concentration'—where a large portion of attention is focused on the initial tokens of the context—actually performed better on long-context tasks. This challenges the common view that this phenomenon is a computational flaw. QK normalization, which weakens this concentration, was linked to worse long-context performance.

QWhat common theme connects the three papers discussed in the article regarding their targets of investigation?

AAll three papers target and critically re-examine foundational, widely-adopted, and rarely-questioned 'default' design choices in modern Transformer-based language models (e.g., specific normalization schemes, the output layer structure, and layer pruning). They collectively show these standard components can have significant hidden costs in areas like long-context understanding, training efficiency, and complex reasoning capability.

Lecturas Relacionadas

Analyst States Bitcoin Remains Within $61-68k Range

An analyst stated that Bitcoin is likely to remain within a trading range of $61,000 to $68,000. According to Kirill Komalenkov, director of strategic communications at Bitbanker, Bitcoin continues to trade sideways amidst declining market volatility. He attributes its current stability to high market liquidity, with volatility near three-year lows. Komalenkov warned that sustained low activity carries risks of a price decline, with potential tests of support at $62,300 and $61,600. He suggested that major market players might use the current situation to accumulate liquidity, meaning any initial breakout from the range could be a false move. The analyst expects this sideways movement to persist until the latter part of August. Key factors for determining future market direction include fund flows into Exchange-Traded Funds (ETFs) and trader activity. However, Komalenkov noted a potential negative scenario for the second half of August, where heightened geopolitical tensions or hawkish rhetoric from US monetary authorities could trigger a new decline. In such a case, Bitcoin could fall to a range of $45,000–$50,000 by early autumn, which might form a new base for a potential market recovery later in the season. Separately, a Russian deputy finance minister recently announced that non-qualified investors in Russia will soon be allowed to legally purchase Bitcoin, Ethereum, and popular stablecoins, with an annual limit of 300,000 rubles per intermediary.

cryptonews.ruHace 4 min(s)

Analyst States Bitcoin Remains Within $61-68k Range

cryptonews.ruHace 4 min(s)

Bitmine's Tom Lee Now Owns 4.8% of Ethereum's Total Supply. Is It Worth Buying ETH Now?

Tom Lee, founder of Fundstrat Global Advisors and a staunch cryptocurrency bull, now serves as chairman of Bitmine. Under his guidance, Bitmine has evolved from a bitcoin miner into the world's largest corporate holder of Ethereum, owning 5.81 million ETH tokens (4.8% of the total supply) as of August 10, with a target of reaching 5%. Lee, who correctly advised buying Bitcoin in 2017, is similarly bullish on Ethereum. He began recommending ETH in late 2024 at around $3,400; despite its current price near $1,900, he predicts it could reach $22,000 in the coming years and $62,000-$250,000 long-term. His optimism stems from Ethereum's role as the leading smart contract blockchain. He expects growth from increased stablecoin issuance, tokenized real-world assets (RWA), and the need for AI agents to use neutral, secure blockchains like Ethereum for identity verification and machine-to-machine payments. With a market cap of $226 billion, Ethereum remains much smaller than Bitcoin's $1.26 trillion, suggesting significant room for growth once macroeconomic headwinds ease. While past success doesn't guarantee future results, and ETH is down nearly 60% over the past year, the article argues Ethereum has clearer long-term catalysts than many altcoins. These include growing dApp usage, AI integration, and the potential for approved spot ETFs to attract more investors. The conclusion suggests that while not buying as aggressively as Bitmine, accumulating the world's second-largest cryptocurrency during market pessimism could be a prudent long-term strategy.

cryptonews.ruHace 12 min(s)

Bitmine's Tom Lee Now Owns 4.8% of Ethereum's Total Supply. Is It Worth Buying ETH Now?

cryptonews.ruHace 12 min(s)

Consolidation and Jackson Hole: Trader Assesses Bitcoin and Ethereum Movement Scenarios

**Analysis: Bitcoin and Ethereum Consolidation Ahead of Jackson Hole** Bitcoin (BTC) is consolidating near $63,513, with liquidity accumulating around the $62,484 support level. The primary resistance is an unfilled 4-hour Fair Value Gap (FVG) at $64,000-$65,000. Analysts outline three potential scenarios: A) a rejection from the FVG leading to a cascade down to $60,000-$61,000; B) a bullish breakout above the FVG targeting $65,373 and higher; C) (prioritized) a quick stop-loss hunt below $62,484 followed by a rapid reversal upward into the imbalance. Ethereum (ETH) is similarly stagnant, failing to test $2,000 and remaining within its own 4H FVG. Key resistance is at $1,931.50 (PWH). Scenarios include: A) a genuine breakout and hold above this level; B) a deep liquidity grab below $1,852 followed by a powerful reversal; C) a false breakout above resistance leading to a cascading dump towards $1,780-$1,800. Despite ETF inflows, ETH's price lacks momentum. The US Dollar Index (DXY) broke below key support at 99.475, opening a path toward lower FVGs near 99,000. This weakness, if sustained, could support crypto markets. Key triggers this week are FOMC meeting minutes and preliminary PMI data, with positioning ahead of the Jackson Hole symposium being crucial. The overall sentiment is cautiously positive, but the recommended strategy is to stay out of medium-term positions in major assets until a clear directional move occurs, favoring intraday trading on lower timeframes with strict risk control.

cryptonews.ruHace 13 min(s)

Consolidation and Jackson Hole: Trader Assesses Bitcoin and Ethereum Movement Scenarios

cryptonews.ruHace 13 min(s)

Trading

Spot
活动图片