Skip to content

Commit 44e46a6

Browse files
committed
Fix early stopping example, fixes ageron#190
1 parent 0e4ae59 commit 44e46a6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

04_training_linear_models.ipynb

+2-3
Original file line numberDiff line numberDiff line change
@@ -1340,7 +1340,7 @@
13401340
},
13411341
"outputs": [],
13421342
"source": [
1343-
"from sklearn.base import clone\n",
1343+
"from copy import deepcopy\n",
13441344
"\n",
13451345
"poly_scaler = Pipeline([\n",
13461346
" (\"poly_features\", PolynomialFeatures(degree=90, include_bias=False)),\n",
@@ -1363,8 +1363,7 @@
13631363
" if val_error < minimum_val_error:\n",
13641364
" minimum_val_error = val_error\n",
13651365
" best_epoch = epoch\n",
1366-
" best_model = sgd_reg\n",
1367-
" sgd_reg = clone(sgd_reg)"
1366+
" best_model = deepcopy(sgd_reg)"
13681367
]
13691368
},
13701369
{

0 commit comments

Comments
 (0)