Sistava

What is Fine-tuning?

Also called model adaptation.

Fine-tuning continues training an already-trained model on a smaller, targeted dataset so it performs better on a specific task, domain, or format. It changes the model's parameters, which distinguishes it from prompting. Typical uses include enforcing a house style, matching a rigid output schema, or teaching specialized terminology that appears rarely in general training data.

Full fine-tuning updates every parameter and requires memory comparable to training the model in the first place. Parameter-efficient methods, of which low-rank adaptation is the best known, instead freeze the original weights and train a small set of additional ones. These adapters are a tiny fraction of the size, cost far less to train, and can be swapped per customer or per task.

Fine-tuning reliably teaches behavior and format. It is much less reliable for teaching facts, because new information competes with everything absorbed during pre-training and may be recalled inconsistently or blended with older material. For knowledge that changes over time or must be cited to a source, retrieving documents into the prompt is usually the better approach.

Data quality dominates outcomes far more than data volume. A few hundred carefully curated, mutually consistent examples generally outperform tens of thousands of noisy ones, and contradictory examples teach contradiction. Fine-tuning can also degrade abilities outside the target task, an effect known as catastrophic forgetting, so evaluating on general tasks after training is a necessary step.

Cost extends well past the training run itself. A fine-tuned model must be hosted, evaluated, and recreated whenever the underlying base is upgraded, which happens often. Teams commonly start with careful prompting and retrieval, measure the result, and fine-tune only when a specific measured gap remains that prompting has demonstrably failed to close.

Key points

In practice

A support team needs every reply to open with an apology, cite a policy number, and end with a ticket reference. Prompting gets this right most of the time but drifts on long conversations. The team collects eight hundred approved replies and fine-tunes a smaller model on them. The format becomes consistent, the prompt gets shorter, and each request consumes fewer tokens.

Related terms

Back to the AI Glossary