Comparison
LoRA vs Quantization
LoRA and Quantization are both common AI/LLM terms but cover different ideas. Here is a quick side-by-side.
When you would reach for LoRA
When full fine-tuning is too expensive or you want swappable specialized adapters.
Fine-tuning Llama-3-8B for a domain on a single A100 with LoRA.
When you would reach for Quantization
When inference memory or speed is the binding constraint and you can tolerate a small quality drop.
Llama-3-70B-INT4 running on a 48 GB GPU instead of needing 2 A100s.
Frequently asked
What is the difference between LoRA and Quantization?
LoRA: LoRA is a parameter-efficient fine-tuning method that freezes a model's original weights and learns small low-rank update matrices alongside them. Cheap fine-tuning on a single GPU. Quantization: Quantization reduces model weights from 16- or 32-bit floats to lower-precision types (INT8, INT4) so the model needs less memory and runs faster, usually with minor quality loss.
When should I use LoRA vs Quantization?
When full fine-tuning is too expensive or you want swappable specialized adapters. When inference memory or speed is the binding constraint and you can tolerate a small quality drop.
Are LoRA and Quantization the same thing?
No. LoRA is training; Quantization is infrastructure. They are related but address different parts of the AI stack.