0
如何在R中繪製列車和測試AUC
打印在下方的分數(請參閱圖像)?在R中繪製模型的火車和評估分數
我使用下面
train.gdbt <- xgb.train(params=list(objective="binary:logistic", eval_metric="auc", eta=0.5, max_depth=4, subsample=1, colsample_bytree=0.5), data=dtrain, nrounds=500, watchlist=list(eval=dtest, train=dtrain),verbose = 1)
謝謝!這是我想要的:) – Pb89