CVOct 29, 2021

Gabor filter incorporated CNN for compression

arXiv:2110.15644v2
Originality Incremental advance
AI Analysis

This addresses network compression for efficient deployment in embedded and real-time systems, but it is incremental as it builds on prior work on inductive biases and filter selection.

The paper tackles the problem of high inference cost in CNNs for embedded systems by incorporating Gabor filters in early layers to compress networks, achieving an average reduction to 29.4 kernels in VGG-16's first layer and removing 83-94% of kernels in ResNet-20's early layers on CIFAR-10.

Convolutional neural networks (CNNs) are remarkably successful in many computer vision tasks. However, the high cost of inference is problematic for embedded and real-time systems, so there are many studies on compressing the networks. On the other hand, recent advances in self-attention models showed that convolution filters are preferable to self-attention in the earlier layers, which indicates that stronger inductive biases are better in the earlier layers. As shown in convolutional filters, strong biases can train specific filters and construct unnecessarily filters to zero. This is analogous to classical image processing tasks, where choosing the suitable filters makes a compact dictionary to represent features. We follow this idea and incorporate Gabor filters in the earlier layers of CNNs for compression. The parameters of Gabor filters are learned through backpropagation, so the features are restricted to Gabor filters. We show that the first layer of VGG-16 for CIFAR-10 has 192 kernels/features, but learning Gabor filters requires an average of 29.4 kernels. Also, using Gabor filters, an average of 83% and 94% of kernels in the first and the second layer, respectively, can be removed on the altered ResNet-20, where the first five layers are exchanged with two layers of larger kernels for CIFAR-10.

Foundations

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

Your Notes