Grid search with range of hyperparameters
In chapter 1, you learned how to use the expand.grid() function to manually define a set of hyperparameters. The same function can also be used to define a grid with ranges of hyperparameters.
The voters_train_data dataset has been loaded for you, as have the caret and tictoc packages.
이 연습은 강의의 일부입니다
Hyperparameter Tuning in R
실습형 인터랙티브 연습
이 예제를 이 샘플 코드를 완성하여 풀어보세요.
# Define the grid with hyperparameter ranges
big_grid <- expand.grid(___ = ___(___ = 1, ___ = 5, by = ___),
decay = c(0, 1))
big_grid