提取 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)
本练习是课程的一部分