Another Way of Growing Trees: XGBoost's grow_policy
Learn about XGBoost's lossguide grow policy and how to set the tree_method hyperparameter.
We'll cover the following...
Controlling tree growth in XGBoost
In addition to limiting the maximum depth of trees using a max_depth
hyperparameter, there is another paradigm for controlling tree growth: finding the node where a split would result in the greatest reduction in the loss function, and splitting this node, regardless of how deep it will make the tree. This may result in a tree with one or two very deep branches, while the other branches may not have grown very far. XGBoost offers a hyperparameter called ...
Access this course and 1400+ top-rated courses and projects.