Skip to content

Commit 051660e

Browse files
committed
minor syntax
1 parent 6c80909 commit 051660e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lab3/Lab3_rl.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@
210210
"def create_cartpole_model():\n",
211211
" model = tf.keras.models.Sequential([\n",
212212
" tf.keras.layers.Dense(units=32, activation='relu'),\n",
213-
" '''TODO: define the output dimension of the last Dense layer\n",
214-
" Hint: think about that the space the agent needs to act in'''\n",
213+
" # TODO: define the output dimension of the last Dense layer\n",
214+
" # Hint: think about that the space the agent needs to act in\n",
215215
" tf.keras.layers.Dense(units='''TODO''', activation=None) # TODO\n",
216216
" ])\n",
217217
" return model\n",

0 commit comments

Comments
 (0)