EasyDeepLearn

Fine-tuning vs linear probe vs prompt-tuning — when do you use each?

medium

Answer

  • (1) Linear probe: small labeled data + strong SSL encoder → freeze encoder, add linear head.
  • Fast, tiny compute.
  • (2) Fine-tuning: enough labeled data + task shift → unfreeze last k layers or full network.
  • (3) LoRA / adapters: parameter-efficient, when full fine-tune too expensive.
  • (4) Prompt-tuning: LLM-specific — learn soft prompts instead of weights.
  • Rule: start with linear probe as baseline; escalate to fine-tune only if needed.
Check yourself — multiple choice
  • Only full fine-tune
  • Linear probe (tiny data, cheap) / fine-tune (lots of labels, task shift) / LoRA-adapters (parameter-efficient) / prompt-tuning (LLM-specific); start with linear probe
  • Random
  • Not real

Transfer: linear probe / fine-tune / LoRA / prompt-tuning by data + compute.

#representation-learning#applications

Practise Unsupervised Learning

214 interview questions in this topic.

Related questions