179 questions
No questions match those filters.
What is the difference between Pretraining, Fine-tuning...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansThese three sit on a clear ladder. Pretraining is the base of it: a model learns general language patterns from a huge, largely unlabeled corpus of text, at a cost measured in the tens of millions of dollars and months of compute — something only a few labs in the world actually do. Instruction tuning comes next and is what turns that raw, next-token-predicting base model into something that reliably follows a human instruction and responds helpfully; it’s the step that makes a base model usable as a chat assistant at all.
Fine-tuning is the layer most engineers actually work in: taking an already instruction-tuned model and teaching it a narrow, business-specific skill on top of the general instruction-following it already has — a support tone, a medical vocabulary, a legal drafting style. The practical implication is that pretraining almost never appears in a day-to-day engineering job; the work starts from an instruction-tuned checkpoint someone else built.
Meta pretrains a base model on trillions of tokens of web text, then instruction-tunes it into a general assistant. A hospital takes that instruction-tuned model and fine-tunes it further on tens of thousands of doctor-patient transcripts to get something specialized for their domain — they never touch the pretraining step at all, because it isn’t theirs to touch.