LGAIJul 14, 2022

DropNet: Reducing Neural Network Complexity via Iterative Pruning

arXiv:2207.06646v174 citationsh-index: 38
Originality Incremental advance
AI Analysis

This addresses the challenge of deploying neural networks on resource-constrained edge devices, though it is incremental as it builds on existing pruning concepts like the Lottery Ticket Hypothesis.

The paper tackles the problem of high computational cost in deep neural networks by proposing DropNet, an iterative pruning method that removes nodes/filters with low activation values, achieving up to 90% reduction in network complexity without significant accuracy loss on datasets like MNIST, CIFAR-10, and Tiny ImageNet.

Modern deep neural networks require a significant amount of computing time and power to train and deploy, which limits their usage on edge devices. Inspired by the iterative weight pruning in the Lottery Ticket Hypothesis, we propose DropNet, an iterative pruning method which prunes nodes/filters to reduce network complexity. DropNet iteratively removes nodes/filters with the lowest average post-activation value across all training samples. Empirically, we show that DropNet is robust across diverse scenarios, including MLPs and CNNs using the MNIST, CIFAR-10 and Tiny ImageNet datasets. We show that up to 90% of the nodes/filters can be removed without any significant loss of accuracy. The final pruned network performs well even with reinitialization of the weights and biases. DropNet also has similar accuracy to an oracle which greedily removes nodes/filters one at a time to minimise training loss, highlighting its effectiveness.

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