本文整理匯總了Python中nets.resnet_v2.resnet_v2_50方法的典型用法代碼示例。如果您正苦於以下問題:Python resnet_v2.resnet_v2_50方法的具體用法?Python resnet_v2.resnet_v2_50怎麽用?Python resnet_v2.resnet_v2_50使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類nets.resnet_v2
的用法示例。
在下文中一共展示了resnet_v2.resnet_v2_50方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: endpoints
# 需要導入模塊: from nets import resnet_v2 [as 別名]
# 或者: from nets.resnet_v2 import resnet_v2_50 [as 別名]
def endpoints(image, is_training):
if image.get_shape().ndims != 4:
raise ValueError('Input must be of size [batch, height, width, 3]')
image = image - tf.constant(_RGB_MEAN, dtype=tf.float32, shape=(1,1,1,3))
with tf.contrib.slim.arg_scope(resnet_arg_scope(batch_norm_decay=0.9, weight_decay=0.0)):
_, endpoints = resnet_v2_50(image, num_classes=None, is_training=is_training, global_pool=True)
endpoints['model_output'] = endpoints['global_pool'] = tf.reduce_mean(
endpoints['resnet_v2_50/block4'], [1, 2], name='pool5', keep_dims=False)
return endpoints, 'resnet_v2_50'