Random search with caret
Now you are going to perform a random search instead of grid search!
As before, the small voters_train_data
dataset has been loaded for you, as have the caret
and tictoc
packages.
Cet exercice fait partie du cours
Hyperparameter Tuning in R
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Train control with random search
fitControl <- trainControl(method = "repeatedcv",
number = 3,
repeats = 5,
___ = ___)