Skip to main content
ModelTerms

Comparison

Inference vs Quantization

Inference and Quantization are both common AI/LLM terms but cover different ideas. Here is a quick side-by-side.

When you would reach for Inference

Inference comes up when the question is fundamentally about inference.

A ChatGPT response: one inference call per turn.

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 Inference and Quantization?

Inference: Inference is what happens when you actually run a trained model on new input. For LLMs that means generating tokens one at a time, with sampling and a KV cache. 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 Inference vs Quantization?

Inference is the right concept when you are focused on inference. When inference memory or speed is the binding constraint and you can tolerate a small quality drop.

Are Inference and Quantization the same thing?

No. Inference is inference; Quantization is infrastructure. They are related but address different parts of the AI stack.