Alignment / Regimes
verifiedInstruction Tuning
A pretrained model continues text. Asked a question it may produce more questions, because that is what the training data often did next. Instruction tuning trains on pairs of instruction and good response until the model treats a prompt as something to answer rather than something to extend. The knowledge does not change; the default behaviour does.
Supervised fine-tuning on curated instruction-response pairs, sometimes called SFT. Tiny compared with pretraining — thousands to millions of examples against trillions of tokens — and it generalises to instruction types absent from the set, which is the surprising part. It is the first stage of every post-training pipeline and usually the base a preference method starts from.
Maximise Σ log p sub θ (y | x) over instruction-response pairs (x, y), the same cross-entropy objective as pretraining with a different distribution and a much lower learning rate. Nothing in the objective preserves anything outside that distribution, which is why the mixture matters more than the count.
sft holds 0% of the budget; rest holds the remaining 100%.
Share of total training compute spent on instruction tuning against pretraining. Drag the size to see how small it stays even as it decides how the model behaves.
Reviewed by opendroid · 2026-08-04
- arXiv:2109.01652 — Finetuned Language Models Are Zero-Shot Learners
- arXiv:2203.02155 — Training language models to follow instructions with human feedback