當前位置: 首頁>>代碼示例>>Python>>正文


Python resnet_v2.resnet_v2_50方法代碼示例

本文整理匯總了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' 
開發者ID:knwng,項目名稱:vehicle-triplet-reid,代碼行數:15,代碼來源:resnet_v2_50.py


注:本文中的nets.resnet_v2.resnet_v2_50方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。