在 Python 中提升算法实现

Boosting algorithm realization in Python

使用sklearn 可以构造Bagging 非树估计算法(例如,SVC)。但是在 sklearn 或任何其他众所周知的软件包中没有 Boosting 实现。我是否遗漏了什么并且有一些现有的 Boosting 算法能够 select 除了标准方法中的树之外的任何其他估计器?

AdaBoostClassifier is what you are looking for. Heresklearn 中实现的集成算法的完整列表。