Model Compression, Pruning & Low-Bit Quantization optimize neural networks for deployment onto edge hardware or high-throughput cloud inference clusters by slashing memory footprints and memory-bandwidth bottlenecks; it encompasses 3 core pillars: 1) Pruning (Structured channel pruning and unstructured magnitude/Hessian weight pruning inducing sparsity); 2) Knowledge Distillation (transferring dark knowledge from large teacher models to compact student nets via temperature-softened logits
pT=softmax(zT/T)); 3) Uniform Affine Quantization, mapping continuous floats to INT8/INT4/FP8 integers via
xq=clamp(round(Sx)+Z,qmin,qmax) across Post-Training Quantization (PTQ) and Quantization-Aware Training (QAT).