xgboost使用R xgb.importance抛出错误

时间:2016-03-11 14:01:43

标签: r xgboost

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

任何想法为什么?

1 个答案:

答案 0 :(得分:4)

xgb.importance适用于booster = gbtree

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