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