ComenzarEmpieza gratis

Grid search with h2o

Now that you successfully trained a Random Forest model with h2o, you can apply the same concepts to training all other algorithms, like Deep Learning. In this exercise, you are going to apply a grid search to tune a model.

Remember that gradient boosting models have the hyperparameter learn_rate whereas deep learning models have the rate hyperparameter.

The h2o library has already been loaded and initialized for you.

Este ejercicio forma parte del curso

Hyperparameter Tuning in R

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Define hyperparameters
dl_params <- ___(___ = c(0.001, 0.005, 0.01))
Editar y ejecutar código