All Projects → sugyan → Tf Dcgan

sugyan / Tf Dcgan

Licence: mit
DCGAN implementation by TensorFlow

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Tf Dcgan

Tpudcgan
Train DCGAN with TPUs on Google Cloud
Stars: ✭ 33 (-79.25%)
Mutual labels:  dcgan
Psgan
Periodic Spatial Generative Adversarial Networks
Stars: ✭ 108 (-32.08%)
Mutual labels:  dcgan
Deep Learning With Python
Example projects I completed to understand Deep Learning techniques with Tensorflow. Please note that I do no longer maintain this repository.
Stars: ✭ 134 (-15.72%)
Mutual labels:  dcgan
Beautifulgirls
爬虫+脸部识别+DCGAN脸部自动生成
Stars: ✭ 56 (-64.78%)
Mutual labels:  dcgan
Wasserstein Gan
Chainer implementation of Wasserstein GAN
Stars: ✭ 95 (-40.25%)
Mutual labels:  dcgan
Pytorch cpp
Deep Learning sample programs using PyTorch in C++
Stars: ✭ 114 (-28.3%)
Mutual labels:  dcgan
Keras Dcgan
Keras implementation of Deep Convolutional Generative Adversarial Networks
Stars: ✭ 943 (+493.08%)
Mutual labels:  dcgan
Face generator
DCGAN face generator 🧑.
Stars: ✭ 146 (-8.18%)
Mutual labels:  dcgan
Ganotebooks
wgan, wgan2(improved, gp), infogan, and dcgan implementation in lasagne, keras, pytorch
Stars: ✭ 1,446 (+809.43%)
Mutual labels:  dcgan
Dcgan Lsgan Wgan Gp Dragan Pytorch
DCGAN LSGAN WGAN-GP DRAGAN PyTorch
Stars: ✭ 134 (-15.72%)
Mutual labels:  dcgan
Matlab Gan
MATLAB implementations of Generative Adversarial Networks -- from GAN to Pixel2Pixel, CycleGAN
Stars: ✭ 63 (-60.38%)
Mutual labels:  dcgan
Dcgan Tensorflow
A Tensorflow implementation of Deep Convolutional Generative Adversarial Networks trained on Fashion-MNIST, CIFAR-10, etc.
Stars: ✭ 70 (-55.97%)
Mutual labels:  dcgan
Voxel Dcgan
A deep generative model of 3D volumetric shapes
Stars: ✭ 117 (-26.42%)
Mutual labels:  dcgan
Anime gan
GAN models with Anime.
Stars: ✭ 56 (-64.78%)
Mutual labels:  dcgan
Generative adversarial networks 101
Keras implementations of Generative Adversarial Networks. GANs, DCGAN, CGAN, CCGAN, WGAN and LSGAN models with MNIST and CIFAR-10 datasets.
Stars: ✭ 138 (-13.21%)
Mutual labels:  dcgan
Dcgan Pytorch
PyTorch Implementation of DCGAN trained on the CelebA dataset.
Stars: ✭ 32 (-79.87%)
Mutual labels:  dcgan
Tf Exercise Gan
Tensorflow implementation of different GANs and their comparisions
Stars: ✭ 110 (-30.82%)
Mutual labels:  dcgan
Gan theories
Resources and Implementations of Generative Adversarial Nets which are focusing on how to stabilize training process and generate high quality images: DCGAN, WGAN, EBGAN, BEGAN, etc.
Stars: ✭ 158 (-0.63%)
Mutual labels:  dcgan
Semantic image inpainting
Semantic Image Inpainting
Stars: ✭ 140 (-11.95%)
Mutual labels:  dcgan
Pytorch Gan Collections
PyTorch implementation of DCGAN, WGAN-GP and SNGAN.
Stars: ✭ 128 (-19.5%)
Mutual labels:  dcgan

TensorFlow implementation of DCGAN

What is DCGAN ?

Deep Convolutional Generative Adversarial Networks

Other implementations of DCGAN

Prerequisites

  • Python >= 2.7 or 3.5
  • TensorFlow >= 1.0

Usage

Train

dcgan = DCGAN()
train_images = <images batch>
losses = dcgan.loss(train_images)
train_op = dcgan.train(losses)

with tf.Session() as sess:
    sess.run(tf.global_variables_initializer())

    for step in range(FLAGS.max_steps):
        _, g_loss_value, d_loss_value = sess.run([train_op, losses[dcgan.g], losses[dcgan.d]])
    # save trained variables

Generate

dcgan = DCGAN()
images = dcgan.sample_images()

with tf.Session() as sess:
    # restore trained variables

    generated = sess.run(images)
    with open('<filename>', 'wb') as f:
        f.write(generated)

Example

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].