CVAug 21, 2020

Delving Deeper into Anti-aliasing in ConvNets

arXiv:2008.09604v1143 citationsHas Code
Originality Incremental advance
AI Analysis

This addresses aliasing issues in deep learning for computer vision tasks, offering a domain-specific improvement over standard anti-aliasing methods.

The paper tackled aliasing in convolutional neural networks by proposing an adaptive content-aware low-pass filtering layer that predicts separate filter weights per spatial location and channel group, showing effectiveness in tasks like ImageNet classification, COCO instance segmentation, and Cityscapes semantic segmentation with qualitative and quantitative improvements.

Aliasing refers to the phenomenon that high frequency signals degenerate into completely different ones after sampling. It arises as a problem in the context of deep learning as downsampling layers are widely adopted in deep architectures to reduce parameters and computation. The standard solution is to apply a low-pass filter (e.g., Gaussian blur) before downsampling. However, it can be suboptimal to apply the same filter across the entire content, as the frequency of feature maps can vary across both spatial locations and feature channels. To tackle this, we propose an adaptive content-aware low-pass filtering layer, which predicts separate filter weights for each spatial location and channel group of the input feature maps. We investigate the effectiveness and generalization of the proposed method across multiple tasks including ImageNet classification, COCO instance segmentation, and Cityscapes semantic segmentation. Qualitative and quantitative results demonstrate that our approach effectively adapts to the different feature frequencies to avoid aliasing while preserving useful information for recognition. Code is available at https://maureenzou.github.io/ddac/.

Code Implementations2 repos
Foundations

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

Your Notes