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?

有帮助吗?

解决方案

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.)

许可以下: CC-BY-SA归因
scroll top