CVJul 8, 2020

Dynamic Group Convolution for Accelerating Convolutional Neural Networks

arXiv:2007.04242v257 citationsHas Code
AI Analysis

This addresses the problem of balancing computational efficiency and accuracy in convolutional neural networks for image classification, offering an incremental improvement over existing group convolution techniques.

The paper tackles the accuracy degradation caused by permanent connection cuts in group convolutions by proposing dynamic group convolution (DGC), which adaptively selects input channels per sample, achieving superior performance on benchmarks like CIFAR-10, CIFAR-100, and ImageNet.

Replacing normal convolutions with group convolutions can significantly increase the computational efficiency of modern deep convolutional networks, which has been widely adopted in compact network architecture designs. However, existing group convolutions undermine the original network structures by cutting off some connections permanently resulting in significant accuracy degradation. In this paper, we propose dynamic group convolution (DGC) that adaptively selects which part of input channels to be connected within each group for individual samples on the fly. Specifically, we equip each group with a small feature selector to automatically select the most important input channels conditioned on the input images. Multiple groups can adaptively capture abundant and complementary visual/semantic features for each input image. The DGC preserves the original network structure and has similar computational efficiency as the conventional group convolution simultaneously. Extensive experiments on multiple image classification benchmarks including CIFAR-10, CIFAR-100 and ImageNet demonstrate its superiority over the existing group convolution techniques and dynamic execution methods. The code is available at https://github.com/zhuogege1943/dgc.

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