R/LearnerClassifMultinom.R
mlr_learners_classif.multinom.RdMultinomial log-linear models via neural networks.
Calls nnet::multinom() from package nnet.
This Learner can be instantiated via the dictionary mlr_learners or with the associated sugar function lrn():
mlr_learners$get("classif.multinom") lrn("classif.multinom")
mlr3::Learner -> mlr3::LearnerClassif -> LearnerClassifMultinom
new()Creates a new instance of this R6 class.
LearnerClassifMultinom$new()
clone()The objects of this class are cloneable with this method.
LearnerClassifMultinom$clone(deep = FALSE)
deepWhether to make a deep clone.
if (requireNamespace("nnet")) { learner = mlr3::lrn("classif.multinom") print(learner) # available parameters: learner$param_set$ids() }#>#> <LearnerClassifMultinom:classif.multinom> #> * Model: - #> * Parameters: list() #> * Packages: nnet #> * Predict Type: response #> * Feature types: logical, integer, numeric, factor #> * Properties: multiclass, twoclass, weights#> [1] "Hess" "summ" "censored" "model" "rang" "decay" #> [7] "maxit" "trace" "abstol" "reltol"