我正在使用Colab实现XGboost算法。该代码有效,但是没有向我展示培训的步骤。如何显示它们?
我尝试使用详细参数,但是什么也没有发生。可能是问题与我的colab笔记本的某种奇怪设置有关,例如,当您必须将%与matplotlib内联时?
xg_reg = xgb.XGBRegressor(objective ='reg:linear', colsample_bytree = 0.3, learning_rate = 0.1,
max_depth = 100, alpha = 10, n_estimators = 1000, verbosity = 3, verbose_eval=1)
xg_reg.fit(ordini_equal_series_x_train, ordini_equal_series_y_train, verbose=True, eval_metric="error")