Match PEFT method to the scenario it fits best
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
Each PEFT method has one defining trade-off. Match the scenario's scarcest resource, VRAM, data size, or per-task storage, to the method whose mechanism solves exactly that.
Think of customising a rental car you must hand back unchanged. LoRA is a clip-on steering cover that subtly changes how it drives. QLoRA is the same cover, but you first deflate the seats so the whole car fits in a tiny garage. IA3 is just turning a few knobs up or down, perfect when you only get a short test drive and don't want to overdo it. Prefix tuning slips a sticky note onto the dashboard the car reads first, cheap to swap per renter. Full fine-tuning means rebuilding the engine, powerful, but only worth it with a big workshop and lots of time. You pick by what is scarce: space, data, or per-renter storage.
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.
5 min: state each method's mechanism, then map all five scenarios by their binding constraint, then defend QLoRA as a VRAM call and full FT as the rank-ceiling escape.
| Method | Mechanism | Picks it when |
|---|---|---|
| LoRA | Low-rank delta beside frozen weights | Base fits in bf16; you want the quality default |
| QLoRA | LoRA delta over a 4-bit frozen base | VRAM is the bottleneck |
| IA3 | Per-channel activation scaling vectors | Tiny dataset; overfitting is the risk |
| Prefix tuning | Learned soft tokens per layer | Many tiny tasks; per-task storage must be small |
| Full fine-tuning | Update all weights | Aggressive domain shift with large data |
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.
Picking a PEFT method by popularity rather than by the scarce resource. Each method optimises a different constraint, VRAM, data size, or per-task storage, so the right answer depends on which one binds.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.