4

我第一次使用来自 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

任何想法为什么?

4

1 回答 1

4

xgb.importance 适用于 booster=gbtree

我没有找到任何文档,但看起来 xgb.importance 仅对树方法有效

于 2016-03-12T16:46:28.080 回答