I created a new task with TaskRegr$new
, a learner with lrn('regr.ranger')
, a search space with ps
, fed those to an AutoTuner$new
and then ran resample
using resampling=rsmp('cv', folds=4)
So that looks like
rr1 <- resample(task=task_allcols, learner=at1, resampling=rsmp('cv', folds=4), store_models = TRUE, store_backends = TRUE)
when I do rr1$score
I get 4 rows each of which has a unique MSE
when I do rr1$learners[[x]]
where x
is 1,2,3, or 4 the MSE in those responses don't match any of the preceding values.
What is the difference between these two outputs?