Skip to content

Commit 66d9d93

Browse files
author
Chris Beaumont
committed
typo: pass n_folds properly
1 parent 95449f0 commit 66d9d93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

HW2.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1365,7 +1365,7 @@
13651365
" y, X = prepare_features(frame2008, featureslist)\n",
13661366
" clf = LogisticRegression()\n",
13671367
" parameters = {\"C\": np.logspace(-4, 3, num=num_p)}\n",
1368-
" gs = GridSearchCV(clf, param_grid=parameters, cv=10)\n",
1368+
" gs = GridSearchCV(clf, param_grid=parameters, cv=n_folds)\n",
13691369
" gs.fit(X, y)\n",
13701370
" return gs.best_params_, gs.best_score_\n"
13711371
],

0 commit comments

Comments
 (0)