Generate a Benchmark Grid Design
Takes a lists of Task, a list of Learner and a list of Resampling to
generate a design in an expand.grid()
fashion (a.k.a. cross join or Cartesian product).
Resampling strategies are not allowed to be instantiated when passing the argument, and instead will be instantiated per task internally. The only exception to this rule applies if all tasks have exactly the same number of rows, and the resamplings are all instantiated for such tasks.
benchmark_grid(tasks, learners, resamplings)
tasks |
(list of Task). |
learners |
(list of Learner). |
resamplings |
(list of Resampling). |
(data.table::data.table()
) with the cross product of the input vectors.
tasks = list(tsk("penguins"), tsk("sonar")) learners = list(lrn("classif.featureless"), lrn("classif.rpart")) resamplings = list(rsmp("cv"), rsmp("subsampling")) benchmark_grid(tasks, learners, resamplings)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.