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
See here, updates_collections=None which means moving_mean and moving_var won't be put into tf.GraphKeys.UPDATE_OPS. so tf.get_collection(tf.GraphKeys.UPDATE_OPS) is [], I think it's a bug.
But if you just delete updates_collections=None, it can't work. Because there are two graphs for discriminators and there are different moving_mean and moving_var for different graph. So I think you should use different tf.control_dependencies for discriminator and generator.
The text was updated successfully, but these errors were encountered:
See here,
updates_collections=None
which meansmoving_mean
andmoving_var
won't be put intotf.GraphKeys.UPDATE_OPS
. so tf.get_collection(tf.GraphKeys.UPDATE_OPS) is[]
, I think it's a bug.But if you just delete
updates_collections=None
, it can't work. Because there are two graphs for discriminators and there are differentmoving_mean
andmoving_var
for different graph. So I think you should use differenttf.control_dependencies
for discriminator and generator.The text was updated successfully, but these errors were encountered: