Quantization
Quantization is the process of reducing the numerical precision of a model weights from 16-bit floats to smaller integers, shrinking memory usage and accelerating inference.
What it is
Neural network weights are typically stored as 16-bit floating point numbers. Quantization maps these high-precision values to lower-bit representations, such as 8-bit integers or even 4-bit values. This reduces a model memory footprint by roughly half to three-quarters, allowing you to run a 70-billion parameter model on fewer or smaller GPUs. The underlying mechanism scales and rounds the original weight values into a restricted bucket of integer outputs.
Why it matters
Hardware memory capacity dictates which model sizes you can self-host. If you ignore quantization, you might provision expensive enterprise GPUs with massive VRAM just to serve standard models. Knowing about quantization allows you to host larger models locally or reduce your cloud infrastructure bill by fitting models into cheaper hardware tiers with minimal impact on output quality.
In practice
You encounter quantization when configuring model weights in deployment frameworks like vLLM, Ollama, or llama.cpp, or when downloading GGUF and AWQ files from Hugging Face. You select settings like INT4 or INT8 during model loading. In production, you monitor GPU memory utilization drops alongside minor latency improvements and track benchmark scores to ensure output quality remains acceptable.
The tradeoff
Lower bit-widths reduce memory and latency, but aggressively quantizing below 4 bits often degrades model accuracy and causes noticeable degradation in complex reasoning tasks.
Where it appears
Research summaries that use Quantization, each linked to its source paper.
-
Accelerating Neural Network Quantization with BaKron
BaKron: Efficient Quantization with Kronecker-Factored Hessians
The paper introduces BaKron, a new quantization method that improves efficiency for two-sided Kronecker-factored Hessian approximations in neural networks.
-
Quantization and Prompting in Biomedical LLMs
Quantization Effects on Biomedical LLM Reliability
The paper investigates how quantization and prompt engineering affect the accuracy and calibration of biomedical large language models during sentence classification tasks.
-
Compressing LLM Output Heads for Memory Efficiency
ARCHead: Activation-Metric Residual Correction for Large Language Model Output Heads
ARCHead reduces the memory footprint of large language model output layers by replacing dense weight matrices with quantized low-rank approximations and correction factors.
-
Running Bimanual Robotics on Jetson
Bimanual Manipulation Within an 8 GB Budget: Zero-Copy Sensing and Quantized ACT on an Entry-Level Jetson
The paper demonstrates how to deploy bimanual robot manipulation policies on an entry-level Jetson platform using zero-copy sensing and quantized Action Chunking with Transformers.
-
Efficient AI Models for Edge Devices
Opt.Gear Technical Report
The paper introduces Opt.Gear, a new model architecture designed to make large language models run faster and more efficiently on small hardware devices like microcontrollers.
-
Making Translation Models Faster with Quantization
Studying quantization trade-offs for efficient inference deployment in machine translation
Researchers studied how reducing the precision of translation model data affects speed and accuracy when processing long documents.
-
Efficient 8-bit Matrix Multiplication for Transformers
LLM.int8(): 8-bit Matrix Multiplication for Transformers at Scale
The researchers introduced LLM.int8(), a method that reduces the GPU memory required for large language model inference by 50 percent while maintaining full precision performance.
-
Safe Deferral Limits for Small Models
Provable Limits and Certified Deferral for Verbalized Uncertainty in Small Language Models
The paper investigates risk-controlled deferral for small language models by using verbalized confidence scores and certified threshold-selection procedures.
-
Flexible Multi-Precision Quantization for Efficient LLMs
Recurrent Residual Quantization: A Progressive Multi-Precision Representation for LLMs
Recurrent Residual Quantization enables a single model checkpoint to support multiple bit-widths by iteratively storing and reconstructing quantization error.