我正在使用gridsearchCV调优xgboost分类器模型的参数(λ、γ、max_depth、eta)。我没有设置提前停止或n_estimator值。而且运行gs.fit()需要花费很多时间。我想知道xgboost是否有默认值n_estimators。谢谢!
发布于 2021-08-16 16:11:25
在版本1.5中,sklearn-API版本XGBClassifier defaults to 100,而本机API defaults to 10。
https://stackoverflow.com/questions/68803420
复制相似问题