mlr_learners_regr.ksvm: Regression Kernlab Support Vector Machine

Description Dictionary Super classes Methods References See Also Examples

Description

Regression support vector machine. Calls kernlab::ksvm() from package kernlab.

Dictionary

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

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

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.

References

mlr3learners.kernlabkaratzoglou_2004

See Also

Dictionary of Learners: mlr3::mlr_learners

Examples

1
2
3
4
5
6
7
if (requireNamespace("kernlab")) {
  learner = mlr3::lrn("regr.ksvm")
  print(learner)

  # available parameters:
  learner$param_set$ids()
}

mlr3learners/mlr3learners.kernlab documentation built on June 4, 2020, 6:08 p.m.