MobileNet

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

Approach

  • Depthwise Separable Convolution



    For MobileNets the depthwise convolution applies a single filter to each input channel. The pointwise convolution then applies a 1×1 convolution to combine the outputs the depthwise convolution.


Standard convolutions have the computational cost of: D K · D K · M · N · D F · D F
Depthwise separable convolutions cost: D K · D K · M · D F · D F + M · N · D F · D F
By expressing convolution as a two step process of filtering and combining we get a reduction in computation of:

  • Network Structure

Experiment

References:
MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications, Andrew G. Howard, 2017, arXiv

相关文章

网友评论

      本文标题:MobileNet

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