mlr3 (version 0.1.4)

ResampleResult: Container for Results of resample()

Description

This is the result container object returned by resample().

Note that all stored objects are accessed by reference. Do not modify any object without cloning it first.

Arguments

Format

R6::R6Class object.

Construction

rr = ResampleResult$new(data, uhash = NULL)

Fields

  • data :: data.table::data.table() Internal data storage. We discourage users to directly work with this field.

  • task :: Task

    The task resample() operated on.

  • learners :: list of Learner List of trained learners, sorted by resampling iteration.

  • resampling :: Resampling Instantiated Resampling object which stores the splits into training and test.

  • warnings :: data.table::data.table() Returns a table with all warning messages. Column names are "iteration" and "msg". Note that there can be multiple rows per resampling iteration if multiple warnings have been recorded.

  • errors :: data.table::data.table() Returns a table with all error messages. Column names are "iteration" and "msg". Note that there can be multiple rows per resampling iteration if multiple errors have been recorded.

  • uhash :: character(1) Unique hash for this object.

Methods

  • predictions(predict_sets = "test") character() -> list of Prediction List of prediction objects, sorted by resampling iteration. If multiple sets are given, these are combined to a single one for each iteration.

  • prediction(predict_sets = "test") character() -> Prediction Combined Prediction of all individual resampling iterations, and all provided predict sets. Note that performance measures do not operate on this object, but instead on each prediction object separately and then combine the performance scores with the aggregate function of the respective Measure.

  • score(measures = NULL, ids = TRUE) (list of Measure, logical(1)) -> data.table::data.table() Returns a table with one row for each resampling iteration, including all involved objects: Task, Learner, Resampling, iteration number (integer(1)), and Prediction. A column with the individual (per resampling iteration) performance is added for each Measure, named with the id of the respective measure. If ids is TRUE, extra columns with the ids of objects ("task_id", "learner_id", "resampling_id") are binded to the table to allow a more convenient subsetting. If measures is NULL, measures defaults to the return value of default_measures().

  • aggregate(measures = NULL) list of Measure -> named numeric() Calculates and aggregates performance values for all provided measures, according to the respective aggregation function in Measure. If measures is NULL, measures defaults to the return value of default_measures().

  • help() () -> NULL Opens the help page for this object.

S3 Methods

Examples

Run this code
# NOT RUN {
task = tsk("iris")
learner = lrn("classif.rpart")
resampling = rsmp("cv", folds = 3)
rr = resample(task, learner, resampling)
print(rr)

rr$aggregate(msr("classif.acc"))
rr$prediction()
rr$prediction()$confusion
rr$warnings
rr$errors
# }

Run the code above in your browser using DataLab