sort_metric

  • Available in: AutoML
  • Hyperparameter: no

Description

This option specifies the metric used to sort the Leaderboard by at the end of an AutoML run. Since the “leader model” is the model which has the “best” score on the leaderboard, the leader may change if you change this metric. Most of the time, a Stacked Ensemble will remain in the leader spot even if you change the sorting metric, however, the ranking of the base models will likely change.

Available options for sort_metric include the following:

  • AUTO: This defaults to AUC for binary classification, mean_per_class_error for multinomial classification, and deviance for regression.
  • deviance (mean residual deviance)
  • logloss
  • MSE
  • RMSE
  • MAE
  • RMSLE
  • AUC (area under the ROC curve)
  • AUCPR (area under the Precision-Recall curve)
  • mean_per_class_error

For binomial classification choose between AUC, "logloss", "mean_per_class_error", "RMSE", "MSE". For multinomial classification choose between "mean_per_class_error", "logloss", "RMSE", "MSE". For regression choose between "deviance", "RMSE", "MSE", "MAE", "RMLSE".

Example

  • r
  • python
library(h2o)\
h2o.init()

# Import a sample binary outcome training set into H2O
train <- h2o.importFile("https://s3.amazonaws.com/erin-data/higgs/higgs_train_10k.csv")

# Identify predictors and response
x <- setdiff(names(train), y)
y <- "response"

# For binary classification, response should be a factor
train[,y] <- as.factor(train[,y])

aml <- h2o.automl(x = x, y = y,
                  training_frame = train,
                  max_runtime_secs = 30,
                  sort_metric = "logloss")

# View the AutoML Leaderboard
lb <- aml@leaderboard
lb

#                                                model_id       auc   logloss
# 1    StackedEnsemble_AllModels_0_AutoML_20180604_224722 0.7816898 0.5603201
# 2 StackedEnsemble_BestOfFamily_0_AutoML_20180604_224722 0.7789486 0.5627137
# 3             GBM_grid_0_AutoML_20180604_224722_model_4 0.7772998 0.5643765
# 4             GBM_grid_0_AutoML_20180604_224722_model_0 0.7725441 0.5674791
# 5             GBM_grid_0_AutoML_20180604_224722_model_1 0.7699201 0.5696827
# 6             GBM_grid_0_AutoML_20180604_224722_model_2 0.7700669 0.5707551
#   mean_per_class_error      rmse       mse
# 1            0.3343797 0.4361733 0.1902471
# 2            0.3324797 0.4373470 0.1912724
# 3            0.3267255 0.4380983 0.1919301
# 4            0.3323849 0.4398505 0.1934685
# 5            0.3281922 0.4412005 0.1946579
# 6            0.3438066 0.4412901 0.1947369
#
# [10 rows x 6 columns]