WGAN-tensorflow
WGAN-tensorflow copied to clipboard
The loss function of critic
c_loss = tf.reduce_mean(fake_logit - true_logit)
maybe wrong. It should be
c_loss = tf.reduce_mean(fake_logit) - tf.reduce_mean(true_logit)
I think they are the same.