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.
Este exercício faz parte do curso
Hyperparameter Tuning in R
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Train control with random search
fitControl <- trainControl(method = "repeatedcv",
number = 3,
repeats = 5,
___ = ___)