Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions notebooks/parameter_tuning_grid_search.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,15 @@
"explore for each parameter. Thus, adding new parameters with their associated\n",
"values to be explored rapidly becomes computationally expensive. Because of\n",
"that, here we only explore the combination learning-rate and the maximum\n",
"number of nodes for a total of 4 x 3 = 12 combinations.\n",
"\n",
"number of nodes for a total of 4 x 3 = 12 combinations."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%%time\n",
"from sklearn.model_selection import GridSearchCV\n",
"\n",
Expand Down
1 change: 1 addition & 0 deletions python_scripts/parameter_tuning_grid_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
# that, here we only explore the combination learning-rate and the maximum
# number of nodes for a total of 4 x 3 = 12 combinations.

# %%
# %%time
from sklearn.model_selection import GridSearchCV

Expand Down