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
Is setting trainable = False not necessary in the variable batch in the function momentum_optimzer?
ie. batch = tf.Variable(0,trainable=False,name=global_step) instead of just batch = tf.Variable(0).
The text was updated successfully, but these errors were encountered:
Is setting
trainable = False
not necessary in the variablebatch
in the functionmomentum_optimzer
?ie.
batch = tf.Variable(0,trainable=False,name=global_step)
instead of justbatch = tf.Variable(0)
.The text was updated successfully, but these errors were encountered: