README.md

February 18, 2020 · View on GitHub

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

Contents

  1. 1RealnessGAN — Simple TensorFlow Implementation [Paper]
  2. 1.1: Real or Not Real, that is the Question
  3. 2Usage
  4. 3Author