unet_large.py 文件源码

python
阅读 22 收藏 0 点赞 0 评论 0

项目:lsun_2017 作者: ternaus 项目源码 文件源码
def ConvBN2(x, num_filter, stride_size=3):
    x = Conv2D(num_filter, (stride_size, stride_size), padding='same', kernel_initializer='he_uniform')(x)
    x = BatchNormalization()(x)
    x = Activation('selu')(x)
    x = Conv2D(num_filter, (stride_size, stride_size), padding='same', kernel_initializer='he_uniform')(x)
    x = BatchNormalization()(x)
    x = Activation('selu')(x)
    return x
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号