You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@hywchina I'm not sure I follow, did you mean the node number being a continuous sequence like 1, 2, 3, ..., 7, 8, 9?
That's related to how the tree updaters split (and prune) each node. Splitting at 1 then the two children will be 2, 3. Then split at 2, 4, 5 will become children of 2. The children of 3 will be 6, 7, assuming depth-wise splitting scheme. If pruner is used, the deleted node number will be reused for later splits.
When I use XGB tree model, in a tree, the node number of the tree is continuous, some are discontinuous, may I ask why?
The text was updated successfully, but these errors were encountered: