我第一次使用来自 CRAN 的 xgboost 包。
创建模型为:
bst <- xgb.train(data = dtrain, booster = "gblinear",
objective = "reg:linear", max.depth = 5, nround = 2,watchlist=watchlist)
importance_matrix <- xgb.importance(model = bst)
当我打电话时,xgb.importance
我得到一个错误:
Error in readLines(filename_dump) : 'con' is not a connection
任何想法为什么?