-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

The Kaggle Book
By :

The core algorithms for hyperparameter optimization, found in the Scikit-learn package, are grid search and random search. Recently, the Scikit-learn contributors have also added the halving algorithm to improve the performances of both grid search and random search strategies.
In this section, we will discuss all these basic techniques. By mastering them, not only will you have effective optimization tools for some specific problems (for instance, SVMs are usually optimized by grid search) but you will also be familiar with the basics of how hyperparameter optimization works.
To start with, it is crucial to figure out what the necessary ingredients are:
All these elements come together in the...