惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
Recent Announcements
Recent Announcements
V
Visual Studio Blog
博客园 - 叶小钗
H
Help Net Security
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
U
Unit 42
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
WordPress大学
WordPress大学
D
DataBreaches.Net
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
A
About on SuperTechFans
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
Microsoft Azure Blog
Microsoft Azure Blog
M
MIT News - Artificial intelligence

The Decoder

Google files first joint lawsuit with FBI over Chinese AI scam network, OpenAI blocks PRC influence clusters The AI industry's platform trap is starting to look a lot like Microsoft's OpenAI buys Ona to push Codex toward long-running, autonomous coding tasks Jeff Bezos' AI startup Prometheus closes $12 billion round at a $41 billion valuation Free Deezer tool lets users on any streaming service check their playlists for AI music OpenAI vs. Anthropic: A price war over API tokens is brewing Dario Amodei's new essay reads like a Cold War playbook for the AI age Claude Fable 5: Anthropic admits "wrong tradeoff" after invisibly throttling rival AI researchers Google's new open model DiffusionGemma generates text from noise instead of word by word OpenAI's IPO slips as Altman tells staff to expect a public offering "within the next year" Anthropic study shows AI needs hours, not weeks, to build exploits from security patches OpenAI wants its biggest data center yet, and Nvidia would back the bill Claude Fable 5: The first Mythos model is powerful, expensive, and heavily filtered Germany's National Security Council greenights an AI Safety Institute modeled after the UK's AISI Google's NotebookLM now runs its own cloud computer with code execution and agent-based research Anthropic releases Claude Fable 5 and Mythos 5 with major gains in coding and science Google's Gemini 3.5 Live Translate delivers real-time voice translation across 70+ languages SpaceX wants to put data centers in orbit, and Musk says it's no big deal Landmark German ruling declares Google's AI Overviews are Google's own words and makes it liable for false answers Beijing's $295 billion AI buildout would require 80 percent domestic chips, locking out US suppliers Apple Intelligence gets a second shot with help from Google and Nvidia OpenAI now says "entirely automating everything is not the future we want" OpenAI says going public is "a complicated set of tradeoffs" and is unsure about the timing Microsoft Research's Lens proves detailed captions matter more than raw scale for training efficient image generators Intel gets a second life as Google and Nvidia explore it as a TSMC backup for AI chips Most companies are flying blind on AI spending Frontier Radar #3: How agentic AI is turning tokens into a business metric Instagram AI chatbot breach may have affected over to 20,000 accounts, Meta discloses Microsoft tightens rules for conflict zones after investigation into Israel's military use of Azure Moonshot AI targets a $30 billion valuation, more than six times its late-2025 worth
Researchers pinpoint why larger language models pick up s...
Jonathan Kemper · 2026-06-07 · via The Decoder

Image description

Nano Banana Pro prompted by THE DECODER

A new study suggests that instead of endlessly inflating models, it may be more efficient to increase the frequency of specific tasks in training data to anchor rare skills in smaller models.

A new study from researchers at Anthropic, Stanford, and other institutions explains why larger language models learn certain tasks that smaller ones fail at. The finding goes beyond the conventional wisdom that big models simply learn faster.

In some cases, small models can't reliably learn rare tasks even with extremely long training runs. Even well-known scaling laws show that a small model never reaches the loss of a large one, no matter how much data you throw at it.

Four heatmaps showing training loss and test accuracy for OLMo models from 4M to 4B parameters at decreasing task frequency. Orange fields mark successfully learned tasks, which appear almost exclusively in the larger models at higher frequencies. | Image: Huang et al.
Only the larger OLMo models learn the rarely interspersed tasks reliably, as can be seen from the orange-colored fields at the bottom right of both tasks. | Image: Huang et al.

Common tasks crowd out rare ones

To isolate the mechanism, the researchers tested a mix of tasks with varying frequency and complexity. A model with N neurons gets assigned the N "most useful" features, where usefulness is based on how often a task appears and how important it is. Frequent, simple tasks get priority. Rare, complex ones get dropped. In the experiments, only models that were large enough learned tasks that made up just 0.25 percent of the training data.

]Left: a heatmap showing tasks sorted by frequency across model width N. Right: three scatter plots where observed loss tracks predicted loss along the diagonal. A model with N neurons assigns the N most useful features, while larger models also pick up rarer tasks further down the list. | Image: Huang et al.
A model with N neurons assigns the N most useful features, while larger models also pick up rarer tasks further down the list. | Image: Huang et al.

The core of the paper is its explanation of why size helps. As long as frequent tasks aren't well-learned yet, they pull the model strongly in their direction at every training step, overwriting much of what the model picked up about rare tasks. Once a large model has mostly mastered the frequent tasks, that pull fades. The freed-up capacity goes to rare tasks, and learned signals are more likely to stick.

Small models rarely reach that point, according to the study. They fall into an "update-and-forget" loop. A rare example gets briefly learned, then largely erased by the next training steps on frequent tasks. When the next rare example shows up, the model starts over from scratch.

One experiment was designed to cleanly separate this effect. The total frequency of a rare task stays constant, but the gap between individual observations varies. The larger the gap, the more the signal decays in narrow models. Wide models hold onto it better between observations and build on it.

Real language models show the same pattern

To test the theory during pre-training, the team trained OLMo models ranging from 4 million to 4 billion parameters on up to 210 billion tokens from the Dolma corpus. They mixed two artificial tasks into the data, a number comparison and a modular addition, with frequencies ranging from about 1,000 instances per batch down to one instance every ten batches.

Three line charts showing gradient cosine similarity for 20M, 300M, and 1B models. In the middle row, all models get the same clear signal (the peaks) where the task appears. In the bottom row, the difference is stark: in the small 20M model (purple), the rest of the language training constantly pushes in random directions and disrupts the signal. In the larger models (300M and 1B), the line stays near zero, leaving the signal intact. | Image: Huang et al.
In the middle row, all models get the same clear signal (the peaks) where the task appears. In the bottom row, the difference is stark: in the small 20M model (purple), the rest of the language training constantly pushes in random directions and disrupts the signal. In the larger models (300M and 1B), the line stays near zero, leaving the signal intact. | Image: Huang et al.

Only the larger OLMo models picked up the rare tasks by learning the rule behind them and applying it to new cases, rather than just memorizing individual examples.

This was especially clear with modular addition, where the researchers observed what's known as grokking. A model memorizes a task first, then suddenly clicks on the actual principle after more training. Only the bigger models hit that moment, and only when the task showed up often enough in the data.

A look inside the models tells the same story. In the one-billion-parameter model, every training step that included the rare task pushed clearly toward the right answer. In the 20-million-parameter model, that signal drowned in noise from everything else. Almost no real learning took place.

Memorization turns out to be a stepping stone

The study treats memorization as a prerequisite for generalization, rather than an unwanted side effect. A model needs to hold onto individual observations long enough for a broader pattern to take shape across many batches.

This offers a practical alternative to just making models bigger. Instead of scaling up the model, the frequency of a target task in the training data can be increased to anchor a specific skill, the research suggests.

There's more than one theory for why model size helps. In May, an MIT team tied scaling laws to model geometry, where models store more concepts through superposition than their dimensions should allow.

This new study starts from a different angle, focusing on what a model can actually learn from a given data mix during training. The older debate about whether abilities truly "emerge" in sudden jumps past a certain size, or whether that's partly a measurement artifact, is still playing out.

AI News Without the Hype – Curated by Humans

Subscribe to THE DECODER for ad-free reading, a weekly AI newsletter, our exclusive "AI Radar" frontier report six times a year, full archive access, and access to our comment section.

Subscribe now

  • Access to all THE DECODER articles.
  • Read without distractions – no Google ads.
  • Access to comments and community discussions.
  • Weekly AI newsletter.
  • 6 times a year: “AI Radar” – deep dives on key AI topics.
  • Up to 25 % off on KI Pro online events.
  • Access to our full ten-year archive.
  • Get the latest AI news from The Decoder.

Subscribe to The Decoder