You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think there is a bug here, or at least an implementation of gradient penalty not consistent with the original paper. the alpha coefficient should be randomized per image, and not per pixel.
It should be:
alpha = tf.random_uniform(shape=[input_shape[0], 1, 1, 1], minval=0., maxval=1.)
We want to sample images along the lines connecting the real and fake images. This does something strange.
The text was updated successfully, but these errors were encountered:
progressive_growing_of_GANs/model.py
Line 85 in 04351d6
I think there is a bug here, or at least an implementation of gradient penalty not consistent with the original paper. the alpha coefficient should be randomized per image, and not per pixel.
It should be:
alpha = tf.random_uniform(shape=[input_shape[0], 1, 1, 1], minval=0., maxval=1.)
We want to sample images along the lines connecting the real and fake images. This does something strange.
The text was updated successfully, but these errors were encountered: