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.
Diese Übung ist Teil des Kurses
Hyperparameter Tuning in R
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Train control with random search
fitControl <- trainControl(method = "repeatedcv",
number = 3,
repeats = 5,
___ = ___)