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


Python variables.get_variables方法代碼示例

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


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

示例1: testGetVariables

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testGetVariables(self):
    with self.test_session():
      with tf.variable_scope('A'):
        a = variables.variable('a', [5])
      with tf.variable_scope('B'):
        b = variables.variable('a', [5])
      self.assertEquals([a, b], variables.get_variables())
      self.assertEquals([a], variables.get_variables('A'))
      self.assertEquals([b], variables.get_variables('B')) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:11,代碼來源:variables_test.py

示例2: testGetVariablesSuffix

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testGetVariablesSuffix(self):
    with self.test_session():
      with tf.variable_scope('A'):
        a = variables.variable('a', [5])
      with tf.variable_scope('A'):
        b = variables.variable('b', [5])
      self.assertEquals([a], variables.get_variables(suffix='a'))
      self.assertEquals([b], variables.get_variables(suffix='b')) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:10,代碼來源:variables_test.py

示例3: testNoneGetVariablesToRestore

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testNoneGetVariablesToRestore(self):
    with self.test_session():
      with tf.variable_scope('A'):
        a = variables.variable('a', [5], restore=False)
      with tf.variable_scope('B'):
        b = variables.variable('a', [5], restore=False)
      self.assertEquals([], variables.get_variables_to_restore())
      self.assertEquals([a, b], variables.get_variables()) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:10,代碼來源:variables_test.py

示例4: testGetMixedVariablesToRestore

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testGetMixedVariablesToRestore(self):
    with self.test_session():
      with tf.variable_scope('A'):
        a = variables.variable('a', [5])
        b = variables.variable('b', [5], restore=False)
      with tf.variable_scope('B'):
        c = variables.variable('c', [5])
        d = variables.variable('d', [5], restore=False)
      self.assertEquals([a, b, c, d], variables.get_variables())
      self.assertEquals([a, c], variables.get_variables_to_restore()) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:12,代碼來源:variables_test.py

示例5: testReuseVariable

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testReuseVariable(self):
    with self.test_session():
      with tf.variable_scope('A'):
        a = variables.variable('a', [])
      with tf.variable_scope('A', reuse=True):
        b = variables.variable('a', [])
      self.assertEquals(a, b)
      self.assertListEqual([a], variables.get_variables()) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:10,代碼來源:variables_test.py

示例6: testReuseVars

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testReuseVars(self):
    height, width = 3, 3
    with self.test_session():
      images = tf.random_uniform((5, height, width, 3), seed=1)
      ops.conv2d(images, 32, [3, 3], scope='conv1')
      self.assertEquals(len(variables.get_variables()), 2)
      ops.conv2d(images, 32, [3, 3], scope='conv1', reuse=True)
      self.assertEquals(len(variables.get_variables()), 2) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:10,代碼來源:ops_test.py

示例7: testNonReuseVars

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testNonReuseVars(self):
    height, width = 3, 3
    with self.test_session():
      images = tf.random_uniform((5, height, width, 3), seed=1)
      ops.conv2d(images, 32, [3, 3])
      self.assertEquals(len(variables.get_variables()), 2)
      ops.conv2d(images, 32, [3, 3])
      self.assertEquals(len(variables.get_variables()), 4) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:10,代碼來源:ops_test.py

示例8: testReuseConvWithWD

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testReuseConvWithWD(self):
    height, width = 3, 3
    with self.test_session():
      images = tf.random_uniform((5, height, width, 3), seed=1)
      ops.conv2d(images, 32, [3, 3], weight_decay=0.01, scope='conv1')
      self.assertEquals(len(variables.get_variables()), 2)
      self.assertEquals(
          len(tf.get_collection(tf.GraphKeys.REGULARIZATION_LOSSES)), 1)
      ops.conv2d(images, 32, [3, 3], weight_decay=0.01, scope='conv1',
                 reuse=True)
      self.assertEquals(len(variables.get_variables()), 2)
      self.assertEquals(
          len(tf.get_collection(tf.GraphKeys.REGULARIZATION_LOSSES)), 1) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:15,代碼來源:ops_test.py

示例9: testConvWithBatchNorm

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testConvWithBatchNorm(self):
    height, width = 3, 3
    with self.test_session():
      images = tf.random_uniform((5, height, width, 32), seed=1)
      with scopes.arg_scope([ops.conv2d], batch_norm_params={'decay': 0.9}):
        net = ops.conv2d(images, 32, [3, 3])
        net = ops.conv2d(net, 32, [3, 3])
      self.assertEquals(len(variables.get_variables()), 8)
      self.assertEquals(len(variables.get_variables('Conv/BatchNorm')), 3)
      self.assertEquals(len(variables.get_variables('Conv_1/BatchNorm')), 3) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:12,代碼來源:ops_test.py

示例10: testReuseConvWithBatchNorm

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testReuseConvWithBatchNorm(self):
    height, width = 3, 3
    with self.test_session():
      images = tf.random_uniform((5, height, width, 32), seed=1)
      with scopes.arg_scope([ops.conv2d], batch_norm_params={'decay': 0.9}):
        net = ops.conv2d(images, 32, [3, 3], scope='Conv')
        net = ops.conv2d(net, 32, [3, 3], scope='Conv', reuse=True)
      self.assertEquals(len(variables.get_variables()), 4)
      self.assertEquals(len(variables.get_variables('Conv/BatchNorm')), 3)
      self.assertEquals(len(variables.get_variables('Conv_1/BatchNorm')), 0) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:12,代碼來源:ops_test.py

示例11: testReuseFCWithWD

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testReuseFCWithWD(self):
    height, width = 3, 3
    with self.test_session():
      inputs = tf.random_uniform((5, height * width * 3), seed=1)
      ops.fc(inputs, 32, weight_decay=0.01, scope='fc')
      self.assertEquals(len(variables.get_variables()), 2)
      self.assertEquals(
          len(tf.get_collection(tf.GraphKeys.REGULARIZATION_LOSSES)), 1)
      ops.fc(inputs, 32, weight_decay=0.01, scope='fc', reuse=True)
      self.assertEquals(len(variables.get_variables()), 2)
      self.assertEquals(
          len(tf.get_collection(tf.GraphKeys.REGULARIZATION_LOSSES)), 1) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:14,代碼來源:ops_test.py

示例12: testFCWithBatchNorm

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testFCWithBatchNorm(self):
    height, width = 3, 3
    with self.test_session():
      images = tf.random_uniform((5, height * width * 3), seed=1)
      with scopes.arg_scope([ops.fc], batch_norm_params={}):
        net = ops.fc(images, 27)
        net = ops.fc(net, 27)
      self.assertEquals(len(variables.get_variables()), 8)
      self.assertEquals(len(variables.get_variables('FC/BatchNorm')), 3)
      self.assertEquals(len(variables.get_variables('FC_1/BatchNorm')), 3) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:12,代碼來源:ops_test.py

示例13: testReuseFCWithBatchNorm

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testReuseFCWithBatchNorm(self):
    height, width = 3, 3
    with self.test_session():
      images = tf.random_uniform((5, height * width * 3), seed=1)
      with scopes.arg_scope([ops.fc], batch_norm_params={'decay': 0.9}):
        net = ops.fc(images, 27, scope='fc1')
        net = ops.fc(net, 27, scope='fc1', reuse=True)
      self.assertEquals(len(variables.get_variables()), 4)
      self.assertEquals(len(variables.get_variables('fc1/BatchNorm')), 3) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:11,代碼來源:ops_test.py

示例14: testEvalMovingVars

# 需要導入模塊: from inception.slim import variables [as 別名]
# 或者: from inception.slim.variables import get_variables [as 別名]
def testEvalMovingVars(self):
    height, width = 3, 3
    with self.test_session() as sess:
      image_shape = (10, height, width, 3)
      image_values = np.random.rand(*image_shape)
      expected_mean = np.mean(image_values, axis=(0, 1, 2))
      expected_var = np.var(image_values, axis=(0, 1, 2))
      images = tf.constant(image_values, shape=image_shape, dtype=tf.float32)
      output = ops.batch_norm(images, decay=0.1, is_training=False)
      update_ops = tf.get_collection(ops.UPDATE_OPS_COLLECTION)
      with tf.control_dependencies(update_ops):
        output = tf.identity(output)
      # Initialize all variables
      sess.run(tf.global_variables_initializer())
      moving_mean = variables.get_variables('BatchNorm/moving_mean')[0]
      moving_variance = variables.get_variables('BatchNorm/moving_variance')[0]
      mean, variance = sess.run([moving_mean, moving_variance])
      # After initialization moving_mean == 0 and moving_variance == 1.
      self.assertAllClose(mean, [0] * 3)
      self.assertAllClose(variance, [1] * 3)
      # Simulate assigment from saver restore.
      init_assigns = [tf.assign(moving_mean, expected_mean),
                      tf.assign(moving_variance, expected_var)]
      sess.run(init_assigns)
      for _ in range(10):
        sess.run([output], {images: np.random.rand(*image_shape)})
      mean = moving_mean.eval()
      variance = moving_variance.eval()
      # Although we feed different images, the moving_mean and moving_variance
      # shouldn't change.
      self.assertAllClose(mean, expected_mean)
      self.assertAllClose(variance, expected_var) 
開發者ID:ringringyi,項目名稱:DOTA_models,代碼行數:34,代碼來源:ops_test.py


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