Lesson 1 of 5·10 min read

When Does Fine-Tuning Make Sense?

Fine-tuning is powerful but expensive and complex. In 80% of cases, you'll achieve better results with prompt engineering or RAG — faster and cheaper. This decision tree helps you choose the right strategy.

The Decision Tree

Level 1: Prompt Engineering

Question: Can a better prompt solve the problem?

Try first:

  • System prompts with clear instructions
  • Few-shot examples (3–5 examples in the prompt)
  • Chain-of-thought for complex reasoning tasks
  • Specify output format (JSON, Markdown, table)

If that's enough → Stop. No fine-tuning needed.

Level 2: RAG

Question: Does the model need access to specific knowledge?

RAG is better than fine-tuning for:

  • Current information (data changes regularly)
  • Large knowledge bases (> 100 documents)
  • Traceable sources (citations needed)
  • Access control (different users see different data)

If that's enough → Stop.

Level 3: Fine-Tuning

Fine-tuning is worth it when:

  • The model needs a consistent style/tone (e.g., brand voice)
  • Domain-specific format knowledge is needed (e.g., medical reports)
  • Latency is critical (RAG retrieval too slow)
  • The model should perform a task better than the base model
  • Cost optimization at high volume (smaller FT model instead of large model)

Fine-Tuning vs. Prompting vs. RAG

CriterionPromptingRAGFine-Tuning
Setup timeMinutesDaysWeeks
CostLowMediumHigh
UpdatesInstantHoursDays–weeks
Style adaptation⚠️ Limited❌ No✅ Excellent
Factual knowledge❌ Hallucinations✅ Source-based⚠️ Can become outdated
LatencyLowMediumLow

Real Decision Examples

Use CaseRight StrategyWhy
Customer support botRAGKnowledge base changes, sources needed
Writing brand copyFine-tuningConsistent tone more important than facts
Code reviewsPromptingFew-shot examples usually sufficient
Medical summariesFine-tuning + RAGFormat knowledge AND current data needed

Practical tip: The golden rule: First optimize prompting (1 day), then evaluate RAG (1 week), then consider fine-tuning (1+ months). Each level has a higher ROI threshold.

📝

Quiz

Question 1 of 3

Was sollte man zuerst versuchen, bevor man Fine-Tuning einsetzt?