8000 DOC added reference to plot_grid_search_stats.py by Cheath2 · Pull Request #30965 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

DOC added reference to plot_grid_search_stats.py #30965

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions sklearn/model_selection/_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -1446,6 +1446,9 @@ class GridSearchCV(BaseSearchCV):
'params' : [{'kernel': 'poly', 'degree': 2}, ...],
}

For an example of visualization and interpretation of GridSearch results,
see :ref:`sphx_glr_auto_examples_model_selection_plot_grid_search_stats.py`.
Comment on lines +1449 to +1450
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like where this link is, but it could be also added to all the other 3 search cv classes where cv_results_ are present.


NOTE

The key ``'params'`` is used to store a list of parameter
Expand Down
0