
Diminishing Returns, Data Exhaustion, and the Hard Technical Limits of Neural Scaling
Scaling laws predict how AI models improve with compute, but power-law exponents guarantee diminishing returns. Learn where the ceilings are — and why.
This theme is curated by our AI council — see how it works.
LLM training is the staged process that turns raw internet text into a model that follows instructions: a massive pre-training pass teaches language itself, fine-tuning adapts the result to a task or domain, and preference-based alignment shapes how it behaves. The theme spans that whole ladder — data curation, scaling laws, adaptation methods, and the reward models that steer alignment — and this page maps the reading order through it.
You will probably never pre-train a model — but every model you call was shaped by these stages, and their fingerprints show up in your product: what the model knows and when its knowledge stops (pre-training), why a small fine-tune can beat a bigger base model (adaptation), and why it refuses some requests while over-complying with others (alignment). Understanding the ladder turns “the model is being weird” from a mystery into a diagnosis: you can ask which training stage produced a behavior, and which lever — prompting, fine-tuning, or a different base model — actually addresses it.

Two concepts explain why every modern LLM looks the way it does, and neither requires touching a GPU to understand.
The first is pre-training itself: the unsupervised phase where a model learns language by predicting the next token across trillions of words. What pre-training is and how LLMs learn language from raw text at scale is the single best first read in this theme, because every later stage — fine-tuning, alignment, everything — edits a model this phase created. When you want to see the machinery, from data curation to checkpoints walks the pipeline stage by stage; and for the honest ceiling, scaling walls, data exhaustion, and the technical limits of pre-training explains why the era of “just add more text” is closing.
The second foundation is the math that decides how big those runs get. Scaling laws are the empirical curves that predict model performance from parameters, data, and compute — how power-law curves predict LLM performance is the orientation read, and diminishing returns and the hard limits of neural scaling covers where the curves bend. If your team ever weighs training or fine-tuning budgets, the Chinchilla-optimal ratios guide turns the theory into decisions, and DeepSeek-v3, OpenAI o3, and the data wall shows how frontier labs are responding as the classic curves flatten.
With these two, every headline about a new model’s parameter count or token budget becomes legible — and the next tier, where developers actually get their hands on the process, makes far more sense.
This is the layer where a developer’s decisions live: you will never own a pre-training run, but you may well own a fine-tune — and you already live with the consequences of alignment every time you call an API.
Fine-tuning adapts a pre-trained model to your task by continuing training on a curated dataset. Start with how gradient updates adapt pre-trained LLMs to specific tasks for the mental model, then read LoRA vs. QLoRA vs. full fine-tuning — the decision read that determines whether you need a data center or a single GPU. When you are ready to build, the Hugging Face PEFT, Unsloth, and Axolotl guide covers the current tooling; and before you ship, catastrophic forgetting and overfitting names the failure modes that surface only after deployment.
Fine-tuning teaches a model what to do; RLHF — reinforcement learning from human feedback — shapes how it behaves. How human preferences train LLMs to follow instructions is the entry point, and from reward modeling to KL penalties walks every stage of the pipeline; hands-on readers can train a model with OpenRLHF and TRL. The technique has sharp edges — reward hacking, mode collapse, and the unsolved limits of RLHF explains why aligned models still misbehave — and a human cost that rarely makes the changelog: the hidden human cost of RLHF alignment.
Everything above treats the reward signal as a given. The last tier opens that box.
The most consequential — and least visible — component of the alignment stack is the model that scores the model. A reward model is trained on human preference pairs to grade LLM outputs, and it becomes the optimization target for the whole RLHF loop: whatever the reward model prefers, the LLM learns to produce. How Bradley-Terry scoring shapes LLM alignment is the orientation read; from loss functions to reward hacking lists what you should already know and where these models break. Builders can train and evaluate a reward model with OpenRLHF, TRL, and RewardBench 2, and the reward model race in 2026 tracks how the field is pivoting toward LM-as-a-judge designs. Whose preferences those models encode is not a technicality — whose preferences count traces how reward-model bias decides what LLMs refuse to say.
The confusion that costs teams the most is treating the three training stages as variations of one thing. They answer different questions, consume different data, and fail differently.
| Pre-training | Fine-tuning | RLHF | |
|---|---|---|---|
| What it teaches | Language and world knowledge from raw text | Task or domain behavior from curated examples | Preference and behavior from human judgments |
| Data it consumes | Trillions of tokens of unlabeled text | Curated labeled examples | Human preference comparisons, scored by a reward model |
| Who runs it | Frontier labs and large open-source efforts | Any team with a GPU budget | Labs and platforms; increasingly accessible via DPO-style methods |
| Main failure mode | Data exhaustion, memorized bias | Catastrophic forgetting, overfitting | Reward hacking, mode collapse |
Three finer distinctions trip people just as often:
Q: Where should I start learning LLM training as a software developer? A: Read the two foundations first — pre-training explains what a base model is, and scaling laws explain why it is the size it is. Only then move to fine-tuning and RLHF, which are edits to that base and make little sense without it.
Q: Do I need to fine-tune, or is prompting enough? A: Prompt first; fine-tune when prompting plateaus on a well-defined task with examples you can collect. Fine-tuning buys consistency of format and domain behavior, not new knowledge — what fine-tuning actually changes draws that line before you spend the budget.
Q: What should I read before attempting an RLHF run? A: The whole core tier, then the reward-model prerequisites — the loop optimizes against a learned scorer, so a weak reward model quietly corrupts everything downstream. From loss functions to reward hacking lists what to have in place first.
Q: Why did my fine-tuned model get worse at things it used to do? A: That is catastrophic forgetting: gradient updates on your narrow dataset overwrote broader capabilities. It is the most common surprise in first fine-tunes, and the hard technical limits of LLM fine-tuning covers how to detect it and which mitigations actually help.
Q: Is the data wall real, and does it change what I should build on? A: The limit is real enough that frontier labs are redesigning around it — synthetic data, heavier curation, and post-training gains instead of ever-larger corpora. Scaling walls and data exhaustion separates the evidence from the hype so you can judge the trajectory yourself.
Q: Who actually decides how an aligned model behaves? A: In practice, the annotators and the reward model that aggregates their preferences — their biases become the model’s refusals and defaults. Whose preferences count follows that chain from annotation guidelines to what the model will not say.
Coming from software engineering? Bridge articles map this theme onto what you already know — which of your instincts still apply, which quietly break, and where to dive deeper once you're oriented.
Fine-tuning takes a pre-trained large language model and trains it further on a smaller, task-specific dataset so it …
Pre-training is the foundational phase where a large language model learns language patterns from massive text corpora …
A reward model is a neural network trained on human preference comparisons to score language model outputs by quality. …
Reinforcement Learning from Human Feedback (RLHF) is an alignment technique that fine-tunes large language models using …
Scaling laws are empirical relationships that predict how large language model performance changes as you increase model …
MONA's articles build your mental model — how things work, why they work that way, and what intuition to develop.
Updated Mar 26, 2026
Concepts covered

Scaling laws predict how AI models improve with compute, but power-law exponents guarantee diminishing returns. Learn where the ceilings are — and why.

Scaling laws predict LLM performance from model size, data, and compute via power-law curves. Learn the math behind Kaplan, Chinchilla, and Densing Law.

Pre-training pipelines run from data curation to checkpointing. Learn how FineWeb, Dolma, and Megatron-Core build the foundation every LLM depends on.

Pre-training compute grows 4-5x yearly while data runs out. Learn the three scaling walls — cost, data exhaustion, and diminishing returns — reshaping AI in 2026.

Pre-training teaches LLMs to predict text, not understand it — yet prediction at scale produces something that resembles comprehension. Here's the mechanism.

RLHF aligns language models through human preferences in three stages. Learn how reward models, PPO, and KL penalties interact to prevent reward hacking.

Reward hacking, mode collapse, and KL divergence failure — the three unsolved technical limits of RLHF alignment and why they resist simple fixes.

RLHF uses human preferences and reward models to train language models to follow instructions. Learn the three-stage PPO pipeline, why it works, and what replaced it.

Fine-tuning can destroy what your LLM already knows. Learn why catastrophic forgetting and overfitting define the hard technical limits of model adaptation.

LoRA, QLoRA, and full fine-tuning each change different parts of an LLM. Learn which method fits your GPU budget, data size, and quality requirements.

Fine-tuning adapts pre-trained LLMs by updating weights on task-specific data. Learn how gradient descent reshapes model behavior without starting from scratch.

Reward models compress human preference into a scalar signal. Learn the Bradley-Terry math, the RLHF pipeline, and why overoptimization makes outputs worse.

Reward models turn human preferences into scores that guide LLM alignment. Learn how Bradley-Terry scoring and pairwise comparisons drive RLHF training.