ComenzarEmpieza gratis

Stopping criteria

In random search, you can also define stopping criteria instead of a maximum runtime. The h2o library and seeds_train_data 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 early stopping
stopping_params <- list(strategy = "RandomDiscrete", 
                        stopping_metric = ___,
                        seed = 42)
Editar y ejecutar código