Which of these are valid reasons NOT to fine-tune?
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
Skip fine-tuning when prompting or RAG already suffices, when knowledge changes often, when data is scarce, when you lack an eval harness, or when the base is already strong enough.
Fine-tuning is like sending an employee to an expensive multi-week training course. It permanently rewires how they work. You only do that when cheaper options have failed. If a sticky note on their desk fixes the problem, you write the note instead of booking the course. If the facts they need change every day, a note works but the course goes out of date instantly. If you have only three examples to train on, the course teaches the wrong habits. And if you cannot test whether the course actually helped, you have no way to know if you wasted the money. So before booking, you ask: would a note, a folder of references, or the employee's existing skills already do the job?
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example.
Everything important, quickly.
4 min: escalation ladder framing + redundancy disqualifiers + missing-prerequisite disqualifiers + wrong-tool disqualifiers + the volume trap + eval harness as precondition.
| Situation | Reach for instead | Why not fine-tune |
|---|---|---|
| Knowledge updates daily | RAG over a live index | Weights go stale the moment data changes |
| Fewer than ~500 clean examples | Few-shot prompting | Training overfits instead of generalising |
| Prompt already clears the golden bar | Keep the prompt | Marginal lift, real regression risk |
| Need strict JSON output | Structured-output or constrained decoding | Format is decoding, not a weight edit |
| Need database or tool access | Tool-calling and orchestration | Access is infrastructure, not weights |
| High request volume | Maybe distillation for cost | Volume is not a quality gap |
Real products, models, and research that use this idea.
What an interviewer would ask next. Try answering before peeking at the approach.
Red flags and common mistakes that signal junior thinking. Click to expand.
Reaching for fine-tuning as the default lever. It is the expensive last resort. Prompting, RAG, and structured-output modes solve most problems first, and without an eval you cannot even tell if the fine-tune helped.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.