ComeçarComece de graça

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 exercício faz parte do curso

Hyperparameter Tuning in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Define early stopping
stopping_params <- list(strategy = "RandomDiscrete", 
                        stopping_metric = ___,
                        seed = 42)
Editar e executar o código