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


Python alexnet.alexnet_v2方法代碼示例

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


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

示例1: testEndPoints

# 需要導入模塊: from nets import alexnet [as 別名]
# 或者: from nets.alexnet import alexnet_v2 [as 別名]
def testEndPoints(self):
    batch_size = 5
    height, width = 224, 224
    num_classes = 1000
    with self.test_session():
      inputs = tf.random_uniform((batch_size, height, width, 3))
      _, end_points = alexnet.alexnet_v2(inputs, num_classes)
      expected_names = ['alexnet_v2/conv1',
                        'alexnet_v2/pool1',
                        'alexnet_v2/conv2',
                        'alexnet_v2/pool2',
                        'alexnet_v2/conv3',
                        'alexnet_v2/conv4',
                        'alexnet_v2/conv5',
                        'alexnet_v2/pool5',
                        'alexnet_v2/fc6',
                        'alexnet_v2/fc7',
                        'alexnet_v2/fc8'
                       ]
      self.assertSetEqual(set(end_points.keys()), set(expected_names)) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:22,代碼來源:alexnet_test.py

示例2: testNoClasses

# 需要導入模塊: from nets import alexnet [as 別名]
# 或者: from nets.alexnet import alexnet_v2 [as 別名]
def testNoClasses(self):
    batch_size = 5
    height, width = 224, 224
    num_classes = None
    with self.test_session():
      inputs = tf.random_uniform((batch_size, height, width, 3))
      net, end_points = alexnet.alexnet_v2(inputs, num_classes)
      expected_names = ['alexnet_v2/conv1',
                        'alexnet_v2/pool1',
                        'alexnet_v2/conv2',
                        'alexnet_v2/pool2',
                        'alexnet_v2/conv3',
                        'alexnet_v2/conv4',
                        'alexnet_v2/conv5',
                        'alexnet_v2/pool5',
                        'alexnet_v2/fc6',
                        'alexnet_v2/fc7'
                       ]
      self.assertSetEqual(set(end_points.keys()), set(expected_names))
      self.assertTrue(net.op.name.startswith('alexnet_v2/fc7'))
      self.assertListEqual(net.get_shape().as_list(),
                           [batch_size, 1, 1, 4096]) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:24,代碼來源:alexnet_test.py

示例3: testTrainEvalWithReuse

# 需要導入模塊: from nets import alexnet [as 別名]
# 或者: from nets.alexnet import alexnet_v2 [as 別名]
def testTrainEvalWithReuse(self):
    train_batch_size = 2
    eval_batch_size = 1
    train_height, train_width = 224, 224
    eval_height, eval_width = 300, 400
    num_classes = 1000
    with self.test_session():
      train_inputs = tf.random_uniform(
          (train_batch_size, train_height, train_width, 3))
      logits, _ = alexnet.alexnet_v2(train_inputs)
      self.assertListEqual(logits.get_shape().as_list(),
                           [train_batch_size, num_classes])
      tf.get_variable_scope().reuse_variables()
      eval_inputs = tf.random_uniform(
          (eval_batch_size, eval_height, eval_width, 3))
      logits, _ = alexnet.alexnet_v2(eval_inputs, is_training=False,
                                     spatial_squeeze=False)
      self.assertListEqual(logits.get_shape().as_list(),
                           [eval_batch_size, 4, 7, num_classes])
      logits = tf.reduce_mean(logits, [1, 2])
      predictions = tf.argmax(logits, 1)
      self.assertEquals(predictions.get_shape().as_list(), [eval_batch_size]) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:24,代碼來源:alexnet_test.py

示例4: testFullyConvolutional

# 需要導入模塊: from nets import alexnet [as 別名]
# 或者: from nets.alexnet import alexnet_v2 [as 別名]
def testFullyConvolutional(self):
    batch_size = 1
    height, width = 300, 400
    num_classes = 1000
    with self.test_session():
      inputs = tf.random_uniform((batch_size, height, width, 3))
      logits, _ = alexnet.alexnet_v2(inputs, num_classes, spatial_squeeze=False)
      self.assertEquals(logits.op.name, 'alexnet_v2/fc8/BiasAdd')
      self.assertListEqual(logits.get_shape().as_list(),
                           [batch_size, 4, 7, num_classes]) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:12,代碼來源:alexnet_test.py

示例5: testBuild

# 需要導入模塊: from nets import alexnet [as 別名]
# 或者: from nets.alexnet import alexnet_v2 [as 別名]
def testBuild(self):
    batch_size = 5
    height, width = 224, 224
    num_classes = 1000
    with self.test_session():
      inputs = tf.random_uniform((batch_size, height, width, 3))
      logits, _ = alexnet.alexnet_v2(inputs, num_classes)
      self.assertEquals(logits.op.name, 'alexnet_v2/fc8/squeezed')
      self.assertListEqual(logits.get_shape().as_list(),
                           [batch_size, num_classes]) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:12,代碼來源:alexnet_test.py

示例6: testModelVariables

# 需要導入模塊: from nets import alexnet [as 別名]
# 或者: from nets.alexnet import alexnet_v2 [as 別名]
def testModelVariables(self):
    batch_size = 5
    height, width = 224, 224
    num_classes = 1000
    with self.test_session():
      inputs = tf.random_uniform((batch_size, height, width, 3))
      alexnet.alexnet_v2(inputs, num_classes)
      expected_names = ['alexnet_v2/conv1/weights',
                        'alexnet_v2/conv1/biases',
                        'alexnet_v2/conv2/weights',
                        'alexnet_v2/conv2/biases',
                        'alexnet_v2/conv3/weights',
                        'alexnet_v2/conv3/biases',
                        'alexnet_v2/conv4/weights',
                        'alexnet_v2/conv4/biases',
                        'alexnet_v2/conv5/weights',
                        'alexnet_v2/conv5/biases',
                        'alexnet_v2/fc6/weights',
                        'alexnet_v2/fc6/biases',
                        'alexnet_v2/fc7/weights',
                        'alexnet_v2/fc7/biases',
                        'alexnet_v2/fc8/weights',
                        'alexnet_v2/fc8/biases',
                       ]
      model_variables = [v.op.name for v in slim.get_model_variables()]
      self.assertSetEqual(set(model_variables), set(expected_names)) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:28,代碼來源:alexnet_test.py

示例7: testEvaluation

# 需要導入模塊: from nets import alexnet [as 別名]
# 或者: from nets.alexnet import alexnet_v2 [as 別名]
def testEvaluation(self):
    batch_size = 2
    height, width = 224, 224
    num_classes = 1000
    with self.test_session():
      eval_inputs = tf.random_uniform((batch_size, height, width, 3))
      logits, _ = alexnet.alexnet_v2(eval_inputs, is_training=False)
      self.assertListEqual(logits.get_shape().as_list(),
                           [batch_size, num_classes])
      predictions = tf.argmax(logits, 1)
      self.assertListEqual(predictions.get_shape().as_list(), [batch_size]) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:13,代碼來源:alexnet_test.py

示例8: testForward

# 需要導入模塊: from nets import alexnet [as 別名]
# 或者: from nets.alexnet import alexnet_v2 [as 別名]
def testForward(self):
    batch_size = 1
    height, width = 224, 224
    with self.test_session() as sess:
      inputs = tf.random_uniform((batch_size, height, width, 3))
      logits, _ = alexnet.alexnet_v2(inputs)
      sess.run(tf.global_variables_initializer())
      output = sess.run(logits)
      self.assertTrue(output.any()) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:11,代碼來源:alexnet_test.py

示例9: testGlobalPool

# 需要導入模塊: from nets import alexnet [as 別名]
# 或者: from nets.alexnet import alexnet_v2 [as 別名]
def testGlobalPool(self):
    batch_size = 1
    height, width = 256, 256
    num_classes = 1000
    with self.test_session():
      inputs = tf.random_uniform((batch_size, height, width, 3))
      logits, _ = alexnet.alexnet_v2(inputs, num_classes, spatial_squeeze=False,
                                     global_pool=True)
      self.assertEquals(logits.op.name, 'alexnet_v2/fc8/BiasAdd')
      self.assertListEqual(logits.get_shape().as_list(),
                           [batch_size, 1, 1, num_classes]) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:13,代碼來源:alexnet_test.py


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