Tuning and serving
Quantization interview questions
The quantization questions that keep coming up in AI engineer interviews. The first 3 come with full answers.
Updated 2026-09-05
01
What does quantization change about how a model's numbers are stored, and what do you trade for it?
Quantization stores each weight using fewer bits — for example going from 16-bit (fp16) down to 8-bit or 4-bit integers. It doesn't remove any weights or change the architecture; it just rounds each number to a coarser scale, keeping a scale factor to stretch it back at run time. The trade is a much smaller, faster model in exchange for a small rounding error that can chip at quality — usually negligible at 8-bit, small at 4-bit with good methods, and larger below that.
02
Going from fp16 to int4, roughly how much memory does a 70B model save, and why does that matter?
Roughly 4×. Each weight goes from 16 bits to 4 bits, so a 70-billion-parameter model drops from about 140 GB in fp16 to about 35 GB in 4-bit. That matters because 140 GB needs two or three data-centre GPUs, while 35 GB fits on a single 48 GB card. It also speeds up inference: these models are memory-bound, so moving fewer bytes per weight means each token comes out quicker. Same model, a fraction of the cost.
03
Why does using fewer bits hurt quality, and how do GPTQ and AWQ keep the damage tiny?
Fewer bits means fewer buckets, so every weight gets rounded slightly off its true value — rounding error. Individually tiny, but it can accumulate, and a few unusually large outlier weights carry a lot of the model's behaviour. GPTQ rounds one column at a time and compensates the remaining weights to offset the error it just introduced. AWQ identifies the most important weights and scales them so they survive quantization with more precision. Both mean the damage lands where it matters least.
Also asked in interviews
- What's the difference between post-training quantization and quantization-aware training?
- If you must run a 70B model on one consumer GPU, how does quantization make that feasible?
- Does quantization also make the model faster, or just smaller?
These 3 run inside the bootcamp as recall drills and voice mock interviews. You answer, the AI grades.
Knowing an answer and saying it under pressure are two different days. Inside Skillumen you answer these out loud and get graded on the spot. Foundations is free.
Try it free →
The open-source companion list, Awesome AI Engineer Interview Questions, curates 105 of these on GitHub.