其实adaboost可以和很多的分类器结合,具体的操作如

ada=AdaBoostClassifier(n_estimators=10, base_estimator=SVC(probability=True)) 
ada.fit(x_train,y_train)

http://stackoverflow.com/questions/21162311/returning-models-used-in-adaboost-python

相关文章:

  • 2021-06-18
  • 2021-11-22
猜你喜欢
  • 2022-12-23
  • 2021-11-19
  • 2021-10-16
  • 2022-01-04
  • 2021-07-10
  • 2021-12-29
相关资源
相似解决方案