Model degradation is the negative impact on a neural network's predictive performance, latency, or robustness resulting from lossy compression techniques. It is the fundamental engineering tradeoff in on-device model compression, where reductions in size and compute are balanced against potential accuracy drop. This degradation is quantified by comparing the compressed model's metrics against a golden model baseline on a validation set.
Primary Causes and Mechanisms
Model degradation is the measurable decline in a neural network's performance following compression. This section details the core technical mechanisms that cause this loss, focusing on the fundamental numerical and architectural changes introduced by optimization techniques.
Quantization error is the primary mechanism for degradation in post-training quantization. It arises from the lossy mapping of continuous 32-bit floating-point values to discrete, lower-bit integer representations. This process introduces quantization noise, an additive error that perturbs weight and activation tensors, propagating through the computational graph and distorting the model's final output. The error magnitude is governed by the chosen bit-width and the calibration method used to set quantization ranges.
Structural sparsity induced by pruning removes parameters deemed non-critical, but can excise subtle, distributed feature detectors. Output divergence occurs when the pruned network's activation pathways differ from the original, causing misaligned feature representations. For techniques like knowledge distillation, degradation stems from the capacity gap; the smaller student model's limited representational power prevents it from perfectly mimicking the teacher's complex function mapping, leading to an inherent approximation error.




