mlr_learners_classif.multinom {mlr3learners}R Documentation

Multinomial log-linear learner via neural networks

Description

Multinomial log-linear models via neural networks. Calls nnet::multinom() from package nnet.

Dictionary

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")

Meta Information

Parameters

Id Type Default Levels Range
Hess logical FALSE TRUE, FALSE -
abstol numeric 1e-04 (-\infty, \infty)
censored logical FALSE TRUE, FALSE -
decay numeric 0 (-\infty, \infty)
entropy logical FALSE TRUE, FALSE -
mask untyped - -
maxit integer 100 [1, \infty)
MaxNWts integer 1000 [1, \infty)
model logical FALSE TRUE, FALSE -
linout logical FALSE TRUE, FALSE -
rang numeric 0.7 (-\infty, \infty)
reltol numeric 1e-08 (-\infty, \infty)
size integer - [1, \infty)
skip logical FALSE TRUE, FALSE -
softmax logical FALSE TRUE, FALSE -
summ character 0 0, 1, 2, 3 -
trace logical TRUE TRUE, FALSE -
Wts untyped - -

Super classes

mlr3::Learner -> mlr3::LearnerClassif -> LearnerClassifMultinom

Methods

Public methods

Inherited methods

Method new()

Creates a new instance of this R6 class.

Usage
LearnerClassifMultinom$new()

Method loglik()

Extract the log-likelihood (e.g., via stats::logLik() from the fitted model.

Usage
LearnerClassifMultinom$loglik()

Method clone()

The objects of this class are cloneable with this method.

Usage
LearnerClassifMultinom$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

See Also

Other Learner: mlr_learners_classif.cv_glmnet, mlr_learners_classif.glmnet, mlr_learners_classif.kknn, mlr_learners_classif.lda, mlr_learners_classif.log_reg, mlr_learners_classif.naive_bayes, mlr_learners_classif.nnet, mlr_learners_classif.qda, mlr_learners_classif.ranger, mlr_learners_classif.svm, mlr_learners_classif.xgboost, mlr_learners_regr.cv_glmnet, mlr_learners_regr.glmnet, mlr_learners_regr.kknn, mlr_learners_regr.km, mlr_learners_regr.lm, mlr_learners_regr.nnet, mlr_learners_regr.ranger, mlr_learners_regr.svm, mlr_learners_regr.xgboost

Examples

if (requireNamespace("nnet", quietly = TRUE)) {
# Define the Learner and set parameter values
learner = lrn("classif.multinom")
print(learner)

# Define a Task
task = tsk("sonar")

# Create train and test set
ids = partition(task)

# Train the learner on the training ids
learner$train(task, row_ids = ids$train)

# print the model
print(learner$model)

# importance method
if("importance" %in% learner$properties) print(learner$importance)

# Make predictions for the test rows
predictions = learner$predict(task, row_ids = ids$test)

# Score the predictions
predictions$score()
}

[Package mlr3learners version 0.6.0 Index]