0

Using sklearn one can construct Bagging algorithm for non-trees estimator (for example, for SVC). But there is no Boosting realization in sklearn or in any other well known packages. Am I missing something and there is some existing Boosting algorithm with ability to select any other estimators other than trees in standard approach?

desertnaut
  • 57,590
  • 26
  • 140
  • 166
Keithx
  • 2,994
  • 15
  • 42
  • 71

1 Answers1

1

AdaBoostClassifier is what you are looking for. Here is a complete list of ensemble algorithms implemented in sklearn.

GZ0
  • 4,055
  • 1
  • 10
  • 21