mlr_learners_classif.ksvm: Classification Kernlab Support Vector Machine

mlr_learners_classif.ksvmR Documentation

Classification Kernlab Support Vector Machine

Description

Support vector machine for classification. 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("classif.ksvm")
lrn("classif.ksvm")

Meta Information

  • Task type: “classif”

  • Predict Types: “response”, “prob”

  • 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 C-svc C-svc, nu-svc, C-bsvc, spoc-svc, kbb-svc -
kernel character rbfdot rbfdot, polydot, vanilladot, laplacedot, besseldot, anovadot -
C numeric 1 (-\infty, \infty)
nu numeric 0.2 [0, \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)
coupler character minpair minpair, pkpd -

Super classes

mlr3::Learner -> mlr3::LearnerClassif -> LearnerClassifKSVM

Methods

Public methods

Inherited methods

Method new()

Creates a new instance of this R6 class.

Usage
LearnerClassifKSVM$new()

Method clone()

The objects of this class are cloneable with this method.

Usage
LearnerClassifKSVM$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("classif.ksvm")
print(learner)

# available parameters:
learner$param_set$ids()

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