resnet50

ref
结构分析
https://blog.csdn.net/zjucor/article/details/78636573

每层分析:https://blog.csdn.net/Seven_year_Promise/article/details/69360488
结构图
https://blog.csdn.net/Seven_year_Promise/article/details/69358681
https://blog.csdn.net/qq_21046135/article/details/81674605

import keras
keras.utils.plot_model(keras.applications.ResNet50(include_top=True,input_shape=(224,224,3),weights=None), to_file='image_model.png', show_shapes=True)

conv层数:
非跳层连接1+(3+4+6+2)3=46
跳层连接处4
1=4,只有第一个块处有,起到增加深度维度、减小尺度的作用
总50

resnet50_第1张图片

你可能感兴趣的:(深度学习)