> Modules non standards > Scikit-Learn > Adaboost - XGboost
Adaboost - XGboost
classifier XGBoost (interface scikit-learn du package xgboost) :
- on construit un classifier avec différents paramètres : clf = XGBClassifier(objective = 'binary:logistic', n_estimators = 3, max_depth = 4, learning_rate = 0.1)
- puis, fitting sur les données de training : clf.fit(Xtrain, yTrain).
- clf.get_params() : donne le dictionnaire des paramètres utilisés.
- Paramètres par défaut :
- n_estimators : 100
- learning_rate : 0.3
- gamma : 0
- max_depth : 6
- reg_lambda : 1
Copyright python-simple.com
programmer en python, tutoriel python, graphes en python, Aymeric Duclert