PromptForge
AI Glossary

Models & architecture

Fine-tuning

Also known as: finetuning, fine tune

Definition

Fine-tuning continues training a pre-trained model on your own examples to specialise its behaviour. It is the right tool for teaching consistent style, format or classification behaviour — not for adding knowledge.

Fine-tuning adjusts model weights using a dataset of input-output pairs. Parameter-efficient methods such as LoRA modify only a small subset of weights, making it dramatically cheaper than full fine-tuning while capturing most of the benefit.

The most common mistake is fine-tuning to add facts. It works poorly and unpredictably — the model may learn the phrasing of your documents without reliably learning their content. Use retrieval for knowledge; use fine-tuning for behaviour.

Before fine-tuning, exhaust prompting. A well-constructed few-shot prompt often matches fine-tuned performance with none of the data-collection or maintenance burden. Fine-tuning earns its cost when you need consistency at high volume, or when the prompt overhead of examples becomes expensive.

Related terms

Put this into practice

Understanding the term is step one. Our free courses and tools let you actually use it.