- Why MobileNet and Its Variants (e.g. ShuffleNet) Are Fast文章通过输入与输出连通性的角度直观上分析了不同卷积模式计算量的改变情况。

基础卷积模块
- standard convolution

标准卷积的计算量为HWNK²M,可以分为3部分
(1) the spatial size of the input feature map HxW,
(2) the size of convolution kernel K²
(3) the numbers of input and output channels NxM.
- group convolution
