paper-with-me

홈 › Papers

Convolutional Networks with Oriented 1D Kernels

2023-09-27 · ICCV 2023 1 · Alexandre Kirchmeyer, Jia Deng

In computer vision, 2D convolution is arguably the most important operation performed by a ConvNet. Unsurprisingly, it has been the focus of intense software and hardware optimization and enjoys highly efficient implementations. In this work, we ask an intriguing question: can we make a ConvNet work without 2D convolutions? Surprisingly, we find that the answer is yes -- we show that a ConvNet consisting entirely of 1D convolutions can do just as well as 2D on ImageNet classification. Specifically, we find that one key ingredient to a high-performing 1D ConvNet is oriented 1D kernels: 1D kernels that are oriented not just horizontally or vertically, but also at other angles. Our experiments show that oriented 1D convolutions can not only replace 2D convolutions but also augment existing architectures with large kernels, leading to improved accuracy with minimal FLOPs increase. A key contribution of this work is a highly-optimized custom CUDA implementation of oriented 1D kernels, specialized to the depthwise convolution setting. Our benchmarks demonstrate that our custom CUDA implementation almost perfectly realizes the theoretical advantage of 1D convolution: it is faster than a native horizontal convolution for any arbitrary angle. Code is available at https://github.com/princeton-vl/Oriented1D.

📄 PDF Abstract BibTeX arXiv:2309.15812

Code (1)

princeton-vl/oriented1d 공식 구현 pytorch

Methods 이 논문이 사용한 방법론

Focus 설명 없음
Convolution A convolution is a type of matrix operation, consisting of a kernel, a small matrix of weights, that slides over input data performing element-wise multiplication with the…
Depthwise Convolution Depthwise Convolution is a type of convolution where we apply a single convolutional filter for each input channel. In the regular 2D…

Similar Papers 제목 키워드 기반

Fully trainable Gaussian derivative convolutional layer

2022-07-18 · Valentin Penaud--Polge, Santiago Velasco-Forero, Jesus Angulo

The Gaussian kernel and its derivatives have already been employed for Convolutional Neural Networks in several previous works. Most of these papers proposed to compute filters by linearly combining one or several bases …

image-classificationImage ClassificationImage SegmentationSemantic Segmentation

Shape correspondence using anisotropic Chebyshev spectral CNNs

2020-06-01 · CVPR 2020 6 · Qinsong Li, Shengjun Liu, Ling Hu, Xinru Liu

Establishing correspondence between shapes is a very important and active research topic in many domains. Due to the powerful ability of deep learning on geometric data, lots of attractive results have been achieved by c…

Learning shape correspondence with anisotropic convolutional neural networks

2016-05-20 · NeurIPS 2016 12 · Davide Boscaini, Jonathan Masci, Emanuele Rodolà, Michael M. Bronstein

Establishing correspondence between shapes is a fundamental problem in geometry processing, arising in a wide variety of applications. The problem is especially difficult in the setting of non-isometric deformations, as …

SONIC: Spectral Oriented Neural Invariant Convolutions

2026-01-27 · Gijs Joppe Moens, Regina Beets-Tan, Eduardo H. P. Pooch arxiv

Convolutional Neural Networks (CNNs) rely on fixed-size kernels scanning local patches, which limits their ability to capture global context or long-range dependencies without very deep architectures. Vision Transformers…

Image Classification

Use of symmetric kernels for convolutional neural networks

2018-05-23 · Viacheslav Dudar, Vladimir Semenov

At this work we introduce horizontally symmetric convolutional kernels for CNNs which make the network output invariant to horizontal flips of the image. We also study other types of symmetric kernels which lead to verti…