Zenaique
Glossary · Training

Fine-tuning

Also known as: FT, Continued training

Continue training a pre-trained model on task-specific data to specialize its behavior.

Adapting a pre-trained model to a specific task or domain by continuing training on a smaller, curated dataset. Parameter-efficient methods like LoRA modify only a fraction of the weights, reducing cost and catastrophic forgetting.

In practice

The classic "do we fine-tune or RAG?" question shows up in nearly every applied LLM system-design round.

How it compares

Fine-tuning changes weights and is best for new behavior; RAG keeps weights frozen and is best for new knowledge.

LoRA is a parameter-efficient way to fine-tune; full fine-tuning updates every weight.

Comparisons that include Fine-tuning

Related topics

Questions that mention this term

Related terms