CVLGJun 22, 2017

Balanced Quantization: An Effective and Efficient Approach to Quantized Neural Networks

arXiv:1706.07145v1115 citations
Originality Incremental advance
AI Analysis

This work addresses the efficiency and accuracy challenges in deploying QNNs for resource-constrained applications, offering an incremental improvement over existing quantization techniques.

The paper tackles the problem of imbalanced parameter distributions in Quantized Neural Networks (QNNs) by proposing a balanced quantization method that partitions parameters into balanced bins using percentiles, resulting in improved prediction accuracies without extra inference computation, such as achieving a top-5 error rate of 12.7% for a 4-bit quantized GoogLeNet model on ImageNet.

Quantized Neural Networks (QNNs), which use low bitwidth numbers for representing parameters and performing computations, have been proposed to reduce the computation complexity, storage size and memory usage. In QNNs, parameters and activations are uniformly quantized, such that the multiplications and additions can be accelerated by bitwise operations. However, distributions of parameters in Neural Networks are often imbalanced, such that the uniform quantization determined from extremal values may under utilize available bitwidth. In this paper, we propose a novel quantization method that can ensure the balance of distributions of quantized values. Our method first recursively partitions the parameters by percentiles into balanced bins, and then applies uniform quantization. We also introduce computationally cheaper approximations of percentiles to reduce the computation overhead introduced. Overall, our method improves the prediction accuracies of QNNs without introducing extra computation during inference, has negligible impact on training speed, and is applicable to both Convolutional Neural Networks and Recurrent Neural Networks. Experiments on standard datasets including ImageNet and Penn Treebank confirm the effectiveness of our method. On ImageNet, the top-5 error rate of our 4-bit quantized GoogLeNet model is 12.7\%, which is superior to the state-of-the-arts of QNNs.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes