Pith. sign in

REVIEW 4 major objections 5 minor 73 references

Survival Concept-Based Learning Models

T0 review · 4 major / 5 minor · reviewed 2026-08-08 · deepseek-v4-flash

Pith's one-line read Survival prediction gains concept bottleneck models whose risk scores can be read off concept by concept.

desk verdict The first concept-bottleneck-plus-survival model is a real novelty, but its headline accuracy claim is an artifact of generating event times from the very concepts the model is supervised to predict. read the letter →

arxiv 2502.05950 v1 pith:35JWUCH5 submitted 2025-02-09 cs.LG cs.AIstat.ML

classification cs.LGcs.AIstat.ML MSC 68T0762N0162N05
keywords concept-basedlearningsurvivalanalysisconceptbottleneckmodelCoxproportionalhazardsBeranestimatorcensoreddatainterpretabilityneuralnetworks
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper tries to bring concept-based learning into survival analysis, where the target is a time to an event and some observations are censored. It proposes two neural architectures, SurvCBM and SurvRCM, that predict survival functions from high-level concepts and are trained end-to-end with a loss combining the smoothed C-index and concept classification cross-entropy. The paper's central assertion is that the bottleneck version, SurvCBM, in which the Cox or Beran survival model is trained on predicted concept logits, outperforms both the regularized SurvRCM and a concept-free baseline on synthetic composite image datasets. If true, this means that explicitly representing human-understandable concepts does not merely make survival predictions explainable; it can also improve their accuracy. The paper also proposes two ways to read concept relevance from the survival prediction, one based on Cox regression coefficients and one based on nearest neighbors in survival-function space.

What carries the argument

The load-bearing object is the concatenated concept-logit vector $p$ formed from the outputs of $m$ concept CNNs; this vector is the input to the survival head, which is either the Cox model with hazard $H(t \mid x, b) = H_0(t)\exp(b^T p)$ or the Beran estimator with Gaussian-kernel weights computed on $p$. Training minimizes $L = -\alpha L_{\text{surv}} + (1-\alpha) L_{\text{CE}}$, where $L_{\text{surv}}$ is a differentiable smoothed C-index and $L_{\text{CE}}$ is cross-entropy for concept classification. The bottleneck forces all survival information to flow through the concepts, which is why the model can both produce survival functions and explain them by concept contributions.

What would settle it

Run SurvCBM against SurvRCM and SurvBase on a real censored dataset with concept annotations, such as a medical cohort with expert-defined risk factors and follow-up times, and measure the C-index difference; if the advantage shrinks to zero or reverses when event times are not generated from the concepts, the paper's central claim of concept-driven accuracy improvement is falsified.

Watch

Extended reading notes

Core claim

The central discovery claimed is that the concept bottleneck model, previously used for classification, can be adapted to censored time-to-event data by placing a survival head after the concept bottleneck. In SurvCBM the input images are mapped by separate CNNs to concept logits; these logits are concatenated and passed to either the Cox proportional hazards model or the Beran estimator, which outputs a survival function. Each concept contributes a linear term in the Cox log-risk, and the Beran estimator weights training instances by similarity of concept logits, so predictions stay interpretable in terms of concepts. Numerical experiments on synthetic MNIST and CIFAR-10 composites show SurvCBM achieving higher C-index than SurvRCM and SurvBase, with the largest gains when the Cox model is used on Weibull-generated event times.

Load-bearing premise

The quantitative case for SurvCBM depends on synthetic datasets in which the true event time is generated from a linear combination of the same predefined concepts the model is trained to predict; on real censored survival data, where event times may not be driven by those concepts, the claimed accuracy advantage may not hold.

Editorial extensions

If this is right

  • If SurvCBM's reported advantage holds, then collecting concept labels can improve the accuracy of survival models, not just their interpretability, on tasks where concepts align with the drivers of event times.
  • The Cox-based SurvCBM yields concept relevance scores as products of learned coefficients and softmax concept probabilities, so a risk prediction can be audited concept by concept.
  • The Beran-based SurvCBM offers example-based explanations: the training instances with survival functions closest to the explained instance show which concepts are doing the work.
  • The paper's negative result for SurvRCM indicates that using concepts only as a regularizer is weaker than a true bottleneck for survival tasks, so future concept-based survival models should route predictions through concepts.
  • The claim of being the first integration of concept-based learning with survival analysis establishes a baseline architecture against which later concept-based survival models can be compared.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The reported superiority may depend on the generative match: in these synthetic datasets the event time is a function of the very concepts the model is trained to predict, so the advantage could shrink on real data where concepts are imperfectly correlated with event time.
  • Because the paper uses only synthetic composite images, the most direct testable extension is to apply SurvCBM to a real medical or reliability dataset with expert-annotated concepts and compare its C-index against concept-free deep survival models.
  • The Cox-based interpretation method inherits the proportional-hazards assumption; on datasets where hazards cross, the Beran-based nearest-neighbor explanation would likely be more dependable, a comparison the paper does not make.
  • Continuous or time-varying concepts, which the paper names as future work, might be needed for reliability applications where system components degrade gradually rather than being described by categorical attributes.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper proposes SurvCBM and SurvRCM, two neural architectures that combine concept-based learning with survival analysis. SurvCBM uses predicted concept logits as the input to a Cox proportional hazards head or a Beran estimator head; SurvRCM uses concept logits only as an auxiliary classification loss while the survival head is trained on a continuous embedding. Both models are trained end-to-end with a loss that balances a smoothed C-index term and a concept cross-entropy term. The paper also presents two interpretation methods: Cox-coefficient contributions and a nearest-instance concept-matching procedure for the Beran estimator. Experiments on synthetic MNIST, MNIST-sin, and CIFAR-10 image datasets compare C-index and concept F1 across sample sizes and censoring proportions, reporting that SurvCBM outperforms SurvRCM and the concept-free SurvBase baseline.

Significance. If the reported results hold, this is a useful and timely first integration of concept bottleneck models with censored survival data, and the public code is a concrete asset. The end-to-end training formulation and the two interpretability mechanisms are clearly relevant to medical and reliability applications. However, the central comparative claim is currently supported only by synthetic data in which the event time is generated from the same concept vector that supervises the concept predictor, and the survival loss is not fully specified because the expected event times are never defined. These two gaps are load-bearing for the abstract and Section 7 claims that concept information substantially improves survival prediction accuracy.

major comments (4)
  1. [4.2, Eq. (12)] The smoothed C-index loss in Eq. (12) uses estimated expected event times \hat T_i, but the paper never defines how \hat T_i is computed from the predicted survival function for either the Cox or Beran head. Since L_surv is the only survival term in Eq. (10), the training objective is underspecified. Please provide the exact formula (e.g., numerical integration of S(t), median survival, or restricted mean survival time) and state how it is made differentiable for end-to-end training.
  2. [5.1, Eqs. (13)–(14), and Section 7] The synthetic event times are generated as deterministic functions of the same concept vector c that is supplied as supervision to the concept predictor. In the MNIST and CIFAR-10 settings, SurvCBM's Cox head is a linear function of concept logits and can in principle recover the exact data-generating risk, while SurvBase must discover the relevant information from raw pixels. The large C-index gaps in Figs. 6 and 8 may therefore reflect the experimental design rather than a general benefit of concept information. No real censored dataset is used, so the abstract and Section 7 claims about the crucial role of concept information are not established for data whose event times are not driven by predefined concepts; real-data validation or additional generative settings with event times depending on image features not fully captured by the concepts would be needed.
  3. [5, hyperparameter selection] The text states that different hyperparameter values are tested and those leading to the best results are chosen, and all reported metrics are computed on the test set. Selecting hyperparameters on the test set and then reporting test metrics on the same set, even with 100 repetitions, can produce optimistic estimates and may favor SurvCBM if it has more tunable components. Please use validation-based selection or nested cross-validation, and report the selected hyperparameter values for reproducibility.
  4. [4.3] The claim that LCE in SurvRCM 'does not directly influence the embeddings z' is questionable, because the concept logits p are produced from z by fully connected networks, so the gradient of LCE backpropagates through those networks into z. If a stop-gradient is applied before the concept heads, this should be stated explicitly; otherwise the description of SurvRCM as a regularized model with unaffected embeddings is inaccurate.
minor comments (5)
  1. [6] The first Beran-based explanation method is described inconsistently: it first says neighbors are selected by closeness in concept space, then defines closeness by the distance between predicted survival functions, and Eq. (15) uses distances between logits. Please state exactly which distance is used to select the nearest instances.
  2. [5.1 and 6] The MNIST generation vector b is given as (0.5, 1.5, −1, 0.001) in the experimental setup, but Section 6 uses b = (b_1, ..., b_4) with each b_i ∈ R^10. Please clarify whether concepts enter Eq. (13) as scalar digit values or as one-hot vectors, since this changes the data-generating model.
  3. [4.2, Eq. (12)] The denominator of Eq. (12) sums pairs with δ_j = 1 and T_j < T_i; for small batches or certain censoring patterns this set can be empty, leading to division by zero. Please specify the handling of empty pair sets and ties in event times.
  4. [Abstract and 7] The abstract says the models outperform 'traditional survival models', but the experiments compare only SurvBase and SurvRCM. Either add standard survival baselines (e.g., DeepSurv, random survival forests, or Cox on raw features) or temper the claim to 'the compared baselines'.
  5. [Throughout] There are several typos and inconsistencies to clean up: 'impove', 'significanlty', 'CIF AR-10' versus 'CIFAR-10', the phrase 'To implement We apply Lsurv' in Section 4.2, and the label 'Mixture model' used in Fig. 7 for what the text calls SurvRCM.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the model construction is direct, and the synthetic data generator favors SurvCBM by evaluation design rather than by derivation.

full rationale

I walked the derivation chain: SurvCBM is defined as S(t|x,A)=F(G(x)) with G outputting concept logits and F a Cox or Beran survival model; SurvRCM and SurvBase are distinct architectures sharing the same loss. No equation defines the target survival function in terms of the model's predictions or vice versa; the loss (10)-(12) is a standard combination of a smoothed C-index and concept cross-entropy. The interpretability methods re-read the model's own linear risk score or nearest-neighbor survival-function distances; these are explanations by definition, not validations, and no fitted parameter is relabeled as a prediction. The only potentially circular-looking element is the synthetic evaluation: Eqs. (13)-(14) generate event times T from the same concept vector c that supervises the concept predictor, so the benchmark is favorable to SurvCBM by construction. However, this is a data-generating choice, not a reduction of the model's derivation to its inputs; the C-index is computed on a held-out test set and the model could fail to learn the mapping. The paper's Section 7 acknowledges the real-world limitation that concepts must be predefined and no real censored dataset is used; that is an external-validity threat, not circular reasoning. Self-citations ([24], [26], [71], [72]) are contextual related-work citations and are not load-bearing for the architecture, loss, or benchmark. I find no step where a claimed prediction is equivalent to its input by construction.

Assumptions & free parameters 5 free parameters · 5 assumptions · 0 invented entities

The models rely on standard survival axioms (Cox proportional hazards, Beran kernel estimator, C-index loss) and on an ad hoc synthetic data generator for evaluation. The free parameters are mostly standard hyperparameters, but the Beran kernel width tau is trainable and the loss balance alpha and temperature omega are hand-set. The main non-standard input assumption is that the event times in the experiments are generated from the same linear concept structure the model is designed to exploit.

free parameters (5)
  • alpha (loss balance) = not reported, chosen by hyperparameter search
    Eq. (10) balances the survival loss and the concept cross-entropy loss; affects both model variants.
  • omega (sigmoid temperature) = not reported
    Eq. (12) controls the steepness of the smoothed C-index surrogate.
  • tau (Beran kernel width) = scalar in Eq. (7); trainable per concept in Eq. (15)
    Controls the weighting of instances in the Beran estimator; the trainable per-concept version is used for interpretability.
  • embedding dimension d = not reported
    Output dimension of the CNN embedding in SurvRCM and SurvBase.
  • Beran background set size = not reported
    Listed as a hyperparameter; the number of instances used in the Beran estimator is not specified.
assumptions (5)
  • domain assumption Cox proportional hazards assumption: log-risk is a linear combination of covariates (concept logits).
    Eq. (3) in Section 3.2, used as the second predictor in SurvCBM. If this assumption is false, the Cox-based variant is misspecified.
  • standard math The Beran estimator consistently estimates the conditional survival function via kernel-weighted product-limit.
    Eq. (5) in Section 3.2; standard nonparametric survival estimator.
  • domain assumption The smoothed C-index is a valid differentiable surrogate for the ranking loss.
    Eq. (12) in Section 4.2; assumed to approximate the C-index during optimization.
  • ad hoc to paper Synthetic data generation with event times driven by concepts is a representative proxy for real survival data.
    Eqs. (13) and (14) in Section 5.1; the paper's quantitative conclusions depend on this assumption.
  • domain assumption Expected event times can be computed from predicted survival functions and are finite under censoring.
    Used in Eq. (2) and Eq. (12), but the paper never specifies how E[T] is computed from the Beran or Cox SF, especially with heavy censoring.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Survival Concept-Based Learning Models." pith.science (2026). https://pith.science/paper/35JWUCH5

@misc{pith2026250205950,
  author       = {Pith},
  title        = {Pith review of: Survival Concept-Based Learning Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/35JWUCH5}},
  note         = {Machine review of arXiv:2502.05950}
}
read the original abstract

Concept-based learning enhances prediction accuracy and interpretability by leveraging high-level, human-understandable concepts. However, existing CBL frameworks do not address survival analysis tasks, which involve predicting event times in the presence of censored data -- a common scenario in fields like medicine and reliability analysis. To bridge this gap, we propose two novel models: SurvCBM (Survival Concept-based Bottleneck Model) and SurvRCM (Survival Regularized Concept-based Model), which integrate concept-based learning with survival analysis to handle censored event time data. The models employ the Cox proportional hazards model and the Beran estimator. SurvCBM is based on the architecture of the well-known concept bottleneck model, offering interpretable predictions through concept-based explanations. SurvRCM uses concepts as regularization to enhance accuracy. Both models are trained end-to-end and provide interpretable predictions in terms of concepts. Two interpretability approaches are proposed: one leveraging the linear relationship in the Cox model and another using an instance-based explanation framework with the Beran estimator. Numerical experiments demonstrate that SurvCBM outperforms SurvRCM and traditional survival models, underscoring the importance and advantages of incorporating concept information. The code for the proposed algorithms is publicly available.

Figures

Figures reproduced from arXiv: 2502.05950 by the authors.

Figure 1
Figure 1. The architecture of SurvCBM where σ is the sigmoid function with a temperature parameter ω, which is treated as a hyperparameter. The loss function LCE is averaged over a batch during the optimization process, while the smoothed C-index is computed over all instances in the batch. SurvCBM is trained in an end-to-end manner. It is worth noting that the use of a set of convolutional neural networks is one possible imp… view at source ↗
Figure 2
Figure 2. The architecture of SurvRCM survival models. Its architecture is illustrated in [PITH_FULL_IMAGE:figures/full_fig_p010_2.png] view at source ↗
Figure 3
Figure 3. An architecture of SurvBase a regularization term. It constrains the logits of the concepts p, but does not directly influence the embeddings z. As a result, the SF may be learned inaccurately, as it is derived from the embeddings rather than the concept logits. This limitation prevents the model from being fully interpretable, as the obtained concepts do not directly explain the SF. 5 Numerical Experiments Two type… view at source ↗
Figures from the paper (19 more)
Figure 4
Figure 4. Figure 4: Instances constructed from the MNIST dataset; the corresponding concepts [PITH_FULL_IMAGE:figures/full_fig_p014_4.png]
Figure 5
Figure 5. Figure 5: Instances constructed from the CIFAR-10 dataset; the corresponding concepts [PITH_FULL_IMAGE:figures/full_fig_p014_5.png]
Figure 6
Figure 6. Figure 6: Dependencies of the survival model performance (the C-index) on the number [PITH_FULL_IMAGE:figures/full_fig_p015_6.png]
Figure 7
Figure 7. Figure 7: Dependencies of the concept classification performance (the F1-measure) on [PITH_FULL_IMAGE:figures/full_fig_p016_7.png]
Figure 8
Figure 8. Figure 8: Dependencies of the survival model performance (the C-index) on the propor [PITH_FULL_IMAGE:figures/full_fig_p016_8.png]
Figure 9
Figure 9. Figure 9: Dependencies of the survival model performance (the F1-measure) on the [PITH_FULL_IMAGE:figures/full_fig_p017_9.png]
Figure 10
Figure 10. Figure 10: Dependencies of the survival model performance (the C-index) on the number [PITH_FULL_IMAGE:figures/full_fig_p018_10.png]
Figure 11
Figure 11. Figure 11: Dependencies of the survival model performance (the F1-measure) on the [PITH_FULL_IMAGE:figures/full_fig_p018_11.png]
Figure 12
Figure 12. Figure 12: Dependencies of the survival model performance (the C-index) on the pro [PITH_FULL_IMAGE:figures/full_fig_p019_12.png]
Figure 13
Figure 13. Figure 13: Dependencies of the survival model performance (the F1-measure) on the [PITH_FULL_IMAGE:figures/full_fig_p019_13.png]
Figure 14
Figure 14. Figure 14: Dependencies of the survival model performance (the C-index) on the number [PITH_FULL_IMAGE:figures/full_fig_p020_14.png]
Figure 15
Figure 15. Figure 15: Dependencies of the survival model performance (the F1-measure) on the [PITH_FULL_IMAGE:figures/full_fig_p021_15.png]
Figure 16
Figure 16. Figure 16: Dependencies of the survival model performance (the C-index) on the pro [PITH_FULL_IMAGE:figures/full_fig_p021_16.png]
Figure 17
Figure 17. Figure 17: Dependencies of the survival model performance (the F1-measure) on the [PITH_FULL_IMAGE:figures/full_fig_p022_17.png]
Figure 18
Figure 18. Figure 18: Examples of nearest neighbors for the explainable instance derived from the [PITH_FULL_IMAGE:figures/full_fig_p023_18.png]
Figure 19
Figure 19. Figure 19: Examples of nearest neighbors for the explainable instance derived from the [PITH_FULL_IMAGE:figures/full_fig_p024_19.png]
Figure 20
Figure 20. Figure 20: Examples of nearest neighbors for the explainable instance constructed from [PITH_FULL_IMAGE:figures/full_fig_p025_20.png]
Figure 21
Figure 21. Figure 21: Two examples of the concept importance for explainable instances construct [PITH_FULL_IMAGE:figures/full_fig_p026_21.png]
Figure 22
Figure 22. Figure 22: Two examples of the concept importance for explainable instances construct [PITH_FULL_IMAGE:figures/full_fig_p026_22.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

73 extracted references · 54 canonical work pages

  1. [1]

    A survey on Concept-based Approaches For Model Improvement

    A. Gupta and P.J. Narayanan. A survey on concept-based approaches for model improvement. arXiv:2403.14566, Mar 2024

  2. [2]

    Wattenberg, J

    Been Kim, M. Wattenberg, J. Gilmer, C. Cai, J. Wexler, F. Viegas, et al. Inter- pretability beyond feature attribution: Quantitative testing with concept activation vectors (tcav). In International conference on machine learning , pages 2668–2677. PMLR, 2018

  3. [3]

    Learning Interpretable Concept-Based Models with Human Feedback

    I. Lage and F. Doshi-Velez. Learning interpretable concept-based models with human feedback. arXiv:2012.02898, Dec 2020

  4. [4]

    Nakashima, and H

    Bowen Wang, Liangzhi Li, Y. Nakashima, and H. Nagahara. Learning bottleneck concepts in image classification. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 10962–10971, 2023. 27

  5. [5]

    Statistically signif- icant concept-based explanation of image classifiers via model knockoffs

    Kaiwen Xu, Kazuto Fukuchi, Youhei Akimoto, and Jun Sakuma. Statistically signif- icant concept-based explanation of image classifiers via model knockoffs. InProceed- ings of the Thirty-Second International Joint Conference on Artificial Intelligence , pages 519–526, 2023

  6. [6]

    Arik, Chun-Liang Li, T

    Chih-Kuan Yeh, Been Kim, S. Arik, Chun-Liang Li, T. Pfister, and P. Ravikumar. On completeness-aware concept-based explanations in deep neural networks. In Advances in neural information processing systems, volume 33, pages 20554–20565, 2020

  7. [7]

    Guidotti, A

    R. Guidotti, A. Monreale, S. Ruggieri, F. Turini, F. Giannotti, and D. Pedreschi. A survey of methods for explaining black box models. ACM computing surveys , 51(5):93, 2019

  8. [8]

    Liang, S

    Y. Liang, S. Li, C. Yan, M. Li, and C. Jiang. Explaining the black-box model: A survey of local interpretation methods for deep neural networks. Neurocomputing, 419:168–182, 2021

Show all 73 references
  1. [9]

    A survey on neural net- work interpretability

    Yu Zhang, Peter Tiˇ no, Aleˇ s Leonardis, and Ke Tang. A survey on neural net- work interpretability. IEEE Transactions on Emerging Topics in Computational Intelligence, 5(5):726–742, 2021

  2. [10]

    Poeta, G

    E. Poeta, G. Ciravegna, E. Pastor, T. Cerquitelli, and E. Baralis. Concept-based explainable artificial intelligence: A survey. arXiv:2312.12936, May 2023

  3. [11]

    Editable concept bottleneck models

    Lijie Hu, Chenyang Ren, Zhengyu Hu, Cheng-Long Wang, and Di Wang. Editable concept bottleneck models. arXiv:2405.15476, May 2024

  4. [12]

    Mussmann, E

    Pang Wei Koh, Thao Nguyen, Yew Siang Tang, S. Mussmann, E. Pierson, Been Kim, and Percy Liang. Concept bottleneck models. In International conference on machine learning, pages 5338–5348. PMLR, 2020

  5. [13]

    Chauhan, R

    K. Chauhan, R. Tiwari, J. Freyberg, P. Shenoy, and K. Dvijotham. Interactive concept bottleneck models. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 37, pages 5948–5955, 2023

  6. [14]

    Sarkar, D

    A. Sarkar, D. Vijaykeerthy, A. Sarkar, and V.N. Balasubramanian. A framework for learning ante-hoc explainable models via concepts. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 10286– 10295, June 2022

  7. [15]

    Probabilis- tic concept bottleneck models

    Eunji Kim, Dahuin Jung, Sangha Park, Siwon Kim, and Sungroh Yoon. Probabilis- tic concept bottleneck models. In International Conference on Machine Learning , pages 16521–16540. PMLR, 2023. 28

  8. [16]

    Ismail, J

    A.A. Ismail, J. Adebayo, H.C. Bravo, S. Ra, and Kyunghyun Cho. Concept bottle- neck generative models. In Proceedings of ICML 2023. Workshop on Deployment Challenges for Generative AI , pages 1–10, 2023

  9. [17]

    Kazmierczak, E

    R. Kazmierczak, E. Berthier, G. Frehse, and G. Franchi. CLIP-QDA: An explain- able concept bottleneck model. Transactions on Machine Learning Research, 2024

  10. [18]

    Marconato, A

    E. Marconato, A. Passerini, and S. Teso. Glancenets: Interpretable, leak-proof concept-based models. In Advances in Neural Information Processing Systems , volume 35, pages 21212–21227, 2022

  11. [19]

    Vandenhirtz, S

    M. Vandenhirtz, S. Laguna, R. Marcinkeviˇ cs, and J.E. Vogt. Stochastic concept bottleneck models. In ICML 2024 Workshop on Structured Probabilistic Inference & Generative Modeling , 2024

  12. [20]

    Zarlenga, Z

    M.E. Zarlenga, Z. Shams, M.E. Nelson, B. Kim, and M. Jamnik. TabCBM: Concept- based interpretable neural networks for tabular data. Transactions on Machine Learning Research, 2023

  13. [21]

    Hosmer, S

    D. Hosmer, S. Lemeshow, and S. May. Applied Survival Analysis: Regression Mod- eling of Time to Event Data . John Wiley & Sons, New Jersey, 2008

  14. [22]

    Forest, K

    F. Forest, K. Rombach, and O. Fink. Interpretable prognostics with concept bot- tleneck models. arXiv:2405.17575, May 2024

  15. [23]

    D.R. Cox. Regression models and life-tables. Journal of the Royal Statistical Society, Series B (Methodological), 34(2):187–220, 1972

  16. [24]

    Kovalev, L.V

    M.S. Kovalev, L.V. Utkin, and E.M. Kasimov. SurvLIME: A method for explaining machine learning survival models. Knowledge-Based Systems, 203:106164, 2020

  17. [25]

    R. Beran. Nonparametric regression with randomly censored survival data. Tech- nical report, University of California, Berkeley, 1981

  18. [26]

    Utkin, D.Y

    L.V. Utkin, D.Y. Eremenko, and A.V. Konstantinov. SurvBeX: an explanation method of the machine learning survival models based on the beran estimator. International Journal of Data Science and Analytics , pages 1–26, 2024

  19. [27]

    Auxiliary losses for learning generalizable concept-based models

    Ivaxi Sheth and Samira Ebrahimi Kahou. Auxiliary losses for learning generalizable concept-based models. Advances in Neural Information Processing Systems , 36, 2024

  20. [28]

    Semi-supervised concept bottleneck models

    Lijie Hu, Tianhao Huang, Huanyi Xie, Chenyang Ren, Zhengyu Hu, Lu Yu, and Di Wang. Semi-supervised concept bottleneck models. arXiv:2406.18992, Jun 2024. 29

  21. [29]

    Oikarinen, S

    T. Oikarinen, S. Das, L.M. Nguyen, and Tsui-Wei Weng. Label-free concept bot- tleneck models. arXiv:2304.06129, Apr 2023

  22. [30]

    Concept complement bottleneck model for interpretable medical image diagnosis

    Hongmei Wang, Junlin Hou, and Hao Chen. Concept complement bottleneck model for interpretable medical image diagnosis. arXiv:2410.15446, Oct 2024

  23. [31]

    Schrodi, J

    S. Schrodi, J. Schur, M. Argus, and T. Brox. Concept bottleneck models without predefined concepts. arXiv:2407.03921, Jul 2024

  24. [32]

    Post-hoc concept bottleneck models

    Mert Yuksekgonul, Maggie Wang, and James Zou. Post-hoc concept bottleneck models. In ICLR 2022 Workshop on PAIR {\textasciicircum} 2Struct: Privacy, Accountability, Interpretability, Robustness, Reasoning on Structured Data , 2022

  25. [33]

    Incremental residual concept bottleneck models

    Chenming Shang, Shiji Zhou, Hengyuan Zhang, Xinzhe Ni, Yujiu Yang, and Yuwang Wang. Incremental residual concept bottleneck models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 11030– 11040, 2024

  26. [34]

    AnyCBMs: How to turn any black box into a concept bottleneck model

    Gabriele Dominici, Pietro Barbiero, Francesco Giannini, Martin Gjoreski, and Marc Langhenirich. AnyCBMs: How to turn any black box into a concept bottleneck model. arXiv:2405.16508, May 2024

  27. [35]

    Aysel, Xiaohao Cai, and A

    H.I. Aysel, Xiaohao Cai, and A. Prugel-Bennett. Concept-based explainable artifi- cial intelligence: Metrics and benchmarks. arXiv:2501.19271, Jan 2025

  28. [36]

    Lanza, and S

    Jae Hee Lee, S. Lanza, and S. Wermter. From neural activations to concepts: A survey on explaining concepts in neural networks. arXiv:2310.11884, Oct 2023

  29. [37]

    Mahinpei, J

    A. Mahinpei, J. Clark, I. Lage, F. Doshi-Velez, and Weiwei Pan. Promises and pitfalls of black-box concept learning models. arXiv:2106.13314, Jun 2021

  30. [38]

    P. Wang, Y. Li, and C.K. Reddy. Machine learning for survival analysis: A survey. ACM Computing Surveys (CSUR) , 51(6):1–36, 2019

  31. [39]

    High-dimensional survival analysis: Methods and ap- plications

    Stephen Salerno and Yi Li. High-dimensional survival analysis: Methods and ap- plications. Annual review of statistics and its application , 10:25–49, 2023

  32. [40]

    Deep learning for survival analysis: a review

    Simon Wiegrebe, Philipp Kopper, Raphael Sonabend, Bernd Bischl, and Andreas Bender. Deep learning for survival analysis: a review. Artificial Intelligence Review, 57(65):1–34, 2024

  33. [41]

    G.H. Chen. An introduction to deep survival analysis models for predicting time-to- event outcomes. Foundations and Trends® in Machine Learning , 17(6):921–1100, 2024. 30

  34. [42]

    Emmert-Streib and M

    F. Emmert-Streib and M. Dehmer. Introduction to survival analysis in practice. Machine Learning & Knowledge Extraction , 1:1013–1038, 2019

  35. [43]

    Katzman, U

    J.L. Katzman, U. Shaham, A. Cloninger, J. Bates, T. Jiang, and Y. Kluger. Deep- surv: Personalized treatment recommender system using a Cox proportional haz- ards deep neural network. BMC medical research methodology, 18(24):1–12, 2018

  36. [44]

    M. Luck, T. Sylvain, H. Cardinal, A. Lodi, and Y. Bengio. Deep learning for patient-specific kidney graft survival analysis. arXiv:1705.10245, May 2017

  37. [45]

    Nezhad, N

    M.Z. Nezhad, N. Sadati, K. Yang, and D. Zhu. A deep active survival analysis approach for precision treatment recommendations: Application of prostate cancer. arXiv:1804.03280v1, April 2018

  38. [46]

    Deep recurrent survival analysis

    Kan Ren, Jiarui Qin, Lei Zheng, Zhengyu Yang, Weinan Zhang, Lin Qiu, and Yong Yu. Deep recurrent survival analysis. In Proceedings of the AAAI conference on artificial intelligence , volume 33, pages 4798–4805, 2019

  39. [47]

    Steingrimsson and S

    J.A. Steingrimsson and S. Morrison. Deep learning for survival outcomes. Statistics in Medicine, 39(17):2339–2349, 2020

  40. [48]

    Tarkhan, N

    A. Tarkhan, N. Simon, T. Bengtsson, K. Nguyen, and J. Dai. Survival predic- tion using deep learning. In Proceedings of AAAI Spring Symposium on Survival Prediction-Algorithms, Challenges and Applications , volume 146, pages 207–214. PMLR, 2021

  41. [49]

    J. Yao, X. Zhu, F. Zhu, and J. Huang. Deep correlational learning for survival prediction from multi-modality data. In Medical Image Computing and Computer– Assisted Intervention – MICCAI 2017 , volume 10434 of Lecture Notes in Computer Science, pages 406–414. Springer, Cham, 2017

  42. [50]

    Mueller, and Jane-Ling Wang

    Qixian Zhong, J.W. Mueller, and Jane-Ling Wang. Deep extended hazard mod- els for survival analysis. In Advances in Neural Information Processing Systems , volume 34, pages 15111–15124. Curran Associates, Inc., 2021

  43. [51]

    Prayag Chatha, Yixin Wang, Zhenke Wu, and J. Regier. Dynamic survival trans- formers for causal inference with electronic health records. arXiv:2210.15417, Oct. 2022

  44. [52]

    Transformer- based deep survival analysis

    Shi Hu, Egill Fridgeirsson, Guido van Wingen, and Max Welling. Transformer- based deep survival analysis. In Survival Prediction-Algorithms, Challenges and Applications, pages 132–148. PMLR, 2021. 31

  45. [53]

    Hierarchical trans- former for survival prediction using multimodality whole slide images and genomics

    Chunyuan Li, Xinliang Zhu, Jiawen Yao, and Junzhou Huang. Hierarchical trans- former for survival prediction using multimodality whole slide images and genomics. In The 26th International Conference on Pattern Recognition (ICPR) , pages 4256–

  46. [54]

    Transsurv: Transformer-based survival analysis model integrating histopathological images and genomic data for colorectal cancer

    Zhilong Lv, Yuexiao Lin, Rui Yan, Ying Wang, and Fa Zhang. Transsurv: Transformer-based survival analysis model integrating histopathological images and genomic data for colorectal cancer. IEEE/ACM Transactions on Computational Bi- ology and Bioinformatics , pages 1–10, 2022

  47. [55]

    Explainable survival analysis with convolution- involved vision transformer

    Yifan Shen, Li liu, Zhihao Tang, Zongyi Chen, Guixiang Ma, Jiyan Dong, Xi Zhang, Lin Yang, and Qingfeng Zheng. Explainable survival analysis with convolution- involved vision transformer. In Proceedings of the AAAI Conference on Artificial Intelligence (AAAI-22) , volume 36, p...

  48. [56]

    Explainable survival analysis with uncertainty using convolution-involved vision transformer

    Zhihao Tang, Li Liu, Zongyi Chen, Guixiang Ma, Jiyan Dong, Xujie Sun, Xi Zhang, Chaozhuo Li, Qingfeng Zheng, Lin Yang, et al. Explainable survival analysis with uncertainty using convolution-involved vision transformer. Computerized Medical Imaging and Graphics , 110:102302, 2023

  49. [57]

    Survtrace: Transformers for survival analysis with competing events

    Zifeng Wang and Jimeng Sun. Survtrace: Transformers for survival analysis with competing events. In Proceedings of the 13th ACM International Conference on Bioinformatics, Computational Biology and Health Informatics , pages 1–9, 2022

  50. [58]

    Krivtsov, and K

    Xingyu Li, V. Krivtsov, and K. Arora. Attention-based deep survival model for time series data. Reliability Engineering and System Safety , 217(108033):1–12, 2022

  51. [59]

    Attention-based deep recurrent model for survival prediction

    Zhaohong Sun, Wei Dong, Jinlong Shi, Kunlun He, and Zhengxing Huang. Attention-based deep recurrent model for survival prediction. ACM Transactions on Computing for Healthcare , 2(4):1–18, 2021

  52. [60]

    Ibrahim, A

    N.A. Ibrahim, A. Kudus, I. Daud, and M.R. Abu Bakar. Decision tree for competing risks survival probability in breast cancer study.International Journal Of Biological and Medical Research, 3(1):25–29, 2008

  53. [61]

    Wright, T

    M.N. Wright, T. Dankowski, and A. Ziegler. Unbiased split variable selection for random survival forests using maximally selected rank statistics. Statistics in Medicine, 36(8):1272–1284, 2017

  54. [62]

    Haarburger, P

    C. Haarburger, P. Weitz, O. Rippel, and D. Merhof. Image-based survival analysis for lung cancer patients using CNNs. arXiv:1808.09679v1, Aug 2018. 32

  55. [63]

    Widodo and B.-S

    A. Widodo and B.-S. Yang. Machine health prognostics using survival probability and support vector machine. Expert Systems with Applications , 38(7):8430–8437, 2011

  56. [64]

    Witten and R

    D.M. Witten and R. Tibshirani. Survival analysis with high-dimensional covariates. Statistical Methods in Medical Research, 19(1):29–51, 2010

  57. [65]

    Harrell, R

    F. Harrell, R. Califf, D. Pryor, K. Lee, and R. Rosati. Evaluating the yield of medical tests. Journal of the American Medical Association , 247:2543–2546, 1982

  58. [66]

    Uno, Tianxi Cai, M.J

    H. Uno, Tianxi Cai, M.J. Pencina, R.B. D’Agostino, and Lee-Jen Wei. On the c- statistics for evaluating overall adequacy of risk prediction procedures with censored survival data. Statistics in medicine , 30(10):1105–1117, 2011

  59. [67]

    LeCun, L

    Y. LeCun, L. Bottou, Y. Bengio, and P. Haffner. Gradient-based learning applied to document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998

  60. [68]

    Krizhevsky and G

    A. Krizhevsky and G. Hinton. Learning multiple layers of features from tiny images. Technical Report 1, Computer Science Department, University of Toronto, 2009

  61. [69]

    Poch´ e, L

    A. Poch´ e, L. Hervier, and M.-C. Bakkay. Natural example-based explainability: a survey. In World Conference on eXplainable Artificial Intelligence , pages 24–47. Springer, 2023

  62. [70]

    S.S. Rao, S. Mahajan, M. B¨ ohle, and B. Schiele. Discover-then-name: Task-agnostic concept bottlenecks via automated concept discovery. In 18th European Conference on Computer Vision , pages 444–461. Springer, 2024

  63. [71]

    Konstantinov and L.V

    A.V. Konstantinov and L.V. Utkin. An explicit concept-based approach for incor- porating expert rules into machine learning models. In Proceedings of the Eighth International Scientific Conference Intelligent Information Technologies for Indus- try (IITI’24), volume 1 of Lectu...

  64. [72]

    Konstantinov and L.V

    A.V. Konstantinov and L.V. Utkin. Incorporating expert rules into neural networks in the framework of concept-based learning. arXiv:2402.14726, Feb 2024. 33

  65. [4262]

    IEEE Computer Society, 2022

Pith tools

Reviewed August 8, 2026 · model on record in the stance chip above.