ResNet50
结构
ResNet50结构:
caffe可视化版
resnet50中1x1
filter的作用:
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