시작하기무료로 시작하기

Extract h2o models and evaluate performance

In this final exercise, you will extract the best model from the AutoML leaderboard. The h2o library and test data has been loaded and the following code has been run:

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)

이 연습은 강의의 일부입니다

Hyperparameter Tuning in R

강의 보기

실습형 인터랙티브 연습

이 예제를 이 샘플 코드를 완성하여 풀어보세요.

# Extract the leaderboard
lb <- ___@___
head(lb)
코드 편집 및 실행