Commit a763e45b authored by Asim Shankar's avatar Asim Shankar
Browse files

official/mnist: Another formatting tweak

parent d1718519
...@@ -66,13 +66,15 @@ def create_model(data_format): ...@@ -66,13 +66,15 @@ def create_model(data_format):
5, 5,
padding='same', padding='same',
data_format=data_format, data_format=data_format,
activation=tf.nn.relu), max_pool, activation=tf.nn.relu),
max_pool,
l.Conv2D( l.Conv2D(
64, 64,
5, 5,
padding='same', padding='same',
data_format=data_format, data_format=data_format,
activation=tf.nn.relu), max_pool, activation=tf.nn.relu),
max_pool,
l.Flatten(), l.Flatten(),
l.Dense(1024, activation=tf.nn.relu), l.Dense(1024, activation=tf.nn.relu),
l.Dropout(0.4), l.Dropout(0.4),
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment