Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Data Science by (17.6k points)

For grid search is always time consuming, so I want to see how much it run now. For example ,it might output

paramsXXX processed

paramsYYY processed

...

1 Answer

0 votes
by (41.4k points)

So, increase the verbosity by adding the parameter verbose and giving it positive value to get the progress.

GridSearchCV(..., verbose=1)

If you wish to learn about Sk Learn visit this Scikit Learn Tutorial.

Browse Categories

...