Is there a way to set particular values of parameters in the R package paradox? Say I do hyperparameter tuning for a random forest method and I want to test for mtry = c(2, 3, 7, 8) and min.node.size = c(2, 5, 7), i.e., a 4 x 3 grid with non-equal distances between the values.
Currently, I have to do a large 7 x 6 grid search to include these values, testing combinations that I'm not interested in:
tuner_params = ParamSet$new(list(
ParamInt$new("mtry", lower = 2, upper = 7),
ParamInt$new("min.node.size", lower = 2, upper = 6)
))
generate_design_grid(tuner_params, param_resolutions = c(mtry = 7, min.node.size = 5))