All Projects → taki0112 → RealnessGAN-Tensorflow

taki0112 / RealnessGAN-Tensorflow

Licence: MIT License
Simple Tensorflow implementation of "RealnessGAN: Real or Not Real, that is the Question" (ICLR 2020 Spotlight)

Programming Languages

python
139335 projects - #7 most used programming language

RealnessGAN — Simple TensorFlow Implementation [Paper]

: Real or Not Real, that is the Question

Usage

fake_img = generator(noise)

real_logit = discriminator(real_img)
fake_logit = discriminator(fake_img)

g_loss = generator_loss(real_logit, fake_logit)
d_loss = discriminator_loss(real_logit, fake_logit)

Author

Junho Kim

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].