paper-with-me

Papers

Depthwise Multiception Convolution for Reducing Network Parameters without Sacrificing Accuracy

2020-11-07 · Guoqing Bao, Manuel B. Graeber, Xiuying Wang

Deep convolutional neural networks have been proven successful in multiple benchmark challenges in recent years. However, the performance improvements are heavily reliant on increasingly complex network architecture and a high number of parameters, which require ever increasing amounts of storage and memory capacity. Depthwise separable convolution (DSConv) can effectively reduce the number of required parameters through decoupling standard convolution into spatial and cross-channel convolution steps. However, the method causes a degradation of accuracy. To address this problem, we present depthwise multiception convolution, termed Multiception, which introduces layer-wise multiscale kernels to learn multiscale representations of all individual input channels simultaneously. We have carried out the experiment on four benchmark datasets, i.e. Cifar-10, Cifar-100, STL-10 and ImageNet32x32, using five popular CNN models, Multiception achieved accuracy promotion in all models and demonstrated higher accuracy performance compared to related works. Meanwhile, Multiception significantly reduces the number of parameters of standard convolution-based models by 32.48% on average while still preserving accuracy.

📄 PDF Abstract BibTeX arXiv:2011.03701

Code (1)

guoqingbao/Multiception 공식 구현 pytorch

Methods 이 논문이 사용한 방법론

Pointwise Convolution Pointwise Convolution is a type of convolution that uses a 1x1 kernel: a kernel that iterates through every single point. This…
Depthwise Convolution Depthwise Convolution is a type of convolution where we apply a single convolutional filter for each input channel. In the regular 2D…
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 Separable Convolution While standard convolution performs the channelwise and spatial-wise computation in one step, Depthwise Separable Convolution

Similar Papers 제목 키워드 기반

3D Depthwise Convolution: Reducing Model Parameters in 3D Vision Tasks

2018-08-05 · Rongtian Ye, Fangyu Liu, Liqiang Zhang

Standard 3D convolution operations require much larger amounts of memory and computation cost than 2D convolution operations. The fact has hindered the development of deep neural nets in many 3D vision tasks. In this pap…

General Classification

DO-Conv: Depthwise Over-parameterized Convolutional Layer

2020-06-22 · Jinming Cao, Yangyan Li, Mingchao Sun, Ying Chen 외

Convolutional layers are the core building blocks of Convolutional Neural Networks (CNNs). In this paper, we propose to augment a convolutional layer with an additional depthwise convolution, where each input channel is …

image-classificationImage Classification

Depthwise Separable Convolutions for Neural Machine Translation

2017-06-09 · ICLR 2018 1 · Lukasz Kaiser, Aidan N. Gomez, Francois Chollet

Depthwise separable convolutions reduce the number of parameters and computation used in convolutional operations while increasing representational efficiency. They have been shown to be successful in image classificatio…

image-classificationMachine TranslationTranslation

LiteDepthwiseNet: An Extreme Lightweight Network for Hyperspectral Image Classification

2020-10-15 · Benlei Cui, XueMei Dong, Qiaoqiao Zhan, Jiangtao Peng 외

Deep learning methods have shown considerable potential for hyperspectral image (HSI) classification, which can achieve high accuracy compared with traditional methods. However, they often need a large number of training…

ClassificationGeneral ClassificationHyperspectral Image Classificationimage-classification+1

FALCON: Lightweight and Accurate Convolution

2019-09-25 · Jun-Gi Jang, Chun Quan, Hyun Dong Lee, U Kang

How can we efficiently compress Convolutional Neural Network (CNN) while retaining their accuracy on classification tasks? Depthwise Separable Convolution (DSConv), which replaces a standard convolution with a depthwise …

Tensor Decomposition