R/getParamSet.R

Defines functions getParamSet.character getParamSet.Learner

#' @title Get a description of all possible parameter settings for a learner.
#'
#' @description
#' Returns the [ParamHelpers::ParamSet] from a [Learner].
#'
#' @template ret_ps
#' @family learner
#' @name getParamSet
#' @rdname getParamSet
NULL

#' @export
getParamSet.Learner = function(x) {
  x$par.set
}

#' @export
getParamSet.character = function(x) {
  x = checkLearner(x)
  getParamSet(x)
}
berndbischl/mlr documentation built on Jan. 6, 2023, 12:45 p.m.