Misconception: 'LoRA is just a quantization technique'
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
LoRA is a parameter-efficient training method, not quantization. It trains tiny low-rank adapters over frozen weights. QLoRA adds the 4-bit part.
Imagine a huge cookbook you cannot rewrite. The first trick clips a few sticky notes onto the pages, and you only ever write on the notes. The cookbook stays exactly as it was, full size and full detail, while you jot your new recipe on the notes. The second trick is totally different: it reprints the whole cookbook in smaller, blurrier font to save shelf space. People mix these up because one popular method does both at once: it reprints the book small AND adds the sticky notes. But adding notes by itself is just the first trick. It never touches the font size of the original, and shrinking the font has nothing to do with the notes.
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.
3 min: define LoRA as parameter-efficient training, define quantization as precision reduction, separate the two axes, then explain how QLoRA combines a frozen 4-bit base with higher precision trainable adapters.
| Aspect | LoRA | Quantization |
|---|---|---|
| What it reduces | Number of trainable parameters | Bits used to store each weight |
| Base weights | Frozen, original precision | Stored in lower precision |
| Primary goal | Cheaper, faster fine-tuning | Smaller memory footprint |
| Touches precision | No | Yes |
| Example methods | LoRA, DoRA | GPTQ, AWQ, NF4 |
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.
Conflating LoRA with QLoRA. LoRA cuts the number of trainable parameters; quantization cuts the precision of stored weights. They are orthogonal techniques that QLoRA happens to combine.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.