WGAN-tensorflow icon indicating copy to clipboard operation
WGAN-tensorflow copied to clipboard

The loss function of critic

Open ShengrenNiu opened this issue 6 years ago • 1 comments

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)

ShengrenNiu avatar Sep 30 '18 01:09 ShengrenNiu

I think they are the same.

libing125 avatar May 27 '19 14:05 libing125