Skip to content

taki0112/RealnessGAN-Tensorflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages