Created
June 20, 2020 02:52
-
-
Save renanxcortes/c7127a23798122896a446098f1803e27 to your computer and use it in GitHub Desktop.
automl_with_shapley_snippet1_blogpost
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Metric for binary classification (deviance is the default). Check documentation here http://docs.h2o.ai/h2o/latest-stable/h2o-docs/automl.html | |
automl_model <- h2o.automl(#x = x, | |
y = 'y', | |
balance_classes = TRUE, | |
training_frame = df_frame_split[[1]], | |
nfolds = 4, | |
#validation_frame = df_frame_split[[2]], # read help(h2o.automl) !!!Optional. This argument is ignored unless the user sets nfolds = 0!!! | |
leaderboard_frame = df_frame_split[[2]], | |
max_runtime_secs = 60 * 2, # Two minutes | |
#exclude_algos = "StackedEnsemble", # Global Importance of Stacked models is tricky | |
include_algos = c('DRF', 'GBM', 'XGBoost'), # Complete List help(h2o.automl) | |
sort_metric = "AUC") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment