Skip to content

Commit e7c9285

Browse files
committed
Update exercise12_HyperParameterTuning.ipynb
1 parent 4c61cdc commit e7c9285

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

exercise12_HyperParameterTuning.ipynb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,10 @@
217217
" units=hp.Int(\n",
218218
" f\"no_perceptrons_{layer}\", min_value=2, max_value=16, step=2\n",
219219
" ),\n",
220-
" activation=hp.Choice(\"activation\", [\"tanh\", \"relu\", \"sigmoid\"]),\n",
220+
" activation=hp.Choice(\"activation\", [\"tanh\", \"relu\", \"sigmoid\", \"softmax\"]),\n",
221+
" # sigmoid and softmax could be choice that we want to check as well\n",
222+
" # they are not restricted to be used in a classifiction problem\n",
223+
" # output layer\n",
221224
" )\n",
222225
" )\n",
223226
" # softmax output layer\n",

0 commit comments

Comments
 (0)