本文是论文<MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications>的论文笔记。该论文提出了一个轻量级的骨干网络:MobileNet,该网络在深度可分离卷积的基础上构建。实验表明该网络在大幅提升速度、减小模型的情况下可以达到经典网络的精度。
本文是论文<Xception: Deep Learning with Depthwise Separable Convolutions>的阅读笔记,该论文基于Inception模块和深度可分离卷积,提出了深度卷积神经网络:Xception。Xception的参数量与Inception V3差不多但是精度胜过了。
本文是论文<Inception-v4, Inception-ResNet and the Impact of Residual Connections on Learning>的阅读笔记,该论文在Inception-v3的基础上提出了Inception-v4,并将Inception架构和残差网络结合,提出Inception-ResNet-v1和Inception-ResNet-v2网络。
本文是论文<Densely Connected Convolutional Networks>的阅读笔记,该论文提出了DenseNet架构。DenseNet有几个优点:缓解了梯度消失问题,增加了特征传播,鼓励特征重用,极大减小了特征参数。在各个方面均超越了ResNet。