结构

ResNet50结构:

caffe可视化版
ResNet50
ResNet50
resnet50中1x1filter的作用:

1、在shortcut connection block的残差层中使用1x1的fiter先降维,然后再使用1x1的fiter使残差层输出与恒等映射层通道match,增加深度

2、在恒等映射层使用,使恒等映射层和残差层的通道数匹配

3、conv3_x到conv5_x这三个大块的首个单元都使用1x1 s=2的filter 减小feature map的维度

在tensorflow中可直接导入

from tensorflow.contrib.slim.nets import resnet_v1

相关文章:

  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
  • 2021-09-08
  • 2021-12-23
  • 2021-04-27
  • 2021-06-05
猜你喜欢
  • 2021-12-12
  • 2021-07-04
  • 2022-12-23
  • 2021-11-05
  • 2021-08-20
  • 2022-01-06
  • 2021-05-12
相关资源
相似解决方案