我正在使用梯度提升进行分类。虽然结果正在改善,但我在有效偏差中得到了 NaN。
Model = gbm.fit(
x= x_Train ,
y = y_Train ,
distribution = "bernoulli",
n.trees = GBM_NTREES ,
shrinkage = GBM_SHRINKAGE ,
interaction.depth = GBM_DEPTH ,
n.minobsinnode = GBM_MINOBS ,
verbose = TRUE
)
结果
如何调整参数以获得有效偏差。