MobileNet网络结构

MobileNet网络结构
当stride=1时,输入首先经过11的卷积进行通道数的扩张,此时激活函数为ReLU6;然后经过33的depthwise卷积,激活函数是ReLU6;接着经过1*1的pointwise卷积,将通道数压缩回去,激活函数是linear;最后使用shortcut,将两者进行相加。而当stride=2时,由于input和output的特征图的尺寸不一致,所以就没有shortcut了。

MobileNet网络结构
MobileNet网络结构
MobileNet网络结构
MobileNet网络结构

相关文章:

  • 2022-12-23
  • 2021-11-24
  • 2021-10-07
  • 2021-11-17
  • 2021-11-02
  • 2022-01-06
  • 2021-09-10
  • 2021-05-29
猜你喜欢
  • 2021-11-03
  • 2021-07-05
  • 2021-12-11
  • 2021-12-02
  • 2021-12-23
  • 2021-07-15
  • 2021-09-07
相关资源
相似解决方案