Zenaique
Glossary · Inference

Quantization

Also known as: INT8, INT4, GPTQ, AWQ

Run the model at lower numerical precision to save memory and accelerate inference.

Reducing the numerical precision of model weights (and sometimes activations) from FP16/FP32 to INT8, INT4, or lower. Cuts memory by 2-8x and often speeds up inference with minimal quality loss when done carefully.

In practice

The default lever for fitting big models onto smaller GPUs. Expect questions on activation-vs-weight quantization, GPTQ vs AWQ, and where quality starts to degrade.

How it compares

Quantization shrinks each weight's bit count; distillation trains a smaller model from a bigger teacher.

Comparisons that include Quantization

Related topics

Related terms