File: FeatSelControlSequential.R

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 (19 lines) | stat: -rw-r--r-- 662 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#' @export
#' @rdname FeatSelControl
makeFeatSelControlSequential = function(same.resampling.instance = TRUE, impute.val = NULL, method,
  alpha = 0.01, beta = -0.001, maxit = NA_integer_, max.features = NA_integer_,
  tune.threshold = FALSE, tune.threshold.args = list(), log.fun = "default") {
  makeFeatSelControl(
    same.resampling.instance = same.resampling.instance,
    impute.val = impute.val,
    maxit = maxit,
    max.features = max.features,
    method = method,
    alpha = alpha,
    beta = beta,
    tune.threshold = tune.threshold,
    tune.threshold.args = tune.threshold.args,
    log.fun = log.fun,
    cl = "FeatSelControlSequential"
  )
}