MixConv: Mixed Depthwise Convolutional Kernels
Mingxing Tan, Quoc V. Le
TL;DR
This work reveals that single-kernel depthwise convolutions limit model capacity and efficiency. It introduces MixConv, a drop-in depthwise operation that blends multiple kernel sizes across channel groups, enabling multi-scale pattern capture without changing network topology. Coupled with neural architecture search, MixNet architectures achieve state-of-the-art mobile performance on ImageNet and COCO, and demonstrate strong transfer learning results. The findings suggest substantial practical benefits for lightweight vision systems by combining kernel-size diversity with NAS-driven optimization.
Abstract
Depthwise convolution is becoming increasingly popular in modern efficient ConvNets, but its kernel size is often overlooked. In this paper, we systematically study the impact of different kernel sizes, and observe that combining the benefits of multiple kernel sizes can lead to better accuracy and efficiency. Based on this observation, we propose a new mixed depthwise convolution (MixConv), which naturally mixes up multiple kernel sizes in a single convolution. As a simple drop-in replacement of vanilla depthwise convolution, our MixConv improves the accuracy and efficiency for existing MobileNets on both ImageNet classification and COCO object detection. To demonstrate the effectiveness of MixConv, we integrate it into AutoML search space and develop a new family of models, named as MixNets, which outperform previous mobile models including MobileNetV2 [20] (ImageNet top-1 accuracy +4.2%), ShuffleNetV2 [16] (+3.5%), MnasNet [26] (+1.3%), ProxylessNAS [2] (+2.2%), and FBNet [27] (+2.0%). In particular, our MixNet-L achieves a new state-of-the-art 78.9% ImageNet top-1 accuracy under typical mobile settings (<600M FLOPS). Code is at https://github.com/ tensorflow/tpu/tree/master/models/official/mnasnet/mixnet
