Three concrete situations where fine-tuning is the wrong tool
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?
Detailed answer & concept explanation~8 min readEverything 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. 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.
- Perplexity answers fresh web questions through retrieval over live results, not by retraining a model on the day's news, because weights would be stale within hours.
- OpenAI's fine-tuning guide explicitly recommends maxing out prompt engineering and few-shot examples before fine-tuning GPT-5.5 class models.
- Teams adopting structured-output and JSON-schema modes on Claude Opus 4.7 and Gemini 3.1 Pro get format adherence with zero training, sidestepping a fine-tune.
- The LIMA study showed 1000 curated examples can rival large noisy sets, but most low-data teams fall well under that floor and do better with in-context learning.
- Enterprises under data-residency rules keep customer records in a Pinecone or Weaviate index for RAG rather than baking them into a Llama 4 fine-tune.
What an interviewer would ask next. Try answering before peeking at the approach.
QThe LIMA paper says 1000 curated examples beat large noisy sets, so why is under 500 a hard no?
QIf structured output mode fixes JSON adherence, when is fine-tuning the format ever justified?
Don't say thisRed flags and common mistakes that signal junior thinking. Click to expand.
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.
Same topic, related formats. Practice these next.