模型压缩(2) - Xception
Xception: Deep Learning with Depthwise Separable Convolutions
论文地址: Arxiv Paper
Xception 属于google Inception家族中的一员,演变过来的
Google Net Inception V3
输入input通过四个path,最后concat得到output
简化后的Inception module
将1中结构简化,input通过3组conv1x1 + conv3x3的block,最后concat得到output
变形
将2中的module继续简化
- 将conv1x1提到外面
- 将conv1x1 的output channel 划分为3部分分别进行conv3x3卷积
极端情况
对于conv1x1的output channel (oc),每一个oc后面接一个conv3x3,
最后将conv3x3的输出concat得到最终的output
Reference