Research Notes

FLAN and Instruction Tuning

By Satwik ยท February 11, 2026

FLAN (Wei et al., 2021) introduced instruction tuning as a general recipe: take many existing NLP datasets, rephrase each as a natural-language instruction, and fine-tune a large model on this mixture. The finding was that a model tuned to follow instructions on a broad set of tasks generalizes to unseen tasks in zero-shot form, often beating a much larger un-tuned model at following novel instructions.

Why it mattered

FLAN reframed the goal from "learn a task" to "learn to follow instructions," which is closer to how people actually want to use these systems. It showed that the raw capability latent in a pretrained model could be made far more accessible with a modest, well-designed fine-tuning phase. Instruction tuning became a standard stage in the pipeline that produced the assistant-style models of the following years, a precursor to the fuller alignment recipes.

Reading angle

For an alignment-minded reader, instruction tuning is where models start to be shaped toward intended behavior rather than raw imitation. That is progress, but it also concentrates control in the instruction-tuning data: whatever behaviors, and biases, that mixture encodes get amplified into the model's default disposition. Instruction-following also sharpens the prompt-injection concern, a model trained hard to obey instructions will obey adversarial ones too if they reach its context. Read FLAN as the moment the field learned to make models usefully obedient, with all the security implications that obedience carries.