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


Python mobilenet_v2.V2_DEF屬性代碼示例

本文整理匯總了Python中nets.mobilenet.mobilenet_v2.V2_DEF屬性的典型用法代碼示例。如果您正苦於以下問題:Python mobilenet_v2.V2_DEF屬性的具體用法?Python mobilenet_v2.V2_DEF怎麽用?Python mobilenet_v2.V2_DEF使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在nets.mobilenet.mobilenet_v2的用法示例。


在下文中一共展示了mobilenet_v2.V2_DEF屬性的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: testCreation

# 需要導入模塊: from nets.mobilenet import mobilenet_v2 [as 別名]
# 或者: from nets.mobilenet.mobilenet_v2 import V2_DEF [as 別名]
def testCreation(self):
    spec = dict(mobilenet_v2.V2_DEF)
    _, ep = mobilenet.mobilenet(
        tf.placeholder(tf.float32, (10, 224, 224, 16)), conv_defs=spec)
    num_convs = len(find_ops('Conv2D'))

    # This is mostly a sanity test. No deep reason for these particular
    # constants.
    #
    # All but first 2 and last one have  two convolutions, and there is one
    # extra conv that is not in the spec. (logits)
    self.assertEqual(num_convs, len(spec['spec']) * 2 - 2)
    # Check that depthwise are exposed.
    for i in range(2, 17):
      self.assertIn('layer_%d/depthwise_output' % i, ep) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:17,代碼來源:mobilenet_v2_test.py

示例2: testCreationNoClasses

# 需要導入模塊: from nets.mobilenet import mobilenet_v2 [as 別名]
# 或者: from nets.mobilenet.mobilenet_v2 import V2_DEF [as 別名]
def testCreationNoClasses(self):
    spec = copy.deepcopy(mobilenet_v2.V2_DEF)
    net, ep = mobilenet.mobilenet(
        tf.placeholder(tf.float32, (10, 224, 224, 16)), conv_defs=spec,
        num_classes=None)
    self.assertIs(net, ep['global_pool']) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:8,代碼來源:mobilenet_v2_test.py

示例3: testWithSplits

# 需要導入模塊: from nets.mobilenet import mobilenet_v2 [as 別名]
# 或者: from nets.mobilenet.mobilenet_v2 import V2_DEF [as 別名]
def testWithSplits(self):
    spec = copy.deepcopy(mobilenet_v2.V2_DEF)
    spec['overrides'] = {
        (ops.expanded_conv,): dict(split_expansion=2),
    }
    _, _ = mobilenet.mobilenet(
        tf.placeholder(tf.float32, (10, 224, 224, 16)), conv_defs=spec)
    num_convs = len(find_ops('Conv2D'))
    # All but 3 op has 3 conv operatore, the remainign 3 have one
    # and there is one unaccounted.
    self.assertEqual(num_convs, len(spec['spec']) * 3 - 5) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:13,代碼來源:mobilenet_v2_test.py

示例4: testWithOutputStride8

# 需要導入模塊: from nets.mobilenet import mobilenet_v2 [as 別名]
# 或者: from nets.mobilenet.mobilenet_v2 import V2_DEF [as 別名]
def testWithOutputStride8(self):
    out, _ = mobilenet.mobilenet_base(
        tf.placeholder(tf.float32, (10, 224, 224, 16)),
        conv_defs=mobilenet_v2.V2_DEF,
        output_stride=8,
        scope='MobilenetV2')
    self.assertEqual(out.get_shape().as_list()[1:3], [28, 28]) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:9,代碼來源:mobilenet_v2_test.py

示例5: testDivisibleBy

# 需要導入模塊: from nets.mobilenet import mobilenet_v2 [as 別名]
# 或者: from nets.mobilenet.mobilenet_v2 import V2_DEF [as 別名]
def testDivisibleBy(self):
    tf.reset_default_graph()
    mobilenet_v2.mobilenet(
        tf.placeholder(tf.float32, (10, 224, 224, 16)),
        conv_defs=mobilenet_v2.V2_DEF,
        divisible_by=16,
        min_depth=32)
    s = [op.outputs[0].get_shape().as_list()[-1] for op in find_ops('Conv2D')]
    s = set(s)
    self.assertSameElements([32, 64, 96, 160, 192, 320, 384, 576, 960, 1280,
                             1001], s) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:13,代碼來源:mobilenet_v2_test.py

示例6: testFineGrained

# 需要導入模塊: from nets.mobilenet import mobilenet_v2 [as 別名]
# 或者: from nets.mobilenet.mobilenet_v2 import V2_DEF [as 別名]
def testFineGrained(self):
    tf.reset_default_graph()
    # Verifies that depth_multiplier arg scope actually works
    # if no default min_depth is provided.

    mobilenet_v2.mobilenet(
        tf.placeholder(tf.float32, (10, 224, 224, 2)),
        conv_defs=mobilenet_v2.V2_DEF, depth_multiplier=0.01,
        finegrain_classification_mode=True)
    s = [op.outputs[0].get_shape().as_list()[-1] for op in find_ops('Conv2D')]
    s = set(s)
    # All convolutions will be 8->48, except for the last one.
    self.assertSameElements(s, [8, 48, 1001, 1280]) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:15,代碼來源:mobilenet_v2_test.py

示例7: testMobilenetBase

# 需要導入模塊: from nets.mobilenet import mobilenet_v2 [as 別名]
# 或者: from nets.mobilenet.mobilenet_v2 import V2_DEF [as 別名]
def testMobilenetBase(self):
    tf.reset_default_graph()
    # Verifies that mobilenet_base returns pre-pooling layer.
    with slim.arg_scope((mobilenet.depth_multiplier,), min_depth=32):
      net, _ = mobilenet_v2.mobilenet_base(
          tf.placeholder(tf.float32, (10, 224, 224, 16)),
          conv_defs=mobilenet_v2.V2_DEF, depth_multiplier=0.1)
      self.assertEqual(net.get_shape().as_list(), [10, 7, 7, 128]) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:10,代碼來源:mobilenet_v2_test.py

示例8: testWithOutputStride16

# 需要導入模塊: from nets.mobilenet import mobilenet_v2 [as 別名]
# 或者: from nets.mobilenet.mobilenet_v2 import V2_DEF [as 別名]
def testWithOutputStride16(self):
    tf.reset_default_graph()
    out, _ = mobilenet.mobilenet_base(
        tf.placeholder(tf.float32, (10, 224, 224, 16)),
        conv_defs=mobilenet_v2.V2_DEF,
        output_stride=16)
    self.assertEqual(out.get_shape().as_list()[1:3], [14, 14]) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:9,代碼來源:mobilenet_v2_test.py

示例9: testWithOutputStride8AndExplicitPadding

# 需要導入模塊: from nets.mobilenet import mobilenet_v2 [as 別名]
# 或者: from nets.mobilenet.mobilenet_v2 import V2_DEF [as 別名]
def testWithOutputStride8AndExplicitPadding(self):
    tf.reset_default_graph()
    out, _ = mobilenet.mobilenet_base(
        tf.placeholder(tf.float32, (10, 224, 224, 16)),
        conv_defs=mobilenet_v2.V2_DEF,
        output_stride=8,
        use_explicit_padding=True,
        scope='MobilenetV2')
    self.assertEqual(out.get_shape().as_list()[1:3], [28, 28]) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:11,代碼來源:mobilenet_v2_test.py

示例10: testWithOutputStride16AndExplicitPadding

# 需要導入模塊: from nets.mobilenet import mobilenet_v2 [as 別名]
# 或者: from nets.mobilenet.mobilenet_v2 import V2_DEF [as 別名]
def testWithOutputStride16AndExplicitPadding(self):
    tf.reset_default_graph()
    out, _ = mobilenet.mobilenet_base(
        tf.placeholder(tf.float32, (10, 224, 224, 16)),
        conv_defs=mobilenet_v2.V2_DEF,
        output_stride=16,
        use_explicit_padding=True)
    self.assertEqual(out.get_shape().as_list()[1:3], [14, 14]) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:10,代碼來源:mobilenet_v2_test.py

示例11: _create_modified_mobilenet_config

# 需要導入模塊: from nets.mobilenet import mobilenet_v2 [as 別名]
# 或者: from nets.mobilenet.mobilenet_v2 import V2_DEF [as 別名]
def _create_modified_mobilenet_config():
  conv_defs = copy.deepcopy(mobilenet_v2.V2_DEF)
  conv_defs['spec'][-1] = mobilenet.op(
      slim.conv2d, stride=1, kernel_size=[1, 1], num_outputs=256)
  return conv_defs 
開發者ID:ahmetozlu,項目名稱:vehicle_counting_tensorflow,代碼行數:7,代碼來源:ssd_mobilenet_v2_fpn_feature_extractor.py


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