A learner for a regression support vector machine implemented in e1071::svm().
This Learner can be instantiated via the dictionary mlr_learners or with the associated sugar function lrn():
mlr_learners$get("regr.svm") lrn("regr.svm")
Cortes, Corinna, Vapnik, Vladimir (1995). “Support-vector networks.” Machine Learning, 20(3), 273--297. doi: 10.1007/BF00994018 .
mlr3::Learner -> mlr3::LearnerRegr -> LearnerRegrSVM
new()Creates a new instance of this R6 class.
LearnerRegrSVM$new()
clone()The objects of this class are cloneable with this method.
LearnerRegrSVM$clone(deep = FALSE)
deepWhether to make a deep clone.
if (requireNamespace("e1071")) { learner = mlr3::lrn("regr.svm") print(learner) # available parameters: learner$param_set$ids() }#> <LearnerRegrSVM:regr.svm> #> * Model: - #> * Parameters: list() #> * Packages: e1071 #> * Predict Type: response #> * Feature types: logical, integer, numeric #> * Properties: -#> [1] "type" "kernel" "degree" "coef0" "cost" "nu" #> [7] "gamma" "cachesize" "tolerance" "epsilon" "shrinking" "cross" #> [13] "fitted" "scale"