Skip to content

Commit be54767

Browse files
godpenykkweon
authored andcommitted
fix typo : lab-11-4-mnist_cnn_layers.py
1 parent e3e7ee8 commit be54767

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lab-11-4-mnist_cnn_layers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def _build_net(self):
5353
dropout2 = tf.layers.dropout(inputs=pool2,
5454
rate=0.3, training=self.training)
5555

56-
# Convolutional Layer #2 and Pooling Layer #2
56+
# Convolutional Layer #3 and Pooling Layer #3
5757
conv3 = tf.layers.conv2d(inputs=dropout2, filters=128, kernel_size=[3, 3],
5858
padding="same", activation=tf.nn.relu)
5959
pool3 = tf.layers.max_pooling2d(inputs=conv3, pool_size=[2, 2],

0 commit comments

Comments
 (0)