mlr_learners_surv.dnn: Survival DNNSurv Learner

Description Dictionary Super classes Methods References See Also Examples

Description

A mlr3proba::LearnerSurv implementing the DNNSurv neural network. Code for generating the conditional probabilities and pre-processing data is taken from https://github.com/lilizhaoUM/DNNSurv.

Dictionary

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

1
2
mlr_learners$get("surv.dnn")
lrn("surv.dnn")

Super classes

mlr3::Learner -> mlr3proba::LearnerSurv -> LearnerSurvDNNSurv

Methods

Public methods

Inherited methods

Method new()

Creates a new instance of this R6 class.

Usage
LearnerSurvDNNSurv$new()

Method clone()

The objects of this class are cloneable with this method.

Usage
LearnerSurvDNNSurv$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

References

Zhao, L., & Feng, D. (2020). DNNSurv: Deep Neural Networks for Survival Analysis Using Pseudo Values. https://arxiv.org/abs/1908.02337

See Also

Dictionary of Learners: mlr3::mlr_learners

Examples

1
2
3
4
5
6
7
if (requireNamespace("mlr3learners.proba")) {
  learner = mlr3::lrn("surv.dnn")
  print(learner)

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

mlr3learners/mlr3learners.proba documentation built on Aug. 9, 2020, 12:50 a.m.