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에서의 앙상블 기법