Warm start
In terms of Automated ML (AutoML) pipelines, hyperparameter search space can grow really quickly and an exhaustive search becomes impracticable with limited time and finite resources. You need smarter ways to perform this task, especially if you have a large dataset with a complex model working on it. If you find yourself in this kind of situation, a GridSeachCV instances exhaustive search won't be feasible, or random parameter draws of RandomizedSearchCV might not give you the best results given limited time.
The basic idea of warm start is to use the information gained from previous training runs to identify smarter starting points for the next training run.
For example, LogisticRegression has a warm_start parameter, which is ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access