Description Details Dictionary Super classes Methods References See Also Examples
A mlr3proba::LearnerSurv implementing LogisticHazard from Python package https://pypi.org/project/pycox/. Also known as nnet-survival.
Calls pycox.models.LogisticHazard.
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.
This Learner can be instantiated via the dictionary
mlr_learners or with the associated sugar function lrn():
1 2 | mlr_learners$get("surv.loghaz")
lrn("surv.loghaz")
|
mlr3::Learner -> mlr3proba::LearnerSurv -> LearnerSurvLogisticHazard
new()Creates a new instance of this R6 class.
LearnerSurvLogisticHazard$new()
clone()The objects of this class are cloneable with this method.
LearnerSurvLogisticHazard$clone(deep = FALSE)
deepWhether to make a deep clone.
Gensheimer, M. F., & Narasimhan, B. (2018). A Simple Discrete-Time Survival Model for Neural Networks, 1–17. https://doi.org/arXiv:1805.00917v3
Dictionary of Learners: mlr3::mlr_learners
1 2 3 4 5 6 7 | if (requireNamespace("mlr3learners.pycox")) {
learner = mlr3::lrn("surv.loghaz")
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.