LGCVMLJan 16, 2020

MeliusNet: Can Binary Neural Networks Achieve MobileNet-level Accuracy?

arXiv:2001.05936v298 citationsHas Code
AI Analysis

This work addresses the challenge of deploying efficient neural networks on mobile or embedded devices by enabling BNNs to achieve competitive accuracy, though it is incremental in improving existing BNN methods.

The authors tackled the problem of accuracy drop in Binary Neural Networks (BNNs) by proposing MeliusNet, an architectural approach that alternates DenseBlocks and ImprovementBlocks to increase feature capacity and quality, achieving models that match MobileNet-v1 accuracy on ImageNet with similar size and operations.

Binary Neural Networks (BNNs) are neural networks which use binary weights and activations instead of the typical 32-bit floating point values. They have reduced model sizes and allow for efficient inference on mobile or embedded devices with limited power and computational resources. However, the binarization of weights and activations leads to feature maps of lower quality and lower capacity and thus a drop in accuracy compared to traditional networks. Previous work has increased the number of channels or used multiple binary bases to alleviate these problems. In this paper, we instead present an architectural approach: MeliusNet. It consists of alternating a DenseBlock, which increases the feature capacity, and our proposed ImprovementBlock, which increases the feature quality. Experiments on the ImageNet dataset demonstrate the superior performance of our MeliusNet over a variety of popular binary architectures with regards to both computation savings and accuracy. Furthermore, with our method we trained BNN models, which for the first time can match the accuracy of the popular compact network MobileNet-v1 in terms of model size, number of operations and accuracy. Our code is published online at https://github.com/hpi-xnor/BMXNet-v2

Code Implementations1 repo
Foundations

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

Your Notes