Skip to content

Commit

Permalink
Fix learning rate value in Course 4 Week 3 Lesson 2
Browse files Browse the repository at this point in the history
  • Loading branch information
albertvillanova committed Apr 5, 2020
1 parent 8b6dd9a commit e9734ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
" tf.keras.layers.Lambda(lambda x: x * 100.0)\n",
"])\n",
"\n",
"optimizer = tf.keras.optimizers.SGD(lr=5e-5, momentum=0.9)\n",
"optimizer = tf.keras.optimizers.SGD(lr=5e-6, momentum=0.9)\n",
"model.compile(loss=tf.keras.losses.Huber(),\n",
" optimizer=optimizer,\n",
" metrics=[\"mae\"])\n",
Expand Down

0 comments on commit e9734ad

Please sign in to comment.