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
emm in dis.py.131, the L2 regr has been add to calculate D loss , and maybe the equation is wrong?
self.loss = tf.reduce_mean(losses) + self.l2_reg_lambda + self.l2_loss
it should be:
self.loss = tf.reduce_mean(losses) + self.l2_reg_lambda * self.l2_loss
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: