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


Python tflib.cifar10方法代碼示例

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


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

示例1: generate_image

# 需要導入模塊: import tflib [as 別名]
# 或者: from tflib import cifar10 [as 別名]
def generate_image(frame, netG):
    fixed_noise_128 = torch.randn(128, 128)
    if use_cuda:
        fixed_noise_128 = fixed_noise_128.cuda(gpu)
    noisev = autograd.Variable(fixed_noise_128, volatile=True)
    samples = netG(noisev)
    samples = samples.view(-1, 3, 32, 32)
    samples = samples.mul(0.5).add(0.5)
    samples = samples.cpu().data.numpy()

    lib.save_images.save_images(samples, './tmp/cifar10/samples_{}.jpg'.format(frame))

# For calculating inception score 
開發者ID:caogang,項目名稱:wgan-gp,代碼行數:15,代碼來源:gan_cifar10.py

示例2: get_data_loader

# 需要導入模塊: import tflib [as 別名]
# 或者: from tflib import cifar10 [as 別名]
def get_data_loader(self):
        if self.cfg.DATA_LOADER == 'pickle':
            return lib.batchloader
        if self.cfg.DATA_LOADER == 'cifar-10':
            return lib.cifar10
        if self.cfg.DATA_LOADER == 'lld-logo':
            return lib.twitter_images
        if self.cfg.DATA_LOADER == 'hdf5':
            return lib.hdf5_images
        if self.cfg.DATA_LOADER == 'imagenet-small':
            return lib.small_imagenet

    # restores a GAN model from checkpoint 
開發者ID:alex-sage,項目名稱:logo-gen,代碼行數:15,代碼來源:logo_wgan.py


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