Pythonで学ぶアンサンブル手法
Román de las Heras
Data Scientist, Appodeal
AdaBoost について


from sklearn.ensemble import AdaBoostClassifier
clf_ada = AdaBoostClassifier(
base_estimator,
n_estimators,
learning_rate
)
パラメータ
base_estimatorn_estimatorslearning_raten_estimators と learning_rate のトレードオフfrom sklearn.ensemble import AdaBoostRegressor
reg_ada = AdaBoostRegressor(
base_estimator,
n_estimators,
learning_rate,
loss
)
パラメータ
base_estimatorlossPythonで学ぶアンサンブル手法