Ensemble of different kinds of regressors using scikit-learn (or any other python framework)

后端 未结 4 1741
猫巷女王i
猫巷女王i 2021-01-30 05:43

I am trying to solve the regression task. I found out that 3 models are working nicely for different subsets of data: LassoLARS, SVR and Gradient Tree Boosting. I noticed that w

4条回答
  •  猫巷女王i
    2021-01-30 06:31

    What you describe is called "stacking" which is not implemented in scikit-learn yet, but I think contributions would be welcome. An ensemble that just averages will be in pretty soon: https://github.com/scikit-learn/scikit-learn/pull/4161

提交回复
热议问题