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


Python dcgan.discriminator方法代碼示例

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


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

示例1: test_discriminator_graph

# 需要導入模塊: from nets import dcgan [as 別名]
# 或者: from nets.dcgan import discriminator [as 別名]
def test_discriminator_graph(self):
    # Check graph construction for a number of image size/depths and batch
    # sizes.
    for i, batch_size in zip(xrange(1, 6), xrange(3, 8)):
      tf.reset_default_graph()
      img_w = 2 ** i
      image = tf.random_uniform([batch_size, img_w, img_w, 3], -1, 1)
      output, end_points = dcgan.discriminator(
          image,
          depth=32)

      self.assertAllEqual([batch_size, 1], output.get_shape().as_list())

      expected_names = ['conv%i' % j for j in xrange(1, i+1)] + ['logits']
      self.assertSetEqual(set(expected_names), set(end_points.keys()))

      # Check layer depths.
      for j in range(1, i+1):
        layer = end_points['conv%i' % j]
        self.assertEqual(32 * 2**(j-1), layer.get_shape().as_list()[-1]) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:22,代碼來源:dcgan_test.py

示例2: test_discriminator_invalid_input

# 需要導入模塊: from nets import dcgan [as 別名]
# 或者: from nets.dcgan import discriminator [as 別名]
def test_discriminator_invalid_input(self):
    wrong_dim_img = tf.zeros([5, 32, 32])
    with self.assertRaises(ValueError):
      dcgan.discriminator(wrong_dim_img)

    spatially_undefined_shape = tf.placeholder(tf.float32, [5, 32, None, 3])
    with self.assertRaises(ValueError):
      dcgan.discriminator(spatially_undefined_shape)

    not_square = tf.zeros([5, 32, 16, 3])
    with self.assertRaisesRegexp(ValueError, 'not have equal width and height'):
      dcgan.discriminator(not_square)

    not_power_2 = tf.zeros([5, 30, 30, 3])
    with self.assertRaisesRegexp(ValueError, 'not a power of 2'):
      dcgan.discriminator(not_power_2) 
開發者ID:leimao,項目名稱:DeepLab_v3,代碼行數:18,代碼來源:dcgan_test.py


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