Description Custom mlr3 defaults Dictionary Super classes Methods See Also Examples
L2-Regularized L1-Loss support vector classification learner.
Calls LiblineaR::LiblineaR()
(type = 3
) from package LiblineaR.
epsilon
:
Actual default: 0.01
Adjusted default: 0.1
Reason for change: Param depends on param "type" which is handled internally by choosing the mlr3 learner. The default is set to the actual default of the respective "type".
This Learner can be instantiated via the dictionary mlr_learners or with the associated sugar function lrn()
:
1 2 | mlr_learners$get("classif.liblinearl2l1svc")
lrn("classif.liblinearl2l1svc")
|
mlr3::Learner
-> mlr3::LearnerClassif
-> LearnerClassifLiblineaRL2L1SVC
new()
Creates a new instance of this R6 class.
LearnerClassifLiblineaRL2L1SVC$new()
clone()
The objects of this class are cloneable with this method.
LearnerClassifLiblineaRL2L1SVC$clone(deep = FALSE)
deep
Whether to make a deep clone.
Dictionary of Learners: mlr3::mlr_learners
1 2 3 4 5 | learner = mlr3::lrn("classif.liblinearl2l1svc")
print(learner)
# available parameters:
learner$param_set$ids()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.