Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use adaboost with different base estimator in scikit-learn?

Tags:

I want to use adaboost with several base estimators for regression in scikit-learning, but I don't find any class that can do it. Is there any way to do this things except changing source code?

like image 677
modkzs Avatar asked May 08 '16 01:05

modkzs


1 Answers

You can read this page on sklearn: adaboost. I personally like stacking XGboost,GBM, RandomForest and ExtraTree as base models and stacking them to get better auc score.

like image 76
Andreas Hsieh Avatar answered Oct 11 '22 00:10

Andreas Hsieh