Skip to content
This repository has been archived by the owner on Feb 24, 2022. It is now read-only.

Commit

Permalink
Merge pull request #385 from MichelML/patch-2
Browse files Browse the repository at this point in the history
Update GridSearchCV import path
  • Loading branch information
ronny-udacity authored Mar 3, 2021
2 parents a79366f + 3667e46 commit 87ad2ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/finding_donors/finding_donors.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@
"source": [
"### Implementation: Model Tuning\n",
"Fine tune the chosen model. Use grid search (`GridSearchCV`) with at least one important parameter tuned with at least 3 different values. You will need to use the entire training set for this. In the code cell below, you will need to implement the following:\n",
"- Import [`sklearn.grid_search.GridSearchCV`](http://scikit-learn.org/0.17/modules/generated/sklearn.grid_search.GridSearchCV.html) and [`sklearn.metrics.make_scorer`](http://scikit-learn.org/stable/modules/generated/sklearn.metrics.make_scorer.html).\n",
"- Import [`sklearn.model_selection.GridSearchCV`](https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.GridSearchCV.html) and [`sklearn.metrics.make_scorer`](http://scikit-learn.org/stable/modules/generated/sklearn.metrics.make_scorer.html).\n",
"- Initialize the classifier you've chosen and store it in `clf`.\n",
" - Set a `random_state` if one is available to the same state you set before.\n",
"- Create a dictionary of parameters you wish to tune for the chosen model.\n",
Expand Down

0 comments on commit 87ad2ce

Please sign in to comment.