Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 72707e2

Browse files
alseambusheraymericdamien
authored andcommitted
Fix comment in convolutional_network.py (aymericdamien#173)
1 parent 0bacc59 commit 72707e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/3_NeuralNetworks/convolutional_network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def conv_net(x_dict, n_classes, dropout, reuse, is_training):
4646
# Max Pooling (down-sampling) with strides of 2 and kernel size of 2
4747
conv1 = tf.layers.max_pooling2d(conv1, 2, 2)
4848

49-
# Convolution Layer with 32 filters and a kernel size of 5
49+
# Convolution Layer with 64 filters and a kernel size of 3
5050
conv2 = tf.layers.conv2d(conv1, 64, 3, activation=tf.nn.relu)
5151
# Max Pooling (down-sampling) with strides of 2 and kernel size of 2
5252
conv2 = tf.layers.max_pooling2d(conv2, 2, 2)

0 commit comments

Comments
 (0)