Deforming the Transformer, LLMs Become Smarter

marsbitPublicado em 2026-06-29Última atualização em 2026-06-29

Resumo

A new research paper proposes "Tapered Language Models (TLMs)," a method that improves large language model performance without adding any parameters. It challenges the standard Transformer design where each layer has the same number of parameters ("feed-forward network" width). Building on evidence that layers are not equally important—earlier layers handle foundational information like grammar, while later layers often reinforce existing judgments—the researchers suggest reallocating model capacity from later to earlier layers. The core idea is to make the layer width taper off monotonically from start to end, keeping total parameters and compute constant. Experiments compared linear, cosine, and sigmoid tapering curves on a 440M parameter model. The cosine curve (e.g., starting width 1.5x baseline, ending 0.5x) achieved the best result, reducing perplexity by 1.84 points compared to the uniform baseline—a significant gain at zero cost. This finding proved robust across four different model architectures (including gated attention and memory-augmented models) and at larger scales (760M and 1.3B parameters), consistently improving performance on commonsense reasoning and language modeling tasks without harming long-context retrieval ability. The work highlights a long-overlooked design dimension: optimal parameter allocation across depth. It offers a "free lever" for efficiency, potentially applicable beyond language models to vision Transformers and diffusion models. The...

June 2026, the large model industry is experiencing an unprecedented 'open-source tsunami': NVIDIA released a 550B-parameter hybrid architecture model, Google gifted a new version of the multimodal Gemma, and Zhipu AI fully open-sourced its flagship model under the most permissive license.

Almost all vendors tell the same story: use a Mixture of Experts (MoE) structure to pack in more parameters, use sparser activation to lower costs, and use elastic network widths to match different deployment scenarios.

In other words, the entire industry is desperately researching 'how to cram more parameters into the same compute budget.'

But a new paper from researchers at Mila, Cornell University, and the University of Montreal poses a question in almost the opposite direction: What happens if we don't add a single parameter, but simply 'reposition' the parameters already existing in the model?

Paper Title: Tapered Language Models Paper Link: https://arxiv.org/abs/2606.23670

Background: The Overlooked 'Uniform Treatment'

Since the 2017 paper 'Attention Is All You Need' that pioneered the Transformer, almost all language models share the same skeleton, whether it's the classic Transformer, later gated attention, recurrent memory networks, or even new architectures with 'test-time memory' capabilities. That is: stacking several structurally identical 'layers,' with each layer allocated exactly the same number of parameters.

This is like a chain restaurant where every location, whether downtown or suburban, is equipped with the same number of chefs and kitchen equipment, completely ignoring differences in customer flow. This 'uniform' allocation method is convenient and easy to maintain, but not necessarily optimal.

In recent years, more and more research has pointed out from different angles that model layers are not equally important.

'Early Exit' experiments show that often the model's answer is basically finalized before reaching the last layer;

'Layer Pruning' studies find that cutting out some of the later layers has almost no effect on model performance;

Interpretability research finds that shallow networks capture 'basic information' like grammar, while deep networks handle 'advanced information' like semantics.

In other words, the layers differ vastly from each other, yet parameter allocation remains uniform.

This is precisely the core question raised by the paper: Since the varying importance of layers has long been proven, why should their 'brain capacity' still be evenly distributed?

Moving 'Brain Capacity' Forward

The research team first conducted a simple and crude validation experiment: they divided the layers of a 440M-parameter Transformer model into early, middle, and late groups. Keeping the total parameter count constant, they made the 'Feed-Forward Network' (FFN, the core component of each layer responsible for storing and processing information, which can be understood as the 'working memory capacity' of each layer) of one group wider and the others narrower.

The result was very clear: The 'top-heavy' allocation concentrating capacity in the front segment lowered the model's perplexity (a metric measuring language model prediction accuracy; lower values indicate more accurate predictions) on the validation set from 16.28 to 15.96. Conversely, concentrating capacity in the back segment caused perplexity to soar to 17.29.

With the same total parameters, merely due to different placement, the performance difference was over a full point—a significant gap in language model evaluation.

This finding directed the question to a more granular direction: Instead of using a 'one-size-fits-all' three-segment grouping, could we use a smoother curve to gradually decrease capacity from front to back?

The researchers named this concept 'Tapered Language Models' (TLMs): select any dimension in the model that determines parameter count (e.g., the width of the feed-forward network) and make it monotonically decrease along the depth direction, while ensuring the average width of all layers still equals the original fixed value.

Thus, the total parameter count and computation remain completely unchanged, only the distribution shape changes from a 'rectangle' to a 'wedge.'

The team tried three decreasing curves: linear decrease, cosine decrease, and S-shaped (Sigmoid) decrease.

The differences between these three curves are analogous to three different ways of 'closing up shop':

Linear decrease is like closing at a constant rate, shutting down roughly the same number of counters each period;

S-shaped decrease is like suddenly announcing closure, with most stalls remaining as is, only a small middle segment contracting rapidly;

Cosine decrease lies between the two, transitioning gently at both ends, gradually tightening in the middle. It neither 'cuts losses' abruptly at the ends nor exerts uniform force and misses the area that should contract the most.

Experimental Results: Free 1.84 Points

After scanning combinations of five width ratios and three curves on the 440M-parameter Transformer, cosine decrease emerged as the clear winner: under the optimal configuration (front width 1.5 times baseline, back width 0.5 times baseline), perplexity dropped from the uniform distribution baseline of 16.28 to 14.44, a full improvement of 1.84 points, all without adding a single parameter or an extra floating-point operation.

More crucially, this conclusion isn't just luck for one particular architecture.

The research team ported the exact same configuration (cosine decrease, front/back width ratio 1.5/0.5) to three other structurally distinct architectures: a gated attention model, Hope-attention with 'self-modifying memory' capability, and the Titans architecture with neural long-term memory modules. They then re-validated at two larger scales: 760M and 1.3B parameters.

The result: Across all eight comparison sets of the four architectures and two scales, the 'tapered' models showed improved average accuracy on commonsense reasoning benchmarks and improved perplexity on the LAMBADA language prediction task.

The researchers also conducted additional long-text retrieval tests (Needle-in-a-Haystack), confirming that this redistribution does not sacrifice the model's ability to handle long contexts.

To explain the reasons behind this phenomenon, the team also measured the similarity between the output of each 'Feed-Forward Network' layer in GPT-2 series models and the existing information flow, revealing a clear pattern: The deeper into the model, the more similar the newly written content of each layer is to the existing information. In other words, later layers are more about 'reiterating' existing judgments rather than 'creating' new understandings.

This precisely confirms why moving capacity from the back to the front is reasonable: the front layers can truly utilize this extra 'brain capacity,' while the back layers cannot.

Conclusion

This research essentially proposes a simple yet long-overlooked proposition: a model's capacity should not be a resource uniformly splashed out but should flow to where it's truly needed.

In a 2026 where the entire industry is competing over 'who has more parameters' and 'whose architecture is sparser,' this paper offers an almost zero-cost alternative: no need to change architectures, no need to add parameters, just change the 'shape' of the distribution.

The researchers also frankly state that the current optimal configuration was tuned on a 440M-parameter model. Whether there are 'special recipes' more suitable for different scales and architectures remains an open question.

But more noteworthy is that the paper points out this line of thinking is not limited to language models—Vision Transformers, diffusion models, and multimodal models almost all inherit the same default setting of 'equal distribution per layer.' If the shape of capacity distribution itself is a long-overlooked design dimension, then this 'free lever hidden in plain sight' may have only just been noticed.

Team Introduction

The paper was completed jointly by Reza Bayat from Mila (Montreal Institute for Learning Algorithms), Ali Behrouz from Cornell University, and Aaron Courville, co-founder of Mila and professor at the University of Montreal.

Ali Behrouz is currently a researcher at Google Research and a PhD student at Cornell University. Over the past two years, he has participated in designing several new architectures that have garnered widespread attention, including the Titans architecture capable of 'learning and remembering during test time,' as well as the subsequent Atlas and 'Nested Learning' framework. He has long focused on how to make models utilize and store long-term context information more efficiently.

Aaron Courville is a senior scholar in the deep learning field, a CIFAR AI Chair. He has long collaborated with Yoshua Bengio in promoting fundamental deep learning research, with deep expertise in representation learning and generative models. He is also one of the authors of Generative Adversarial Networks (GANs) and co-authored the classic book 'Deep Learning' with Ian Goodfellow and Bengio.

This article is from WeChat Official Account 'Jiqizhixin' (ID: almosthuman2014), author: Following AI

Perguntas relacionadas

QWhat is the core concept of 'Tapered Language Models (TLMs)' proposed in the research?

ATapered Language Models (TLMs) propose a non-uniform parameter allocation strategy for transformer layers. Instead of giving each layer an equal number of parameters, TLMs allocate more capacity (e.g., a wider feed-forward network) to the earlier layers and gradually decrease it towards the later layers, forming a wedge-shaped or tapered distribution, while keeping the total number of parameters and computational cost unchanged.

QAccording to the article, what was the key experimental finding that demonstrated the effectiveness of moving capacity to earlier layers?

AIn a key experiment, researchers redistributed parameters in a 440M parameter Transformer by widening the Feed-Forward Network (FFN) of early layers and narrowing the later ones, while keeping the total constant. This 'head-heavy' configuration lowered the model's perplexity from 16.28 to 15.96. Conversely, concentrating capacity in the later layers worsened perplexity to 17.29, showing that earlier layers benefit more from extra parameters.

QWhich decreasing curve (linear, cosine, or sigmoid) performed best in the TLM experiments and what was the resulting performance improvement?

AThe cosine decreasing curve performed best in the TLM experiments. In the optimal configuration for a 440M parameter model (early layers 1.5x wider, later layers 0.5x narrower), it reduced perplexity from the uniform baseline of 16.28 to 14.44, achieving an improvement of 1.84 points without adding any parameters or computations.

QWhat underlying reason does the research suggest for why later layers need fewer parameters?

AThe research suggests that later layers in a transformer tend to produce outputs that are more similar to the existing information flow, meaning they are often 'reiterating' or 'emphasizing' earlier judgments rather than 'creating' fundamentally new understandings. Since they perform less novel computation, they require less parameter capacity compared to the earlier layers which handle more foundational processing.

QWho are the main authors of this research paper on Tapered Language Models?

AThe main authors are Reza Bayat from Mila, Ali Behrouz from Cornell University (and Google Research), and Aaron Courville, a professor at the University of Montreal and a co-founder of Mila. Aaron Courville is also a co-author of the seminal book 'Deep Learning' and a contributor to Generative Adversarial Networks (GANs).

Leituras Relacionadas

AI Agent Claude Led a Store to Losses and Fired a Human

The AI agent Claude, developed by Anthropic, served as the manager of a real retail store, Andon Market in San Francisco, during an experiment by startup Andon Labs. The experiment aimed to test if a large language model could manage a business, including personnel and financial decisions. Claude ultimately recommended firing an employee for repeated lateness (17 out of 23 shifts), marking a documented case of an AI making such a personnel decision. However, the process revealed significant limitations. Claude initially failed to notice the lateness pattern because company guidelines vanished from its limited working memory, showing it can "forget" crucial information. Furthermore, the AI was generally overly lenient, even telling employees not to worry about being late. The final decision to terminate was not autonomous; a human manager had to prompt Claude to review the guidelines and, after Claude initially suggested a warning, explicitly pointed out that previous talks had failed, effectively guiding the AI to the dismissal recommendation. Financially, the store's funds dropped from about $100,000 to roughly $61,186 over five months, partly attributed to Claude's soft management and questionable business choices. An employee described working under AI management as a nauseating experience, driven by necessity, and expressed hope that AIs don't become human bosses. The experiment concludes that while AI can execute managerial actions, it currently acts more as a tool requiring significant human oversight and prompting rather than a full replacement for a human leader, though the line between assistant and manager is blurring. The case aligns with previous tests showing Claude's systemic leniency and difficulty maintaining business rules without constant human cues, highlighting architectural limits like constrained context windows rather than true "forgetfulness."

cryptonews.ruHá 3m

AI Agent Claude Led a Store to Losses and Fired a Human

cryptonews.ruHá 3m

Washington Bans Kalshi from Offering Contracts on Sports, Elections, and Technology

The Washington State Supreme Court has prohibited the crypto-based event betting platform Kalshi from offering a wide range of event contracts to state residents, including those related to sports, elections, politics, entertainment, culture, technology, and science. Judge John McHale rejected Kalshi's argument that federal commodity market law preempts state gambling regulations. The ruling allows contracts tied to commodities, climate, economics, and financial metrics to continue but mandates Kalshi to implement geofencing measures by specific deadlines to block Washington users from accessing banned contracts. State Attorney General Nick Brown stated the action holds Kalshi accountable for operating illegal gambling. Kalshi contends that the Commodity Futures Trading Commission (CFTC) has exclusive jurisdiction over its business. The court found the state presented sufficient grounds for its case under three state laws and that federal law does not override Washington's gambling statute. This decision reinforces a distinction: financial/commodity-based contracts remain permissible, while those on political, sports, or cultural events fall under state gambling law. The outcome depends on Kalshi's pending appeal and similar legal battles in other states, highlighting the ongoing conflict between federal derivatives regulation and state-level gambling enforcement.

cryptonews.ruHá 7m

Washington Bans Kalshi from Offering Contracts on Sports, Elections, and Technology

cryptonews.ruHá 7m

Trading

Spot
活动图片