File: TuneResult.Rd

package info (click to toggle)
r-cran-mlr 2.19.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,264 kB
  • sloc: ansic: 65; sh: 13; makefile: 5
file content (30 lines) | stat: -rw-r--r-- 1,573 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/TuneResult.R
\name{TuneResult}
\alias{TuneResult}
\title{Result of tuning.}
\description{
Container for results of hyperparameter tuning.
Contains the obtained point in search space, its performance values
and the optimization path which lead there.

Object members:
\describe{
\item{learner (\link{Learner})}{Learner that was optimized.}
\item{control (\link{TuneControl})}{Control object from tuning.}
\item{x (\link{list})}{Named list of hyperparameter values identified as optimal.
Note that when you have trafos on some of your params, \code{x} will always be
on the TRANSFORMED scale so you directly use it.}
\item{y (\link{numeric})}{Performance values for optimal \code{x}.}
\item{threshold (\link{numeric})}{Vector of finally found and used thresholds
if \code{tune.threshold} was enabled in \link{TuneControl}, otherwise not present and
hence \code{NULL}.}
\item{opt.path (\link[ParamHelpers:OptPath]{ParamHelpers::OptPath})}{Optimization path which lead to \code{x}.
Note that when you have trafos on some of your params, the opt.path always contains the
UNTRANSFORMED values on the original scale. You can simply call \code{trafoOptPath(opt.path)} to
transform them, or, \code{as.data.frame{trafoOptPath(opt.path)}}.
If mlr option \code{on.error.dump} is \code{TRUE}, \code{OptPath} will have a \code{.dump} object
in its \code{extra} column which contains error dump traces from failed optimization evaluations.
It can be accessed by \code{getOptPathEl(opt.path)$extra$.dump}.}
}
}