mlr3tuning (version 0.5.0)

ArchiveTuning: Logging object for objective function evaluations

Description

Container around a data.table::data.table which stores all performed function calls of the Objective and the associated mlr3::BenchmarkResult.

$benchmark_result stores a mlr3::BenchmarkResult which contains the mlr3::ResampleResult of all performed function calls. The mlr3::BenchmarkResult is connected to the data.table::data.table via the uhash column.

Arguments

Technical details

The data is stored in a private .data field that contains a data.table::data.table which logs all performed function calls of the ObjectiveTuning. This data.table::data.table is accessed with the public $data() method. New values can be added with the $add_evals() method. This however is usually done through the evaluation of the TuningInstanceSingleCrit or TuningInstanceMultiCrit by the Tuner.

Super class

bbotk::Archive -> ArchiveTuning

Public fields

benchmark_result

(mlr3::BenchmarkResult) Stores benchmark result.

Methods

Public methods

Method clone()

The objects of this class are cloneable with this method.

Usage

ArchiveTuning$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.