ImageNet classification with deep convolutional neural networks
Alex Krizhevsky, Ilya Sutskever et al.
0
Citations
0
Influential Citations
—
Venue
2026
Year
Weight-only quantization substantially reduces the storage of large language model (LLM) transformer blocks, but practical backends often retain the final language-modeling head (LM-head) in BF16 or FP16. Quantizing this projection naively can strongly perturb the vocabulary-logit distribution. We present ARCHead, a packed LM-head compressor that combines a quantized low-rank core, group-wise INT4 residuals, and a low-rank correction fitted in an activation-derived metric. ARCHead stores no dense BF16 head and reduces persistent LM-head storage by 3.7-3.9x. On Qwen3-8B-Base, it uses 25.6% of BF16 head storage while attaining 1.007 relative perplexity; storage-matched naive INT4 yields 1.14-1.16. Replacing the BF16 head left by AWQ or bitsandbytes adds only 0.006-0.007 cross-entropy, with less than 2% throughput change in our measurements. ARCHead therefore complements block quantizers by compressing the large output projection they can leave untouched. Code is available at https://github.com/suayptalha/archead.
Large language models (LLMs) are increasingly deployed in memory-constrained environments, driving the need for aggressive compression. Weight-only quantization has become a standard technique to reduce the storage footprint of transformer blocks, but a critical gap remains: the final language-modeling head (LM-head) is often left in high precision (BF16/FP16) because naive quantization of this projection can severely distort the vocabulary-logit distribution. This paper addresses that gap by introducing ARCHead, a method specifically designed to compress the LM-head without sacrificing output quality.
The significance of this work lies in its focus on a component that is frequently ignored in quantization pipelines. While many studies concentrate on quantizing the bulk of the model, the LM-head can constitute a substantial portion of memory, especially for models with large vocabularies. By providing a practical solution that reduces LM-head storage by nearly 4x while maintaining near-lossless performance, ARCHead enables more complete model compression and facilitates deployment on devices with limited memory.
ARCHead introduces a novel architecture for LM-head compression that combines several techniques:
The method is designed to be complementary to existing block quantizers like AWQ and bitsandbytes, which typically leave the LM-head untouched. By providing a drop-in replacement for the BF16 head, ARCHead can be integrated into existing quantization pipelines with minimal effort.
The paper reports concrete metrics on Qwen3-8B-Base:
These results demonstrate that ARCHead achieves a favorable trade-off between compression and accuracy, making it a practical solution for real-world deployment.
The broader impact of ARCHead is that it fills a critical gap in LLM compression. By enabling the compression of the output head without significant quality loss, it allows for more complete model quantization, which is essential for edge deployment and large-scale serving. The method's compatibility with existing block quantizers means it can be adopted quickly, and its open-source implementation encourages further research and integration. As LLMs continue to grow in size, techniques like ARCHead will be crucial for making them accessible and efficient.
Alex Krizhevsky, Ilya Sutskever et al.
Ashish Vaswani, Noam Shazeer et al.
Douglas M. Bates, Martin Mächler et al.
Diederik P. Kingma, Jimmy Ba