We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17a3964 commit 35e12d4Copy full SHA for 35e12d4
lab-09-4-xor_tensorboard.py
@@ -45,7 +45,7 @@
45
cost_summ = tf.summary.scalar("cost", cost)
46
47
with tf.name_scope("train") as scope:
48
- train = tf.train.GradientDescentOptimizer(learning_rate=learning_rate).minimize(cost)
+ train = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(cost)
49
50
# Accuracy computation
51
# True if hypothesis>0.5 else False
0 commit comments