mlr_learners_surv.deephit: Survival DeepHit Learner

Description Details Dictionary Super classes Methods References See Also Examples

Description

A mlr3proba::LearnerSurv implementing DeepHitSingle from Python package https://pypi.org/project/pycox/.

Calls pycox.models.DeepHitSingle.

Details

Custom nets can be used in this learner either using the build_pytorch_net utility function or using torch via reticulate. However note that the number of output channels depends on the number of discretised time-points, i.e. the parameters cuts or cutpoints.

Dictionary

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

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

Super classes

mlr3::Learner -> mlr3proba::LearnerSurv -> LearnerSurvDeephit

Methods

Public methods

Inherited methods

Method new()

Creates a new instance of this R6 class.

Usage
LearnerSurvDeephit$new()

Method clone()

The objects of this class are cloneable with this method.

Usage
LearnerSurvDeephit$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

References

Changhee Lee, William R Zame, Jinsung Yoon, and Mihaela van der Schaar. Deephit: A deep learning approach to survival analysis with competing risks. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018. http://medianetlab.ee.ucla.edu/papers/AAAI_2018_DeepHit

See Also

Dictionary of Learners: mlr3::mlr_learners

Examples

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

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

mlr3learners/mlr3learners.pycox documentation built on Sept. 24, 2020, 10:40 a.m.