← AI Engineering Studio
Concept Explainer · AI Engineering

Model Distillation vs. Quantization

Both get called "shrinking the model," and both make it cheaper and faster to run — but one changes what the model fundamentally is, and the other only changes how its existing numbers are stored and computed.

Say a team needs to deploy a large model more cheaply, and two suggestions come back: "distill it" and "quantize it." Because both reduce compute, memory, and latency, it's tempting to treat them as interchangeable — two flavors of "model shrinking." They are not. Distillation trains a brand-new, genuinely smaller student model — fewer parameters, often a different architecture entirely — to mimic a larger teacher model's outputs, through a real training process. Quantization keeps the exact same architecture and the exact same parameter count, and instead reduces the numerical precision each weight and activation is stored and computed in — no new training run required, and no architectural change at all. That difference is exactly why the two are routinely combined rather than substituted for one another: distill a large model down to a smaller architecture, then quantize thatsmaller model's weights, and both efficiency gains stack.