LGCVDec 24, 2018

Dynamic Runtime Feature Map Pruning

arXiv:1812.09922v29 citations
Originality Incremental advance
AI Analysis

This addresses bandwidth bottlenecks for accelerating deep neural networks, but it is incremental as it builds on existing pruning methods.

The paper tackled the high bandwidth problem in deep neural network training and inference by analyzing parameter sparsity and introducing dynamic runtime pruning of feature maps, achieving a 10% reduction in feature map execution without accuracy loss and a further 5% reduction with a 1% accuracy drop.

High bandwidth requirements are an obstacle for accelerating the training and inference of deep neural networks. Most previous research focuses on reducing the size of kernel maps for inference. We analyze parameter sparsity of six popular convolutional neural networks - AlexNet, MobileNet, ResNet-50, SqueezeNet, TinyNet, and VGG16. Of the networks considered, those using ReLU (AlexNet, SqueezeNet, VGG16) contain a high percentage of 0-valued parameters and can be statically pruned. Networks with Non-ReLU activation functions in some cases may not contain any 0-valued parameters (ResNet-50, TinyNet). We also investigate runtime feature map usage and find that input feature maps comprise the majority of bandwidth requirements when depth-wise convolution and point-wise convolutions used. We introduce dynamic runtime pruning of feature maps and show that 10% of dynamic feature map execution can be removed without loss of accuracy. We then extend dynamic pruning to allow for values within an epsilon of zero and show a further 5% reduction of feature map loading with a 1% loss of accuracy in top-1.

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