TL;DR
Large language models (LLMs) are computationally expensive; quantization (reducing numerical precision) helps, but low-bit quantization degrades accuracy because activation values (intermediate outputs) have irregular distributions. InfoQuant reshapes activation distributions to be more quantization-friendly before applying low-bit quantization.
✦ Why It Matters
Engineers can deploy LLMs on resource-constrained hardware with minimal accuracy loss using distribution-aware quantization techniques.
Key Takeaways
How It Works
InfoQuant reshapes activation distributions using Peak Suppression Orthogonal Transformation (PSOT), which minimizes the numerical range and enhances dispersion. This transformation allows activations to better fit the constraints of low-bit quantization, reducing quantization error significantly.
Related