Hyperparameter Tuning

Apply grid search cross-validation to XGBoost models.

Chapter Goals:

  • Apply grid search cross-validation to an XGBoost model

A. Using scikit-learn’s GridSearchCV

One of the benefits of using XGBoost's scikit-learn style models is that we can use the models with the actual scikit-learn API. A common scikit-learn object used with XGBoost ...