mlr_learners_regr.ksvm: Regression Kernlab Support Vector Machine

mlr_learners_regr.ksvmR Documentation

Regression Kernlab Support Vector Machine

Description

Support Vector Regression. Calls kernlab::ksvm() from kernlab.

Dictionary

This Learner can be instantiated via the dictionary mlr_learners or with the associated sugar function lrn():

mlr_learners$get("regr.ksvm")
lrn("regr.ksvm")

Meta Information

  • Task type: “regr”

  • Predict Types: “response”

  • Feature Types: “logical”, “integer”, “numeric”, “character”, “factor”, “ordered”

  • Required Packages: mlr3, mlr3extralearners, kernlab

Parameters

Id Type Default Levels Range
scaled logical TRUE TRUE, FALSE -
type character eps-svr eps-svr, nu-svr, eps-bsvr -
kernel character rbfdot rbfdot, polydot, vanilladot, laplacedot, besseldot, anovadot -
C numeric 1 (-\infty, \infty)
nu numeric 0.2 [0, \infty)
epsilon numeric 0.1 (-\infty, \infty)
cache integer 40 [1, \infty)
tol numeric 0.001 [0, \infty)
shrinking logical TRUE TRUE, FALSE -
sigma numeric - [0, \infty)
degree integer - [1, \infty)
scale numeric - [0, \infty)
order integer - (-\infty, \infty)
offset numeric - (-\infty, \infty)
na.action untyped na.omit -
fit logical TRUE TRUE, FALSE -

Super classes

mlr3::Learner -> mlr3::LearnerRegr -> LearnerRegrKSVM

Methods

Public methods

Inherited methods

Method new()

Creates a new instance of this R6 class.

Usage
LearnerRegrKSVM$new()

Method clone()

The objects of this class are cloneable with this method.

Usage
LearnerRegrKSVM$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Author(s)

mboecker

References

Karatzoglou, Alexandros, Smola, Alex, Hornik, Kurt, Zeileis, Achim (2004). “kernlab-an S4 package for kernel methods in R.” Journal of statistical software, 11(9), 1–20.

See Also

Examples

learner = mlr3::lrn("regr.ksvm")
print(learner)

# available parameters:
learner$param_set$ids()

mlr-org/mlr3extralearners documentation built on April 13, 2024, 5:25 a.m.