Python xgboost
Ici on a utilisé python 3.11 pour le run affiché. Dans cette partie nous avons utilisé l’implémentation de scikit-learn.
[...]= np.zeros(n)
t0 = np.zeros(n)
t1 for i in range(n):
# print(f"boucle {i} eme")
= time.time()
t0[i]
= GradientBoostingClassifier(
model = 100,
n_estimators = 6
max_depth
)
model.fit(X_train, y_train)= model.predict(X_test)
y_pred
= time.time()
t1[i] [...]