CommencerCommencer gratuitement

Random grid search

The most common method of hyperparameter tuning is grid search. This method creates a tuning grid with unique combinations of hyperparameter values and uses cross validation to evaluate their performance. The goal of hyperparameter tuning is to find the optimal combination of values for maximizing model performance.

In this exercise, you will create a random hyperparameter grid and tune your loans data decision tree model.

Your cross validation folds, loans_folds, workflow object, loans_tune_wkfl, custom metrics function, loans_metrics, and dt_tune_model have been loaded into your session.

Cet exercice fait partie du cours

Modeling with tidymodels in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Hyperparameter tuning with grid search
set.seed(214)
dt_grid <- ___(___(___),
               size = ___)

dt_grid
Modifier et exécuter le code