Browse Source

Fix parameters description (#185)

Przemek Piotrowski 7 years ago
parent
commit
69e9d5c283
1 changed files with 1 additions and 1 deletions
  1. 1 1
      notebooks/3_NeuralNetworks/convolutional_network.ipynb

+ 1 - 1
notebooks/3_NeuralNetworks/convolutional_network.ipynb

@@ -103,7 +103,7 @@
     "        # Max Pooling (down-sampling) with strides of 2 and kernel size of 2\n",
     "        # Max Pooling (down-sampling) with strides of 2 and kernel size of 2\n",
     "        conv1 = tf.layers.max_pooling2d(conv1, 2, 2)\n",
     "        conv1 = tf.layers.max_pooling2d(conv1, 2, 2)\n",
     "\n",
     "\n",
-    "        # Convolution Layer with 32 filters and a kernel size of 5\n",
+    "        # Convolution Layer with 64 filters and a kernel size of 3\n",
     "        conv2 = tf.layers.conv2d(conv1, 64, 3, activation=tf.nn.relu)\n",
     "        conv2 = tf.layers.conv2d(conv1, 64, 3, activation=tf.nn.relu)\n",
     "        # Max Pooling (down-sampling) with strides of 2 and kernel size of 2\n",
     "        # Max Pooling (down-sampling) with strides of 2 and kernel size of 2\n",
     "        conv2 = tf.layers.max_pooling2d(conv2, 2, 2)\n",
     "        conv2 = tf.layers.max_pooling2d(conv2, 2, 2)\n",