0
是否有使用xgboost解決迴歸問題的常見筆記/技巧?例子或材料?Thx。如何使用xgboost提高迴歸模型的性能?
是否有使用xgboost解決迴歸問題的常見筆記/技巧?例子或材料?Thx。如何使用xgboost提高迴歸模型的性能?
您是否試過XGBRegressor?看下面的例子:
Xgbm_linear = xgb.XGBRegressor(max_depth=3, learning_rate=0.1, n_estimators=500,
silent=True, objective='reg:linear', nthread=-1, gamma=0,
min_child_weight=1, max_delta_step=0, subsample=1,
colsample_bytree=1, colsample_bylevel=1, reg_alpha=0,
reg_lambda=1, scale_pos_weight=1, base_score=0.5,
seed=0, missing=None).fit(X_train_matrix, Y_train)
我覺得這個論壇太寬泛了。這是一個很好的案例基礎問題,也可能更適合於「數據科學」堆棧交換 – AbdealiJK