Multichannel Orthogonal Transform-Based Perceptron Layers for Efficient ResNets
Hongyi Pan, Emadeldeen Hamdan, Xin Zhu, Salih Atici, Ahmet Enis Cetin
TL;DR
This work introduces transform-domain perceptron layers that replace select $3\times3$ convolutions in CNNs with orthogonal transform-based operations ($DCT$, $HT$, $BWT$) plus trainable soft-thresholding. By leveraging transform-domain convolution theorems, these layers perform filtering via simple elementwise multiplications and a learnable nonlinear threshold, yielding location- and channel-specific representations with significantly fewer parameters and MACs. Across CIFAR-10/100 and ImageNet-1K, the proposed layers (especially multi-channel DCT/BWT/HT variants) achieve competitive or superior accuracy while reducing model complexity; an extra single-channel transform layer before pooling can provide additional gains. The approach offers a practical path to more efficient ResNets and can be extended to other CNNs, though memory usage and padding requirements for non-power-of-two sizes pose challenges for deployment.
Abstract
In this paper, we propose a set of transform-based neural network layers as an alternative to the $3\times3$ Conv2D layers in Convolutional Neural Networks (CNNs). The proposed layers can be implemented based on orthogonal transforms such as the Discrete Cosine Transform (DCT), Hadamard transform (HT), and biorthogonal Block Wavelet Transform (BWT). Furthermore, by taking advantage of the convolution theorems, convolutional filtering operations are performed in the transform domain using element-wise multiplications. Trainable soft-thresholding layers, that remove noise in the transform domain, bring nonlinearity to the transform domain layers. Compared to the Conv2D layer, which is spatial-agnostic and channel-specific, the proposed layers are location-specific and channel-specific. Moreover, these proposed layers reduce the number of parameters and multiplications significantly while improving the accuracy results of regular ResNets on the ImageNet-1K classification task. Furthermore, they can be inserted with a batch normalization layer before the global average pooling layer in the conventional ResNets as an additional layer to improve classification accuracy.
