Stacking two unrelated LoRA adapters: most likely outcome
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
Merging two independently-trained LoRA adapters often hurts both tasks. Their deltas collide in shared weight directions. Route between adapters or train one joint adapter instead.
Imagine two editors revising the same manuscript, working in separate rooms, neither seeing the other's marks. One rewrites for a legal audience; the other rewrites for children. Each edit makes sense alone. Now you stack both sets of changes onto one page. Sentences get cut twice, tone whipsaws, and the result reads worse than either editor's version on its own. That is what happens when you add two LoRA adapters trained apart: each assumed it owned the weights, so their changes fight over the same words. The fix is not to merge the pages. You keep both edited versions and pick the right one per request, or you give both editors the full brief up front so they revise together.
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: pick C and justify it, explain the additive-delta interference mechanism, debunk all three distractors, then walk routing versus joint training versus interference-aware merging.
| Strategy | What happens to quality | When to use |
|---|---|---|
| Naive merge (sum deltas) | Often regresses BOTH tasks for unrelated adapters | Only when adapters are near-identical or same warm start |
| Interference-aware merge (TIES, DARE) | Reduces but does not eliminate conflict | You need one fused checkpoint and can tolerate some loss |
| Joint training on union | Best quality, tasks share gradients | You control both datasets and can retrain |
| Route per request (multi-LoRA) | Each task stays at full adapter quality | Multi-tenant serving, many adapters, one base |
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.
Assuming more adapters equals more capability. Two independent fine-tunes never shared a gradient, so adding their deltas frequently degrades both source tasks rather than combining them.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.