NECVLGJun 8, 2015

Learning both Weights and Connections for Efficient Neural Networks

arXiv:1506.02626v37682 citations
Originality Highly original
AI Analysis

This addresses efficiency issues for deploying neural networks on embedded systems, representing a novel method rather than incremental improvement.

The paper tackles the problem of neural networks being computationally and memory intensive for embedded systems by learning important connections to reduce storage and computation by an order of magnitude without accuracy loss, achieving reductions such as 9x fewer parameters in AlexNet and 13x in VGG-16 on ImageNet.

Neural networks are both computationally intensive and memory intensive, making them difficult to deploy on embedded systems. Also, conventional networks fix the architecture before training starts; as a result, training cannot improve the architecture. To address these limitations, we describe a method to reduce the storage and computation required by neural networks by an order of magnitude without affecting their accuracy by learning only the important connections. Our method prunes redundant connections using a three-step method. First, we train the network to learn which connections are important. Next, we prune the unimportant connections. Finally, we retrain the network to fine tune the weights of the remaining connections. On the ImageNet dataset, our method reduced the number of parameters of AlexNet by a factor of 9x, from 61 million to 6.7 million, without incurring accuracy loss. Similar experiments with VGG-16 found that the number of parameters can be reduced by 13x, from 138 million to 10.3 million, again with no loss of accuracy.

Code Implementations8 repos

Data from Papers with Code (CC-BY-SA-4.0)

Foundations

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

Your Notes