Skip to content

Commit 0a9576e

Browse files
committed
pong cnn todo fix
1 parent 52f02df commit 0a9576e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lab3/Lab3_rl.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -691,14 +691,14 @@
691691
" \n",
692692
" # Convolutional layers\n",
693693
" tf.keras.layers.Conv2D(filters=16, kernel_size=(8,8), strides=(4,4), activation='relu', padding='same'),\n",
694-
" '''TODO: define a convolutional layer with 32 4x4 filters and 2x2 stride, ReLu activation'''\n",
694+
" # TODO: define a convolutional layer with 32 4x4 filters and 2x2 stride, ReLu activation\n",
695695
" tf.keras.layers.Conv2D('''TODO''', '''TODO''', '''TODO''', '''TODO''', padding='same'), # TODO\n",
696696
" tf.keras.layers.Flatten(),\n",
697697
" \n",
698698
" # Fully connected layer and output\n",
699699
" tf.keras.layers.Dense(units=256, activation='relu'),\n",
700-
" '''TODO: define the output dimension of the last Dense layer\n",
701-
" Hint: think about that the space the agent needs to act in'''\n",
700+
" # TODO: define the output dimension of the last Dense layer\n",
701+
" # Hint: think about that the space the agent needs to act in\n",
702702
" tf.keras.layers.Dense('''TODO''', activation=None) # TODO\n",
703703
" ])\n",
704704
" return model\n",

0 commit comments

Comments
 (0)