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 a34a153 commit ec11ecdCopy full SHA for ec11ecd
example/tutorial_keras.py
@@ -18,7 +18,7 @@
18
x = tf.placeholder(tf.float32, shape=[None, 784])
19
y_ = tf.placeholder(tf.int64, shape=[None,])
20
21
-def keras_block(x, is_train=True):
+def keras_block(x):
22
x = Dropout(0.8)(x)
23
x = Dense(800, activation='relu')(x)
24
x = Dropout(0.5)(x)
0 commit comments