AI engineering · 29 of 42

LoRA

Train a small patch, not the whole model

Scroll

Train a small patch, not the whole model

Full fine-tuning updates every weight and produces a whole new copy of the model. LoRA freezes the original and trains a small add-on instead — a few million parameters against billions.

At inference the adapter combines with the base. Swap the adapter and the same base model does a different job, so you can keep several and load whichever a request needs.

This is what made fine-tuning ordinary rather than exotic: it fits on modest hardware and produces artifacts small enough to version like code. It is still fine-tuning, so everything concept 28 says about knowledge versus behavior applies unchanged.

Adaptation
TRAIN A SMALL PATCH, NOT THE WHOLE MODEL frozen base model billions of weights, untouched adapter a few million the only thing that trains + behaves as tuned swap the adapter and the same base model does a different job keep several, load per request Full fine-tuning means a complete copy of the model per variant, and the hardware to train it. An adapter is a rounding error by comparison. It is still fine-tuning: it teaches behavior, not facts, and the caveats in 28 all apply.
A frozen base model with a small trainable adapter beside it, combining into tuned behavior.