Hyperparameter Tuning in Python
Alex Scriven
Data Scientist
Hyperparameters vs Parameters:
Hyperparameters are components of the model that you set. They are not learned during the modeling process
Parameters are not set by you. The algorithm will discover these for you
You learned:
We introduced grid search:
A computationally expensive option but is guaranteed to find the best in your grid. (Remember the importance of setting a good grid!)
Random Search:
This method is faster at getting a reasonable model but will not get the best in your grid.
Looking at informed search:
In informed search, each iteration learns from the last, whereas in Grid and Random, modeling is all done at once and then the best is picked.
Informed methods explored were:
Hyperparameter Tuning in Python