August 2017
Intermediate to advanced
288 pages
8h 6m
English
The section will focus on optimizing hyper parameters in H2O using grid searches.
# Perform hyper parameter tuningactivation_opt <- c("Rectifier","RectifierWithDropout", "Maxout","MaxoutWithDropout")hidden_opt <- list(5, c(5,5))epoch_opt <- c(10,50,100)l1_opt <- c(0,1e-3,1e-4)l2_opt <- c(0,1e-3,1e-4)hyper_params <- list(activation = activation_opt, hidden = hidden_opt, epochs = epoch_opt, l1 = l1_opt, l2 = l2_opt)