Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用 autoML 在 R 中训练模型时,我可以通过以下方式查看模型的排行榜
automl_model@leaderboard
我可以通过
automl_model@leader
但是,我还想对第二好的模型、第三好的模型等进行实验。我怎样才能访问它们?
可以像这样访问模型:
model_ids <- as.vector(automl_model@leaderboard$model_id) index <- 2 model_2 <- h2o.getModel(model_ids[index])
,其中index是模型在排行榜中的位置。
index