← AI glossary

Definition

Fine-Tuning

Fine-tuning adapts an existing AI model on task-specific examples so it behaves better for a defined use case.

Also known as: model fine-tuning, finetuning

Short definition

Fine-tuning is the process of taking a pretrained model and training it further on a smaller, more specific dataset. The goal is to improve behavior for a domain, format, tone or task that generic prompting does not handle well enough.

How it works

Teams prepare high-quality examples, train the model for additional steps and evaluate whether the adapted model improves over the base model. Fine-tuning changes model behavior more deeply than a prompt, so mistakes in the training data can become persistent.

Example

A company might fine-tune a model to classify support tickets using its own internal categories and writing conventions. This can make outputs more consistent than asking a general model through prompts alone.

Why it matters

Fine-tuning can improve consistency, reduce prompt length and specialize a model. It is not always necessary: retrieval, better prompts or structured rules are often simpler. The decision should be based on measured performance, not hype.

When fine-tuning is appropriate

It is most useful when a model must produce a stable format, recognize internal classes or follow a consistent style and prompting remains unreliable. Fine-tuning is usually a poor way to keep changing facts current. Retrieval is better suited to knowledge that changes every week.

A sound evaluation process

Training examples should be correct, representative and include difficult cases. The resulting model must be compared with the base model on a separate test set. Measure safety and regressions as well as average quality. A dataset can successfully teach a tone or format while quietly reducing robustness outside the narrow training distribution.