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
Hi, In tensorflow, when using bach norm layer , we need to updata moving_mean and moving_vairous, so we need use this operation
update_ops = tf.get_collection(tf.GraphKeys.UPDATE_OPS)
with tf.control_dependencies(update_ops):
train_op = optimizer.minimize(loss)
but in the code i do not find this operation. Could you tell me why???
The text was updated successfully, but these errors were encountered:
Hi, In tensorflow, when using bach norm layer , we need to updata moving_mean and moving_vairous, so we need use this operation
update_ops = tf.get_collection(tf.GraphKeys.UPDATE_OPS)
with tf.control_dependencies(update_ops):
train_op = optimizer.minimize(loss)
but in the code i do not find this operation. Could you tell me why???
The text was updated successfully, but these errors were encountered: