Description
So now when we do:
re = resample(task, learner, resampling)
re$score(msr("surv.brier"))
and the measure takes the arguments task
and train_set
as in here, the .score
function will have access to the training dataset to perform some estimation, eg in the survival analysis usually we estimate the censoring distribution via Kaplan-Meier, train
and train_set
are not used, the test data will be used for such purposes.
We now have evidence that the choice of data (train / test / both) that is used to calculate predict_sets
).