ArchiveAsyncTuningFrozen | R Documentation |
Freezes the Redis data base of an ArchiveAsyncTuning to a data.table::data.table()
.
No further points can be added to the archive but the data can be accessed and analyzed.
Useful when the Redis data base is not permanently available.
Use the callback mlr3tuning.async_freeze_archive to freeze the archive after the optimization has finished.
as.data.table(archive)
ArchiveAsyncTuningFrozen -> data.table::data.table()
Returns a tabular view of all performed function calls of the Objective.
The x_domain
column is unnested to separate columns.
bbotk::Archive
-> bbotk::ArchiveAsync
-> bbotk::ArchiveAsyncFrozen
-> ArchiveAsyncTuningFrozen
internal_search_space
(paradox::ParamSet)
The search space containing those parameters that are internally optimized by the mlr3::Learner
.
benchmark_result
(mlr3::BenchmarkResult)
Benchmark result.
bbotk::Archive$format()
bbotk::Archive$help()
bbotk::ArchiveAsync$best()
bbotk::ArchiveAsync$nds_selection()
bbotk::ArchiveAsyncFrozen$clear()
bbotk::ArchiveAsyncFrozen$data_with_state()
bbotk::ArchiveAsyncFrozen$pop_point()
bbotk::ArchiveAsyncFrozen$push_failed_point()
bbotk::ArchiveAsyncFrozen$push_points()
bbotk::ArchiveAsyncFrozen$push_result()
bbotk::ArchiveAsyncFrozen$push_running_point()
new()
Creates a new instance of this R6 class.
ArchiveAsyncTuningFrozen$new(archive)
archive
(ArchiveAsyncTuning)
The archive to freeze.
learner()
Retrieve mlr3::Learner of the i-th evaluation, by position or by unique hash uhash
.
i
and uhash
are mutually exclusive.
Learner does not contain a model. Use $learners()
to get learners with models.
ArchiveAsyncTuningFrozen$learner(i = NULL, uhash = NULL)
i
(integer(1)
)
The iteration value to filter for.
uhash
(logical(1)
)
The uhash
value to filter for.
learners()
Retrieve list of trained mlr3::Learner objects of the i-th evaluation, by position or by unique hash uhash
.
i
and uhash
are mutually exclusive.
ArchiveAsyncTuningFrozen$learners(i = NULL, uhash = NULL)
i
(integer(1)
)
The iteration value to filter for.
uhash
(logical(1)
)
The uhash
value to filter for.
learner_param_vals()
Retrieve param values of the i-th evaluation, by position or by unique hash uhash
.
i
and uhash
are mutually exclusive.
ArchiveAsyncTuningFrozen$learner_param_vals(i = NULL, uhash = NULL)
i
(integer(1)
)
The iteration value to filter for.
uhash
(logical(1)
)
The uhash
value to filter for.
predictions()
Retrieve list of mlr3::Prediction objects of the i-th evaluation, by position or by unique hash uhash
.
i
and uhash
are mutually exclusive.
ArchiveAsyncTuningFrozen$predictions(i = NULL, uhash = NULL)
i
(integer(1)
)
The iteration value to filter for.
uhash
(logical(1)
)
The uhash
value to filter for.
resample_result()
Retrieve mlr3::ResampleResult of the i-th evaluation, by position or by unique hash uhash
.
i
and uhash
are mutually exclusive.
ArchiveAsyncTuningFrozen$resample_result(i = NULL, uhash = NULL)
i
(integer(1)
)
The iteration value to filter for.
uhash
(logical(1)
)
The uhash
value to filter for.
print()
Printer.
ArchiveAsyncTuningFrozen$print()
...
(ignored).
clone()
The objects of this class are cloneable with this method.
ArchiveAsyncTuningFrozen$clone(deep = FALSE)
deep
Whether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.