Fine-Tuning

Machine Learning

Fine-tuning refers to adapting an already pre-trained AI model for specific tasks. It's like retraining an experienced chef from French to Italian cuisine — the fundamental skills are there, but the details are adjusted. Instead of training a model from scratch (which can take months and cost millions), you take an existing model and train it further with new, task-specific data. In full fine-tuning, all weights of the network are updated. Today, however, parameter-efficient methods (PEFT, such as LoRA) dominate: they freeze the base model and train only small, additional adapters across all layers. This saves compute time and data, and reduces the risk of catastrophic forgetting — the model overwriting its existing knowledge. Fine-tuning is the standard method for adapting large language models to specialized applications.

Example

A language model trained on general knowledge becomes a medical expert through fine-tuning with medical texts, without losing its foundational knowledge.

Also known as

Model Adaptation, Post-Training, Model Specialization

Used in

Back to the glossary