Densenet_Cifar10.py 文件源码

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

项目:Densenet-Tensorflow 作者: taki0112 项目源码 文件源码
def Batch_Normalization(x, training, scope):
    with arg_scope([batch_norm],
                   scope=scope,
                   updates_collections=None,
                   decay=0.9,
                   center=True,
                   scale=True,
                   zero_debias_moving_mean=True) :
        return tf.cond(training,
                       lambda : batch_norm(inputs=x, is_training=training, reuse=None),
                       lambda : batch_norm(inputs=x, is_training=training, reuse=True))
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号