R/getParamSet.R

#' @title Get a description of all possible parameter settings for a learner.
#'
#' @description
#' Returns the \code{\link[ParamHelpers]{ParamSet}} from a \code{\link{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)
}
Najah-lshanableh/R-data-mining2 documentation built on May 6, 2019, 10:11 a.m.