Three concrete situations where fine-tuning is the wrong tool
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
Give three concrete situations where fine-tuning is the wrong tool. For each, explain why FT specifically fails and what to reach for instead.
Don't fine-tune when prompting already works, when knowledge changes often, when you have under 500 examples, or when there is no eval to prove it helped.
Fine-tuning is like sending a chef to a months-long cooking school to permanently change how they cook. That makes sense if you want a new style of food forever. But it is the wrong move for some problems. If today's menu changes daily, you do not retrain the chef each morning: you just hand them today's menu, which is retrieval. If the chef already cooks the dish well from a written recipe, retraining is wasted money and might make their other dishes worse. And if you only have three example plates to learn from, the school has nothing solid to teach from. So before retraining, ask: is this really a cooking-habit problem, or just a missing-menu problem?
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: diagnose problem type + knowledge freshness goes to RAG + prompt already works regression trade + under 500 examples floor + missing eval gate + tool access is infrastructure.
| Symptom | Why fine-tuning fails | Reach for instead |
|---|---|---|
| Knowledge updates weekly or faster | Facts freeze in weights at train time and go stale | RAG with a live index, retrieved at query time |
| Few-shot prompt already above 85 percent | Low leverage plus regression risk for a small gain | Prompt iteration, better examples, structured output |
| Under 500 clean training pairs | Run under-converges, often below base plus prompt | In-context learning, or gather and curate more data |
| Need tool or function access | Weights emit a format; they cannot grant access | Agent orchestrator that routes the function calls |
| No held-out evaluation set | Cannot prove a gain or detect a regression | Build the eval set before touching weights |
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 because the problem feels hard, instead of diagnosing whether it is a knowledge, format, or data problem that a cheaper tool solves better.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.