开始使用免费开始使用

提取 h2o 模型并评估性能

在最后这个练习中,您将从 AutoML 排行榜 中提取 最佳模型h2o 库和 test 数据已加载,并已运行以下代码:

automl_model <- h2o.automl(x = x, 
                           y = y,
                           training_frame = seeds_data_hf,
                           nfolds = 3,
                           max_runtime_secs = 60,
                           sort_metric = "mean_per_class_error",
                           seed = 42)

本练习是课程的一部分

R 中的超参数调优

查看课程

交互式实操练习

通过完成这段示例代码来试试这个练习。

# Extract the leaderboard
lb <- ___@___
head(lb)
编辑并运行代码