<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>PseudoNAM: A Pseudo Value Based Interpretable Neural Additive Model for Survival Analysis</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Md Mahmudur Rahman</string-name>
          <email>mrahman6@umbc.edu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sanjay Purushotham</string-name>
          <email>psanjay@umbc.edu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Information Systems, University of Maryland Baltimore County</institution>
          ,
          <addr-line>Baltimore, Maryland</addr-line>
          ,
          <country country="US">USA</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2010</year>
      </pub-date>
      <abstract>
        <p>Deep learning models have achieved the start-of-the-art performance in survival analysis as they can handle censoring while learning complex nonlinear hidden representations directly from the raw data. However, the covariate effects on survival probabilities are difficult to explain using deep learning models. To address this challenge, we propose PseudoNAM - an interpretable model which uses pseudo values to efficiently handle censoring and uses neural additive networks to capture the nonlinearity in the covariates of the survival data. In particular, PseudoNAM uses neural additive models to jointly learn a linear combination of neural networks corresponding to each covariate and identifies the effect of the individual covariate on the output, and thus, is inherently interpretable. We show that our PseudoNAM outputs can be used in other survival models such as random survival forests to obtain improved survival prediction performance. Our experiments on three real-world survival analysis datasets demonstrate that our proposed models achieve similar or better performance (in terms of C-index and Brier scores) than the state-of-the-art survival methods. We showcase that PseudoNAM provides overall feature importance scores and feature-level interpretations (covariate effect on survival risk) for survival predictions at different time points.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Survival analysis
        <xref ref-type="bibr" rid="ref4">(Kleinbaum and Klein 2010)</xref>
        , a
wellstudied problem, aims to estimate the risk of a subject’s
failure from an event, such as death due to breast cancer at a
particular time point. One key challenge in survival
analysis is the presence of censored subjects for whom the actual
survival times remain unknown. A good survival analysis
model should handle censoring, accurately discriminate the
predicted risks, and should be interpretable. Traditional
statistical survival analysis models such as Cox Proportional
Hazard models
        <xref ref-type="bibr" rid="ref7">(Cox 1972)</xref>
        , regression models based on
pseudo-observations
        <xref ref-type="bibr" rid="ref3 ref4">(Andersen, Klein, and Rosthøj 2003;
Andersen and Pohar Perme 2010)</xref>
        are interpretable but are
less accurate and limited by strong assumptions on the
underlying stochastic process, such as linearity, parametric,
and proportional hazards assumptions. Recent survival
approaches based on machine learning and deep learning
models
        <xref ref-type="bibr" rid="ref18 ref21">(Rahman et al. 2021; Zhao and Feng 2020; Ishwaran
et al. 2008; Katzman et al. 2018)</xref>
        achieve more accurate
predictions but may require specialized objective functions
to handle censoring
        <xref ref-type="bibr" rid="ref14">(Lee et al. 2018)</xref>
        . Moreover, many of
these approaches are not interpretable or explainable, which
makes them opaque and unsuitable for medical applications.
      </p>
      <p>
        To address the limitations of the existing methods, we
propose a pseudo value based neural additive model, called
PseudoNAM, which directly models the complex
nonlinear time-varying effect of the covariate on the survival
function. Our PseudoNAM uses neural additive models
(NAM)
        <xref ref-type="bibr" rid="ref1">(Agarwal et al. 2020)</xref>
        to jointly learn a linear
combination of neural networks corresponding to each covariate
and determines the magnitude of covariates’ effect on the
survival outcome, and thus, is inherently interpretable. The
neural networks for each feature in the PseudoNAM are
independent, and thus, can provide the individual feature
contribution towards output survival prediction. Like in NAM,
we sum up the individual feature contributions (neural
network outputs), followed by a logit transformation using
sigmoid activation function to predict the survival
probability at different time points. We show different types of
interpretations from PseudoNAM, including 1) the mean
feature contributions to the survival probability predictions at
different time points (overall feature importance scores) and
2) feature-level interpretations which show the time-varying
covariate effect on the survival predictions.
      </p>
      <p>Our experiments on three real-world datasets demonstrate
that PseudoNAM performs similar or better than the
stateof-the-art survival analysis models while providing
interpretable results. We further improve the performance of
PseudoNAM by proposing PseudoNRSF, a random
survival forest approach that takes as input the learned outputs
of individual neural networks from PseudoNAM and
predicts the survival probabilities. We show that PseudoNRSF
achieves state-of-the-art results in terms of c-index and Brier
scores.</p>
    </sec>
    <sec id="sec-2">
      <title>Related Works</title>
      <p>
        Cox-based statistical and deep learning survival models
        <xref ref-type="bibr" rid="ref10 ref12 ref7 ref8">(Cox 1972; Faraggi and Simon 1995; Katzman et al. 2018;
Kvamme and Borgan 2019)</xref>
        are widely studied for analyzing
time-to-event data. However, these models make strong
proportional hazard and linearity assumptions that may not hold
for real data, thus leading to less accurate survival results.
      </p>
      <sec id="sec-2-1">
        <title>Machine learning models such as Random survival</title>
        <p>
          forests (Ishwaran et al. 2008) and multi-task logistic
regression (MTLR)
          <xref ref-type="bibr" rid="ref19 ref9">(Yu et al. 2011; Fotso 2018)</xref>
          relax some of
these assumptions and outperform statistical-based methods.
Recently proposed deep learning models
          <xref ref-type="bibr" rid="ref14 ref17">(Lee et al. 2018;
Nagpal, Li, and Dubrawski 2021)</xref>
          and conditional
generative adversarial networks
          <xref ref-type="bibr" rid="ref6">(Chapfuwa et al. 2018)</xref>
          achieve
state-of-the-art results for time-to-event analysis. However,
these methods require either making assumptions on the
underlying stochastic process or design a specialized objective
function to handle censoring. Moreover, these methods lack
interpretability which is required in the medical domain. To
address the censoring challenge,
          <xref ref-type="bibr" rid="ref18 ref21">(Zhao and Feng 2020;
Rahman et al. 2021)</xref>
          have respectively proposed pseudo value
based deep learning models for survival and competing risk
analysis. However, even these methods are not directly
interpretable and rely on off-the-shelf explainable AI methods
such as LRP
          <xref ref-type="bibr" rid="ref16">(Montavon et al. 2019)</xref>
          for providing
explanations.
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Our Proposed Models</title>
      <p>To address the censoring and interpretability challenges
of existing survival analysis approaches, in this work, we
propose two interpretable pseudo value based deep learning
models, PseudoNAM and PseudoNRSF. Before describing
our models in detail, we will briefly introduce pseudo values.</p>
      <p>
        What are Pseudo values? Pseudo values for the survival
probability are derived from the non-parametric
populationbased Kaplan-Meier (KM) estimator, an approximately
unbiased estimator of the survival probability under
independent censoring
        <xref ref-type="bibr" rid="ref2">(Andersen et al. 2012)</xref>
        . For the ith subject,
a Jackknife pseudo value, based on the KM estimate of the
survival probability (Klein et al. 2008), is computed at time
horizon t as
      </p>
      <p>S^i(t ) = nS^(t )
(n
1)S^ i(t )
where, S^(t ) is the Kaplan-Meier estimate of the survival
probability at time t based on a sample with n subjects
and S^ i(t ) is the Kaplan-Meier estimate of the survival
probability at time t</p>
      <p>based on a leave-one-out sample
with (n</p>
      <p>1) subjects, obtained by omitting the ith subject.
Pseudo values are calculated for both uncensored subjects
and censored subjects (incompletely observed) at a specified
time point.</p>
      <p>
        PseudoNAM: Inspired by the success of pseudo value
based deep models, DNNSurv
        <xref ref-type="bibr" rid="ref21">(Zhao and Feng 2020)</xref>
        and
DeepPseudo
        <xref ref-type="bibr" rid="ref18">(Rahman et al. 2021)</xref>
        to handle censoring, we
propose PseudoNAM - a multi-output neural additive model
which predicts pseudo values for survival risk analysis.
PseudoNAM, shown in Figure 1, learns non-linear
representations in the data and uses pseudo values to handle
censoring efficiently. PseudoNAM has the following form:
g(E[y(tjX)]) =
      </p>
      <p>+ f1(X1) + f2(X2) + + fp(Xp) (1)
Here, Xi = (Xi1; Xi2; :::; Xip) is a p-dimensional
covariate vector for ith individual; i = 1; 2; ::; n. g(:) is the link
function (e.g., logit link function),
is the bias and each
fi(:) is parametrized by a neural network. y(tjX) is the
pseudo values for survival probability at time t in the
presence of covariates. Each of the networks learn the complex
shape function of a specific covariate, and all the networks
are trained jointly. A n</p>
      <p>p matrix of p baseline covariates
with n individuals are used as input in the input layer.
Output layer returns the survival probabilities at M evaluation
time points. PseudoNAM model provides interpretability
because it jointly trains a set of neural networks
corresponding to each individual covariate and returns the covariates’
contribution scores to the output (i.e., the output of the
neural networks) for all each covariate and for the M
evaluation time points. Then we sum up the contribution scores of
all covariates followed by applying a sigmoid activation
function to get the final output, i.e., the survival probabilities
at the M time points. The non-overlapping neural networks
for individual covariates allow to identify the individual
covariate effect on the survival probabilities.</p>
      <p>X1
X2
Xp
.
.
.
.
.
.
.
.</p>
      <p>.</p>
      <sec id="sec-3-1">
        <title>FC Layer</title>
      </sec>
      <sec id="sec-3-2">
        <title>FC Layer</title>
      </sec>
      <sec id="sec-3-3">
        <title>FC Layer</title>
      </sec>
      <sec id="sec-3-4">
        <title>FC Layer</title>
      </sec>
      <sec id="sec-3-5">
        <title>FC Layer FC Layer</title>
        <p>(  )
  (  )
.
.</p>
        <p>.
  (  )</p>
      </sec>
      <sec id="sec-3-6">
        <title>Output Layer 1</title>
      </sec>
      <sec id="sec-3-7">
        <title>FC Layer</title>
        <p>{y11, y12, … , y1M}</p>
      </sec>
      <sec id="sec-3-8">
        <title>Output Layer 2</title>
      </sec>
      <sec id="sec-3-9">
        <title>FC Layer</title>
        <p>{y21, y22, … , y2M}</p>
      </sec>
      <sec id="sec-3-10">
        <title>Output Layer p</title>
      </sec>
      <sec id="sec-3-11">
        <title>FC Layer</title>
        <p>{yp1, yp2, … , ypM}
β</p>
        <p />
        <p>Add
 Sigmoid
β Bias</p>
        <sec id="sec-3-11-1">
          <title>Figure 1:</title>
        </sec>
        <sec id="sec-3-11-2">
          <title>Architecture of</title>
          <p>PseudoNAM.</p>
          <p>X
fX1; X2; ::; Xpg is a p dimensional vector of covariates.
fi(Xi) is the neural network corresponding to covariate Xi
and</p>
          <p>is the bias. Sigmoid ( ) is worked as inverse logit link
function. y is the output, i.e., survival probability at M time
=
points. FC Layer means Fully Connected Layer.</p>
          <p>PseudoNRSF:</p>
        </sec>
        <sec id="sec-3-11-3">
          <title>While</title>
          <p>PseudoNAM
provides
interpretable predictions; its performance is limited by the
NAM</p>
          <p>model architecture. To improve the performance of
PseudoNAM model and to obtain global and local
interpretations like Random survival forests (RSF) (Ishwaran
et al. 2008), we propose PseudoNRSF - a two-stage deep
learning model. In the first stage, PseudoNAM model is
used to learn the individual feature contribution scores
for predicting pseudo values. In the second stage, these
learned feature contribution scores are input to an RSF with
the goal of directly predicting survival probabilities. Thus,
PseudoNRSF returns the subject-specific survival
proban
o
it
u
b
itr
n
o
C
e
r
u
t
a
e
F
n
a
e
M</p>
          <p>Feature Importance Plot for METABRIC Dataset
MKI67</p>
          <p>EGFR</p>
          <p>PGR</p>
          <p>ERBB2
bilities at different time points as output, and the predictions
are interpretable due to the use of RSF. PseudoNRSF has
the interpretation property of the RSF. We can easily get the
effect of each covariate (importance score) on the overall
survival probability. However, using the PseudoNAM, we
can see the change of covariate effect on survival
probabilities at different time points.</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Experiments</title>
      <p>We conducted experiments on three real-world datasets to
answer the following questions: a) how well our proposed
models perform compared to the state-of-the-art survival
models? b) how well can our PseudoNAM explain their
predictions?</p>
      <p>Datasets: Table 1 shows statistics of the following
datasets.</p>
      <p>METABRIC: This data (Katzman et al. 2018)1 contains
patients’ gene expressions and clinical variables for breast
cancer survival prediction.</p>
      <p>SUPPORT: This dataset (Knaus et al. 1995) is from the
Vanderbilt University study to estimate survival of 9,105
seriously ill hospitalized patients.</p>
      <p>WHAS: This dataset was collected to examine the effects
of a patient’s factors on acute myocardial infraction (MI)
survival (Hosmer and Lemeshow 2002).</p>
      <p>Implementation Details: The (ground-truth) pseudo
values for survival probabilities are obtained using the
jackknife function of R package prodlim at each
evaluation time point (separately for training and validation
sets). We performed stratified 5-fold cross-validation so
that the ratio of censored and uncensored subjects remained
the same in each fold. We jointly train our PseudoNAM’s
feature networks based on an early stopping criterion and
choose the best model based on the model’s performance on
validation data. Each feature network consists of 3 hidden
layers with a number of units [128, 64, 32]. We used relu
activation function in the hidden layer of each covariate’s
neural network and tanh activation function in the output
layer of the neural networks. In the final output layer, we
sum up the output of individual feature neural networks and
use the sigmoid activation function to get the survival
probability at 10th; 20th; 30th; 40th; 50th; 60th percentile
of the maximum survival time of the training data. We did
not perform hyperparameter tuning. We set the learning
rate 0.0001, output penalty coefficient 0.001, weight decay
coefficient 0.000001, dropout rate 0.0, and feature dropout</p>
      <p>EGFR</p>
      <p>ER-positive</p>
      <p>ERBB2</p>
      <p>MKI67</p>
      <p>
        PGR
rate 0. We used Adam optimizer with batch size 128 during
training and used Penalized Mean Squared Error loss
function to train our models. For performance metrics, we used
(a) time-dependent concordance index
        <xref ref-type="bibr" rid="ref5">(Antolini, Boracchi,
and Biganzoli 2005)</xref>
        adjusted with an inverse propensity of
censoring estimate for evaluating the discriminative-ability,
and (b) Integrated IPCW Brier Score (denoted as Brier
Score) (Gerds and Schumacher 2006) metric for evaluating
the predictive-ability. To encourage reproducibility, the
source codes for our proposed models are available at this
link: https://github.com/umbc-sanjaylab/PseudoNAM SA
      </p>
      <p>
        Model Comparisons: We compared the following
survival analysis models:
• Statistical models: Cox Proportional Hazard Model
[CoxPH]
        <xref ref-type="bibr" rid="ref7">(Cox 1972)</xref>
        • Machine learning models: Random Survival Forest
[RSF] (Ishwaran et al. 2008), Multi-task Logistic
Regres0.1
3.0
      </p>
      <p>1944.0 205.5
0.1 1965.9 696.7
85.9
57.0
515.5
Max
355.2</p>
      <p>Mean Median
100.0</p>
      <p>Min
0.1</p>
      <p>Censoring Time
Max
337.0</p>
      <p>Mean
159.6
344.0 2029.0 1059.9
371.0 1999.0 1298.9 1347.5</p>
      <p>
        Median
158.0
918.0
sion [MTLR]
        <xref ref-type="bibr" rid="ref19">(Yu et al. 2011)</xref>
        • Deep Learning models: DNNSurv
        <xref ref-type="bibr" rid="ref21">(Zhao and Feng
2020)</xref>
        , DeepHit
        <xref ref-type="bibr" rid="ref14">(Lee et al. 2018)</xref>
        , DeepSurv
(Katzman et al. 2018), CoxTime
        <xref ref-type="bibr" rid="ref10 ref12">(Kvamme, Borgan, and
Scheel 2019)</xref>
        , Deep Survival Machine [DSM]
        <xref ref-type="bibr" rid="ref17">(Nagpal,
Li, and Dubrawski 2021)</xref>
        , Piecewise Constant Hazard
[PCHazard]
        <xref ref-type="bibr" rid="ref10 ref12">(Kvamme and Borgan 2019)</xref>
        , and our
proposed models: PseudoNAM and PseudoNRSF.
      </p>
    </sec>
    <sec id="sec-5">
      <title>Results and Discussion</title>
      <p>Table 2 shows the performance comparison of the survival
models based on time dependent concordance index and
Brier scores. From this table, we see that our PseudoNAM
obtains similar or comparable performance to other survival
analysis models, while PseudoNRSF outperforms all the
survival models on the WHAS dataset, and obtains similar
performance as the state-of-the-art models on the other two
datasets. We notice that the independent neural networks for
individual covariates limits PseudoNAM to learn the shared
effect on the survival probability at different times, thus
resulting in comparable but not the best results.</p>
      <p>Model Intepretations
The main advantage of our PseudoNAM models is that they
can provide interpretations. Here, we discuss the two ways
of interpreting the PseudoNAM model predictions: overall
feature importance scores and feature-level interpretations.</p>
      <p>PseudoNAM first learns the individual feature
contributions for pre-specified time points (here, we choose
10th; 20th; :::; 60th percentile of the event horizon). Then
we sum up these feature contributions followed by the
sigmoid transformation to get the final survival
probabilities at the pre-specified time points. Figure 2 shows the
overall feature importance scores measured as mean
individual feature contributions on the survival probability at
the pre-specified time points for the METABRIC dataset.
We see that the features can have a positive or negative
impact (overall effect) on survival probability predictions
at different time points for breast cancer patients. For
example, the covariates such as MKI67, radiotherapy,
and chemotherapy have positive feature
contributions at the initial time points (10th percentile), which means
that they influence better survival outcomes (higher survival
probabilities). However, at later time points (such as 60th
percentile), these features have negative feature
contributions - meaning they result in mortality. This is expected
because the survival probability remains higher at initial
time points, and it decreases over time. Therefore, the
treatment like chemotherapy fails to reduce the risk of death
at later time points, and the older people (age at diagnosis)
are at greater mortality risk.</p>
      <p>Figure 3 shows the permutation feature importance,
which is measured by observing how random re-shuffling
of each covariate influences model performance. We
use eli52 library to compute the feature importance
for PseudoNRSF model. We observe that age at
diagnosis has the highest importance on the survival
probability predictions and ER-positive has the lowest
feature importance.</p>
      <p>Figure 4 shows the individual feature contribution</p>
      <sec id="sec-5-1">
        <title>2https://github.com/eli5-org/eli5</title>
        <p>(i.e., the outputs of the individual neural networks of
PseudoNAM) on survival probability at different time
points (i.e., time-varying covariate effect on survival
predictions) for the METABRIC dataset. Here x-axis shows
the feature values, and the y-axis shows their
contributions. In other words, this plot provides feature-level
interpretations. For example, the survival probability for
the feature age at diagnosis at all the time points
starts decreasing after 65 years; and we see that the feature
chemotherapy is biased to the patients who did not
receive chemotherapy since the density is much higher for this
group (darker brown bar). The plot also shows that the model
predicted a decrease in survival probability for a few patients
who received chemotherapy, especially at later time points.
Why PseudoNAM is suited for healthcare domain?
As shown in Table 2, our PseudoNAM models obtain good
predictive and discriminative performance on all the survival
datasets. Moreover, using our models, one can visualize each
covariates’ contribution to the survival probability.
Therefore, PseudoNAM helps to identify the potential risk factors
for an event, such as death due to breast cancer. The
visualization of the feature-level interpretations can be a step
towards transparency in the deep learning models, which can
inform clinical decision-making and perhaps lead to trust in
the model. Thus, PseudoNAM models with high
predictiveability and inherent interpretability could be well-suited for
survival analysis in the healthcare domain.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>Conclusion</title>
      <p>In this paper, we proposed interpretable pseudo value-based
deep learning approaches PseudoNAM and PseudoNRSF
to model the nonlinear time-varying covariate effect on
survival predictions. Our proposed models use 1) pseudo
values to handle censoring and 2) neural additive networks to
capture the complex nonlinear relationships and to obtain
interpretable predictions. Empirical results show that our
proposed models achieve similar or better performance than the
state-of-the-art survival methods. Our PseudoNAM model
provides both overall feature importance scores and
featurelevel interpretations of predicted survival probabilities at
different time points. For future work, we study and compare
the interpretability of our proposed models with other
parametric survival approaches.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgements</title>
      <p>This work is partially supported by grant IIS–1948399
from the US National Science Foundation and grant
80NSSC21M0027 from the National Aeronautics and Space
Administration.</p>
      <p>Gerds, T. A.; and Schumacher, M. 2006. Consistent
estimation of the expected Brier score in general survival models
with right-censored event times. Biometrical Journal 48(6).
Hosmer, D. W.; and Lemeshow, S. 2002. Applied survival
analysis: regression modelling of time to event data. Wiley.
Ishwaran, H.; Kogalur, U. B.; Blackstone, E. H.; Lauer,
M. S.; et al. 2008. Random survival forests. The annals
of applied statistics 2(3): 841–860.</p>
      <p>Katzman, J. L.; Shaham, U.; Cloninger, A.; Bates, J.; Jiang,
T.; and Kluger, Y. 2018. DeepSurv: personalized treatment
recommender system using a Cox proportional hazards deep
neural network. BMC medical research methodology 18(1).
Klein, J. P.; Gerster, M.; Andersen, P. K.; Tarima, S.; and
Perme, M. P. 2008. SAS and R functions to compute
pseudovalues for censored data regression. Computer methods and
programs in biomedicine .</p>
      <p>Knaus, W. A.; Harrell, F. E.; Lynn, J.; Goldman, L.; Phillips,
R. S.; Connors, A. F.; Dawson, N. V.; Fulkerson, W. J.;
Califf, R. M.; Desbiens, N.; et al. 1995. The SUPPORT
prognostic model: Objective estimates of survival for
seriously ill hospitalized adults. Annals of internal medicine .</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <surname>Agarwal</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ; Frosst,
          <string-name>
            <given-names>N.</given-names>
            ;
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            ;
            <surname>Caruana</surname>
          </string-name>
          , R.; and Hinton,
          <string-name>
            <surname>G. E.</surname>
          </string-name>
          <year>2020</year>
          .
          <article-title>Neural additive models: Interpretable machine learning with neural nets</article-title>
          . arXiv:
          <year>2004</year>
          .13912 .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <surname>Andersen</surname>
            ,
            <given-names>P. K.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Borgan</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Gill</surname>
          </string-name>
          , R. D.; and
          <string-name>
            <surname>Keiding</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <year>2012</year>
          .
          <article-title>Statistical models based on counting processes.</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <string-name>
            <surname>Andersen</surname>
            ,
            <given-names>P. K.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Klein</surname>
            ,
            <given-names>J. P.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Rosthøj</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <year>2003</year>
          .
          <article-title>Generalised linear models for correlated pseudo-observations, with applications to multi-state models</article-title>
          .
          <source>Biometrika</source>
          <volume>90</volume>
          (
          <issue>1</issue>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <string-name>
            <surname>Andersen</surname>
            ,
            <given-names>P. K.</given-names>
          </string-name>
          ; and
          <string-name>
            <given-names>Pohar</given-names>
            <surname>Perme</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <year>2010</year>
          .
          <article-title>Pseudoobservations in survival analysis</article-title>
          .
          <source>Statistical methods in medical research 19</source>
          <volume>(1)</volume>
          :
          <fpage>71</fpage>
          -
          <lpage>99</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          <string-name>
            <surname>Antolini</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Boracchi</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Biganzoli</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          <year>2005</year>
          .
          <article-title>A timedependent discrimination index for survival data</article-title>
          . Statistics in medicine
          <volume>24</volume>
          (
          <issue>24</issue>
          ):
          <fpage>3927</fpage>
          -
          <lpage>3944</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <string-name>
            <surname>Chapfuwa</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Tao</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Page</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Goldstein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Duke</surname>
            ,
            <given-names>L. C.</given-names>
          </string-name>
          ; and Henao,
          <string-name>
            <surname>R.</surname>
          </string-name>
          <year>2018</year>
          .
          <article-title>Adversarial time-to-event modeling</article-title>
          .
          <source>In International Conference on Machine Learning</source>
          ,
          <fpage>735</fpage>
          -
          <lpage>744</lpage>
          . PMLR.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <string-name>
            <surname>Cox</surname>
            ,
            <given-names>D. R.</given-names>
          </string-name>
          <year>1972</year>
          .
          <article-title>Regression models and life-tables</article-title>
          .
          <source>Journal of the Royal Statistical Society: Series B (Methodological) .</source>
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          <string-name>
            <surname>Faraggi</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ; and Simon,
          <string-name>
            <surname>R.</surname>
          </string-name>
          <year>1995</year>
          .
          <article-title>A neural network model for survival data</article-title>
          .
          <source>Statistics in medicine 14(1)</source>
          :
          <fpage>73</fpage>
          -
          <lpage>82</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          <string-name>
            <surname>Fotso</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <year>2018</year>
          .
          <article-title>Deep neural networks for survival analysis based on a multi-task framework</article-title>
          . arXiv preprint arXiv:
          <year>1801</year>
          .05512 .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          <string-name>
            <surname>Kvamme</surname>
          </string-name>
          , H.; and Borgan, Ø.
          <year>2019</year>
          .
          <article-title>Continuous and discrete-time survival prediction with neural networks</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          arXiv preprint arXiv:
          <year>1910</year>
          .06724 .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          <string-name>
            <surname>Kvamme</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ; Borgan, Ø.; and
          <string-name>
            <surname>Scheel</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          <year>2019</year>
          .
          <article-title>Time-toevent prediction with neural networks and Cox regression</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          arXiv preprint arXiv:
          <year>1907</year>
          .00825 .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Zame</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ; Yoon, J.; and
          <string-name>
            <surname>van der Schaar</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          <article-title>Deephit: A deep learning approach to survival analysis with competing risks</article-title>
          .
          <source>In Proceedings of the AAAI Conference on Artificial Intelligence</source>
          , volume
          <volume>32</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          <string-name>
            <surname>Montavon</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Binder</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Lapuschkin</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Samek</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ; and Mu¨ller, K.-R.
          <year>2019</year>
          .
          <article-title>Layer-wise relevance propagation: an overview</article-title>
          .
          <source>In Explainable AI: Interpreting, Explaining and Visualizing Deep Learning</source>
          . Springer.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          <string-name>
            <surname>Nagpal</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>X. R.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Dubrawski</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <year>2021</year>
          .
          <article-title>Deep survival machines: Fully parametric survival regression and representation learning for censored data with competing risks</article-title>
          .
          <source>IEEE Journal of Biomedical and Health Informatics .</source>
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          <string-name>
            <surname>Rahman</surname>
            ,
            <given-names>M. M.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Matsuo</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Matsuzaki</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Purushotham</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <year>2021</year>
          .
          <article-title>DeepPseudo: Pseudo Value Based Deep Learning Models for Competing Risk Analysis</article-title>
          .
          <source>In Proceedings of the AAAI Conference on Artificial Intelligence</source>
          , volume
          <volume>35</volume>
          ,
          <fpage>479</fpage>
          -
          <lpage>487</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          <string-name>
            <surname>Yu</surname>
            ,
            <given-names>C.-N.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Greiner</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ; Lin, H.-C.; and
          <string-name>
            <surname>Baracos</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          <article-title>Learning patient-specific cancer survival distributions as a sequence of dependent regressors</article-title>
          .
          <source>Advances in Neural Information Processing Systems</source>
          <volume>24</volume>
          :
          <fpage>1845</fpage>
          -
          <lpage>1853</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          <string-name>
            <surname>Zhao</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Feng</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <year>2020</year>
          .
          <article-title>Deep neural networks for survival analysis using pseudo values</article-title>
          .
          <source>IEEE journal of biomedical and health informatics 24</source>
          <volume>(11</volume>
          ):
          <fpage>3308</fpage>
          -
          <lpage>3314</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>