179 questions
No questions match those filters.
What quantization schemes are production-viable today,...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansINT8 weight-only quantization, such as LLM.int8(), is considered effectively lossless, typically resulting in less than 1% perplexity degradation while providing a 1.5-2x throughput increase by halving weight memory. INT4 quantization, using methods like GPTQ or AWQ, is more aggressive and can degrade quality on reasoning tasks unless per-group quantization (e.g., 128-token groups) is implemented. Activation quantization (W8A8 or W4A8) enables integer matrix multiplication and can achieve up to 4x throughput, but it requires careful management of activation outliers, often using techniques like SmoothQuant to absorb them into weight scales.