Training Methods LLM Intermediate

Fine-Tuning

Nudging a trained model further with new data

Key points
  • Fine-tuning nudges a model that's already finished training a bit further with new data. It doesn't start teaching from zero.
  • What gets touched spans the entire model. Every internal value shifts a little. The result is a genuinely new model, distinct from the original.
  • The trick is moving in tiny steps. Move too far and the skills the model already had come apart.
  • It's best suited to tone, format, and the feel of a domain. It's a poor fit for stuffing in knowledge that wasn't there before.
  • It's one specific method under the broader umbrella of transfer learning. There's also a lighter method that leaves the main body untouched.
Contents

1The analogy

Say you buy a suit off the rack. The shoulders and sleeve length are roughly right, but something hangs loose. A tailor doesn't build the suit from scratch — no cutting new fabric, no drafting a new pattern. They pick out a few stitches, take the shoulders in by an inch, fold and stitch the sleeves twice, and nip in the waist a touch. The sewing machine only passes over small stretches, and the suit's underlying structure stays exactly as it was. But the spots that get touched are scattered across the whole garment — take in the shoulders and the sleeves go crooked unless they shift a little too. Get greedy and rip out too much, and the suit's original shape falls apart, sometimes past the point of fixing. Fine-tuning is taking a finished garment and adjusting it, a little at a time across the whole thing, while keeping its bones intact.

2In detail

It doesn't start from scratch

Training a large model from zero is like buying fabric and drafting a pattern from nothing — the data, time, and money involved are well beyond what any individual can manage. Fine-tuning skips that stage entirely. It's the equivalent of buying a suit that's already been made.

That's why the data it needs drops sharply. A few hundred to a few thousand well-made examples can noticeably change the result. It often wraps up in a few hours to a day — an entirely different order of magnitude from building a large model from the ground up.

A little at a time, and no more

What matters in tailoring is how little you move at once. Fine-tuning is the same. The dial that controls how far a value shifts in one step gets set very small — much smaller than during the original training.

Set it large and everything skews hard toward the new data alone. That's also why training usually stops after just a few passes. Run the same data around too many times, and the model memorizes those examples outright — and starts giving strangely stiff answers to anything even slightly different.

What it can actually teach

What fine-tuning is good at is format, tone, and feel. Getting it to always answer in the same structure, matching a company's house style, handling the vocabulary of a specific field naturally — that's its territory. In tailoring terms, it's adjusting the fit and length to a particular body.

It's a poor fit for stuffing in new knowledge. Fine-tune a model to memorize hundreds of pages of internal policy, and it tends to make up plausible-sounding approximations instead. That kind of job is handled more reliably by fetching the actual document and handing it over on the spot. It's the same reason a tailor can't change what's in your pocket.

Touch it too much, and the suit falls apart

Tune too long on new data and the model forgets what it used to be good at. Teach it nothing but legal phrasing for a few rounds, and casual conversation turns stiff, and it starts fumbling simple math. This is called catastrophic forgetting.

In tailoring terms, it's cinching the waist so tight the arms can't move. That's why a bit of the model's original strengths gets mixed back in alongside the new data, and why performance gets measured on the same yardstick before and after, to check nothing important was lost. The original model usually gets kept around too, since unlike a suit, a model can be preserved exactly as it was.

Rework the whole thing, or just add a patch

Fine-tuning shifts every internal value across the whole model a little. That's exactly why it works so well, but once it's done, it leaves behind a brand-new model the same size as the original. Ten different uses means ten full-sized models piling up.

That's why a method that leaves the main body untouched and trains only a small add-on has caught on widely. The add-on is light enough to swap in and out as needed. When there's plenty of data and every last bit of performance matters, retuning the whole thing is still the choice people make.

3More precisely

Fine-tuning takes the parameters of a pretrained model as its starting point, runs further training on data from the target task, and updates every parameter across the board. A small learning rate and a small number of passes are typical.

The analogy breaks down in places. A garment only changes where the stitches were pulled, but fine-tuning shifts internal values across the model as a whole rather than at some visible, specific spot — making it hard for a person to point to exactly where or how much changed, or why one answer came out differently than before. And where alterations to a real garment are hard to undo, a model's original file stays intact, so it can always be restored to its starting state with nothing lost. Several stages with different goals — one that tunes toward human preference scores, another that tunes the model to follow instructions — also get lumped together under the single name "fine-tuning," even though the data and the objective driving each stage differ quite a bit. Which stage a mention is actually pointing to often has to be worked out from context.

4Try it yourself

5Common misconceptions

  • It's easy to think fine-tuning makes a model memorize new knowledge, but actually it leans much closer to shifting tone. If facts need to be accurate, fetching and attaching the actual document works better.

  • It's easy to think more data is always better, but actually a few hundred well-curated examples often beat tens of thousands of messy ones.

  • It's easy to think a model's original skills stay intact after one round of tuning, but actually it can lose ground it used to hold, which is why before-and-after performance needs checking on the same yardstick.

7One-line summary

In shortFine-tuning keeps a finished model's bones in place while shifting every internal value a little, refitting it to whatever result is actually wanted.

Spotted an error or have a better analogy? Suggest an edit · Last updated2026-09-02