Question

If you have built two different xgbost models, with say 100 trees each, is it possible to combine into an xgboost model with 200 trees?

Était-ce utile?

La solution

No: the trees' results are added together to produce the final score, so combining two models would produce outputs roughly twice as large as desired. (Gradient boosted trees change the target labels being fitted by each tree, so the 101st tree has "reset" the targets when training.)

Licencié sous: CC-BY-SA avec attribution
scroll top