Xception

作者: 信步闲庭v | 来源:发表于2017-10-16 16:55 被阅读23次

Approach

Inception model

Two minor differences between and “extreme” version of an Inception module and a depthwise separable convolution would be:

  • The order of the operations: depthwise separable convolutions as usually implemented perform first channel-wise spatial convolution and then perform 1x1 convolution, whereas Inception performs the 1x1 convolution first.
  • The presence or absence of a non-linearity after the first operation. In Inception, both operations are followed by a ReLU non-linearity, however depthwise separable convolutions are usually implemented without non-linearities.

Experiment

We presented a novel architecture based on this idea, named Xception, which has a similar parameter count as Inception V3. Compared to Inception V3, Xception shows small gains in classification performance on the ImageNet dataset and large gains on the JFT dataset.

References:
Xception: Deep Learning with Depthwise Separable Convolutions, Francois Chollet, 2016,CVPR

相关文章

  • 小型CNN总结:ShuffleNet、MobileNet v1,

    推荐的文章包括: ShuffleNet,mobilenet v1,v2,Xception Xception、Mob...

  • 经典卷积网络之Xception

    Xception模型 一、模型框架 Xception是谷歌公司继Inception后,提出的InceptionV3...

  • Xception

    Approach Two minor differences between and “extreme” vers...

  • Xception

    Xception是在Inception的基础上提出来的一种新网络,其对Inception中的Inception m...

  • Xception

    论文原文Xception: Deep Learning with Depthwise Separable Conv...

  • MobileNet系列

    MobileNet V1 思想 思想主要来源于Xception,Xception也是谷歌的作品,主要就是引入了se...

  • maven环境的配置问题,Unsupported major.m

    xception in thread "main" java.lang.UnsupportedClassVersi...

  • Xception 算法

    引言 Xception是google在inception之后提出的对inceptionV3的另一种改进,主要采用d...

  • Inception、Xception

    如果 ResNet 是为了更深,那么 Inception 家族就是为了更宽。Inception 的作者对训练更大型...

  • 论文阅读 --- Xception

    关于图像分类的论文《Xception: Deep Learning with Depthwise Separabl...

网友评论

      本文标题:Xception

      本文链接:https://www.haomeiwen.com/subject/wxtluxtx.html