Pith. sign in

REVIEW 4 major objections 5 minor 41 references

Enhancing Trustworthiness of Graph Neural Networks with Rank-Based Conformal Training

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

Pith's one-line read Rank-based conformal training enables GNN prediction sets to hit any predefined target coverage while reducing average set size by up to 11.28% on eight node-classification benchmarks.

desk verdict Rank-based conformal training for GNNs is a plausible empirical recipe, but the paper does not establish the advertised coverage guarantee and its evaluation may leak test labels. read the letter →

arxiv 2501.02767 v1 pith:2PQ3P2UJ submitted 2025-01-06 cs.LG cs.AI

classification cs.LGcs.AI
keywords graphneuralnetworksconformalpredictionnodeclassificationuncertaintyquantificationrank-basedconformityscoretrainingsetefficiencymarginalcoverage
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

Graph neural networks used for node classification rarely come with guarantees that the set of plausible labels is right-sized. The paper proposes RCP-GNN, which folds conformal prediction into GNN training: a rank-based conformity score determines how many top classes to include, and a differentiable version of it is used as a training loss so the prediction sets themselves are optimized. The paper reports that on eight benchmark graphs the method reaches any pre-specified marginal coverage, usually closer to the target than competing calibration methods, while producing smaller average prediction sets, up to 11.28% smaller than the best baseline on Cora. If the guarantees hold, GNNs can be deployed in high-stakes settings with uncertainty sets that are both statistically valid and practically small.

What carries the argument

The load-bearing object is the rank-based conformity score of Eq. 13: $V(x_i,y_i) = [\text{rank of } \hat{\mu}_{y_i}(x_i) \text{ among class probabilities}] - 1 + \frac{1}{n}[\text{rank of } \hat{\mu}_{y_i}(x_i) \text{ among the calibration values for that class}]$. The first term decides how many top classes enter the prediction set; the second breaks ties and lets the calibration quantile set the threshold. For training, this hard ranking is replaced by a differentiable approximation $\tilde{V}(x_i,k) = \sum_j \operatorname{sigmoid}((\tilde{\mu}_j(x_i) - \tilde{\mu}_k(x_i))/\tau)$, and the quantile computation is smoothed using differentiable sorting; the resulting conformity loss $L_{\text{cp}}$ is minimized together with the cross-entropy loss on a topology-aware correction model. This mechanism is what lets prediction sets be adjusted during training rather than fixed after it.

What would settle it

Take one benchmark graph, train RCP-GNN using the paper's 50/50 test split for conformal training, then run the final rank-based conformal prediction on a completely separate calibration split that was never used in any training loss or threshold calculation, across many random splits at $\alpha = 0.1$; if average coverage falls below 0.9 by more than sampling error, the validity claim collapses.

Watch

Extended reading notes

Core claim

The central discovery is that the rank of the true class's predicted probability, relative to all class probabilities at a node, can serve as a conformity score for GNNs and can be made differentiable so that conformal prediction is no longer a post-training afterthought. The paper defines $V(x_i,y_i)$ as the rank of the true class's probability among all classes plus a small tie-breaking term based on the rank of that probability within the calibration set; thresholds derived from these scores yield top-$k$ prediction sets with nominal $1-\alpha$ coverage. RCP-GNN then trains a correction GNN with a sigmoid-smoothed version of this ranking as a conformity loss, jointly with the prediction loss, so the learned probabilities are shaped to make prediction sets compact. On Cora, DBLP, CiteSeer, PubMed, Amazon-Computers, Amazon-Photo, Coauthor-CS, and Coauthor-Physics, the trained model reaches target coverage on all datasets and consistently reduces inefficiency, with up to 11.28% smaller prediction sets than the best baseline.

Load-bearing premise

The guarantee only holds if the calibration nodes used for the final threshold are interchangeable with the test nodes and were not touched while the correction model learned to shrink prediction sets; the paper does not prove this separation.

Editorial extensions

If this is right

  • Any predefined target marginal coverage, not just $\alpha = 0.05$ or $0.1$, should be reachable by the same training and calibration procedure, since the rank score and quantile adapt to $\alpha$.
  • Deploying the trained correction model with standard rank-based conformal prediction at test time gives prediction sets that are valid and smaller on average than post-hoc calibration baselines across eight graphs.
  • Topology-aware correction during conformal training is responsible for the efficiency gain: without the conformity loss, prediction sets are larger.
  • The rank-based score is performance-critical: replacing it with threshold or adaptive conformity scores within the same training scheme degrades efficiency or coverage.
  • Because the differentiable rank score is smooth in model parameters, conformal training scales to standard SGD mini-batching rather than requiring full retraining.

Reading between the lines

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

  • Editorial inference: if the rank score is as miscalibration-robust as claimed, a natural extension is to regression or link prediction, where the analogue of 'rank among class probabilities' would be rank of residuals; the paper lists link prediction as future work.
  • Editorial inference: the 50/50 split of test data into calibration and evaluation halves during conformal training suggests the final marginal coverage may depend on how the conformal-training calibration fold relates to the final conformal-prediction calibration set; an independent test would use a completely held-out calibration set untouched by training.
  • Editorial inference: because the method reduces prediction-set size most on Cora and least on DBLP, the gain likely depends on graph homophily or class balance; comparing datasets with controlled label noise could reveal where ranking helps.
  • Editorial inference: the smooth-sorting temperature and loss weight are dataset-tuned, so transferring to a new domain probably requires re-tuning; the reported insensitivity to temperature is only over the tested range.
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 RCP-GNN, a conformal prediction method for GNN node classification built on a rank-based conformity score. It introduces a differentiable surrogate for rank-based scores, a conformal training loss L_cp that is optimized jointly with the prediction loss on a correction GNN, and an empirical evaluation on eight graph datasets. The central claim is that RCP-GNN achieves any predefined target marginal coverage while producing smaller prediction sets than existing baselines.

Significance. If the validity and efficiency claims are established, this would be a useful contribution: the code is released, the experiments cover eight datasets, ablation studies isolate the main components, and the differentiable rank score is a natural idea. The paper also reports coverage standard deviations over repeated calibration/test splits. However, the paper currently does not provide a validity proof for the rank-based score, and the experimental protocol for splitting the test data during conformal training is ambiguous; these issues bear directly on the central coverage and inefficiency claims.

major comments (4)
  1. [RANK, Eq. (13)] The rank-based conformity score in Eq. (13) is asserted, not proved. The second term, (1/n) times the rank of the predicted probability for the true class among the calibration nodes, makes the score a function of the entire calibration set, so the calibration scores are not values of a fixed score function evaluated at each node. The paper does not provide the exchangeability or quantile argument that would yield the claimed 1-alpha marginal coverage. In addition, the prediction set in Eq. (12) is defined by a top-r*_alpha rule and a threshold mu*, while the text says this is equivalent to thresholding the Eq. (13) score by Q; the equivalence is not demonstrated. A formal theorem is needed, including tie handling and the finite-sample quantile correction.
  2. [Conformal Training (test-data split)] The protocol for splitting the test data is ambiguous and potentially leaks labels into evaluation. The text says Dte is split 50/50 into Dhat_calib and Dhat_te and that 'a fraction' of test data is withheld before splitting, but the size of that fraction and the membership of the final evaluation set are not specified. If L_cp in Eq. (18) is computed on Dhat_te labels and GNN_cor is trained on them, and if the same nodes subsequently appear in Tables 3 and 4, the reported coverage is not a valid out-of-sample measurement. Please specify the exact split, which nodes are used for training GNN_cor, which are used for the final calibration, and which are used for evaluation, and ensure the final calibration set is exchangeable with and independent of the trained model.
  3. [Table 4 and Implementation] Table 4 reports inefficiency point estimates without standard deviations, although Table 3 reports standard deviations for coverage; without error bars, the claimed reductions (up to 11.28%) cannot be distinguished from sampling noise. The hyperparameters lambda, tau, and kappa are chosen by random search, but the paper does not state the selection criterion or whether selection is performed on the test set. If test-set coverage or inefficiency is used for selection, the empirical coverage is partly a product of model selection. Please state the selection protocol and add error bars to the inefficiency results.
  4. [Abstract and Experiments] The abstract claims 'any pre-defined target marginal coverage', but the experiments evaluate only alpha = 0.05 in Table 3 and alpha in {0.1, 0.2, 0.3} in Figure 2. Unless a general proof is supplied, the claim should be restricted to the tested values or accompanied by evidence for a wider range of alpha.
minor comments (5)
  1. [Throughout] There are repeated typos: 'Temperate scaling' should be 'Temperature scaling', 'withhold' should be 'withheld', and 'converge' should be 'coverage' in several places.
  2. [Eq. (20)] The cross-entropy loss in Eq. (20) is written in a binary form with log(1 - mu), which is not appropriate for multi-class node classification; a standard softmax cross-entropy loss should be used.
  3. [Eqs. (16)-(17)] Equation (17) uses Vtilde(x_i, k) for arbitrary class k, but Eq. (16) defines Vtilde only for the true label y_i; the score should be defined for all candidate labels.
  4. [Table 5] The annotation 'Marked: Best' is not supported by the Cora row, where RCP-GNN has size 1.92 versus RCP-THR's 1.65; the criterion for 'best' should be clarified.
  5. [Eq. (23)] The differentiable APS score in Eq. (23) mixes a sigmoid term and the original mu~_k(x_i), but the derivation from Eq. (9) is not explained; please provide the approximation used.

Circularity Check

2 steps flagged · score 6.0 of 10

Coverage results are not established: the rank score is inherited from the authors' own prior work, and the conformal-training loss is minimized on test data that is then used for evaluation.

  1. self citation load bearing [RANK: Rank-based Conformal Prediction, Eq. 13]
    "Following our previous work (Luo and Zhou 2024), we advancing CP to GNNs through rank-based conformity scores, named RANK, to directly reduce the inefficiency. ... V (xi, yi) = [rank of \hat\mu_{y_i}(x_i) in{\hat\mu_1(x_i), · · ·, \hat\mu_Y (x_i)}] − 1 + 1/n [rank of \hat\mu_{y_i}(x_i) in{\hat\mu_{y_i}(x_1), · · ·, \hat\mu_{y_i}(x_n)}] (13) and the quantile Q ... is employed to construct the prediction set with 1 − α coverage."

    The paper's central claim—achieving any predefined target marginal coverage—rests on Eq. 13 being a valid conformal score with an exchangeability-based coverage guarantee. The paper does not prove this property; it only states 'Following our previous work (Luo and Zhou 2024)' and then uses the score as the foundation for the method. The 'novel rank-based conformity score' is thus a load-bearing premise imported from the authors' own prior work rather than independently derived or verified in this manuscript. If the prior work's proof is assumed, the guarantee is imported by citation, not derived here.

  2. fitted input called prediction [Conformal Training, Eq. 18; Experiment/Metrics Eqs. 21–22]
    "Following the split CP approach (Lei, Rinaldo, and Wasserman 2013), we randomly split the test data set Dte into folds with 50%/50% as \hat{D}_calib/\hat{D}_te for calibration and constructing prediction sets. Before splitting the test data, a fraction of test data is withhold for further standard rank-based conformal prediction stage. ... Then the conformity loss function is defined by: Lcp = 1/|\hat{D}_te| 1/|Y| \sum_{i\in \hat{D}_te} c_i (18)"

    The correction model GNN_cor is trained by minimizing Lcp over \hat{D}_te (Eq. 18), which uses the true labels of half of the test set. The reported Coverage and Inefficiency metrics are defined on Dte (Eqs. 21–22), and the paper does not state that the 'withheld fraction' replaces Dte for the final evaluation. As written, the evaluation set overlaps with the data used to fit the model, so the reported 'pre-defined target marginal coverage' and inefficiency numbers are partly in-sample fits rather than out-of-sample predictions. The size of the withheld fraction and the calibration set used for the final standard rank-based CP are unspecified, so the exchangeable, model-independent calibration set required for a genuine conformal guarantee is not established.

full rationale

The paper presents two load-bearing circular/self-supporting steps. First, the rank-based conformity score (Eq. 13) and its coverage property are the foundation of the claimed marginal-coverage guarantee, but they are imported from the authors' own prior work (Luo and Zhou 2024) without proof or external verification; the paper's 'novel' score is therefore a self-citation used as the load-bearing premise. Second, and more concretely, conformal training minimizes Lcp on \hat{D}_te, a 50% fold of the test set, while coverage and inefficiency are reported on Dte; if the reported Dte includes \hat{D}_te, the empirical 'prediction' is a fitted in-sample quantity. The paper never specifies the size of the 'withheld fraction' or the calibration set used for the final standard rank-based CP, so the exchangeability and model-independence needed for a real conformal guarantee are not established. These issues are partial circularity (the headline numbers may reduce to a fit on test data) rather than a definitional identity: a properly executed rank-based split conformal method with a disjoint calibration set would be a legitimate construction. The score of 6 reflects the partial, load-bearing nature of the self-citation plus the test-set training loss; it is not 8–10 because the paper does attempt external benchmarks and does not merely rename a known result.

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

The central method rests on an exchangeability assumption for graph data, a rank-based conformal score inherited from a self-cited prior work, and smooth approximations whose validity is only empirically checked. The three listed hyperparameters are tuned to make the method reach target coverage and reduce inefficiency.

free parameters (3)
  • Temperature tau = 0.01 to 10, median 1 selected
    Controls smooth approximation to hard ranks in Eq. 14 and directly affects the differentiable conformity scores and prediction set size.
  • Conformal loss weight lambda = 0.01 to 10
    Balances prediction loss and conformity loss in Eq. 19; the paper reports sensitivity to this choice.
  • Soft assignment margin kappa = 0 or 1
    Used in Eq. 17 to define the soft prediction-set assignment in the conformity loss.
assumptions (3)
  • domain assumption Calibration and test nodes are exchangeable in transductive node classification.
    Invoked in the Preliminaries after Eq. 3, following Huang et al. 2023; this is required for split conformal prediction to give marginal coverage.
  • domain assumption The rank-based conformity score of Eq. 13 is a valid conformal score.
    The paper states 'Following our previous work (Luo and Zhou 2024)' and does not provide a proof or independent validation of the score's coverage property.
  • domain assumption Smooth sorting and smooth quantile approximations preserve the conformal coverage guarantee.
    The differentiable versions in Eqs. 14-15 replace hard ranks and quantiles with sigmoid approximations; no analysis is given for how the approximation error affects coverage.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Enhancing Trustworthiness of Graph Neural Networks with Rank-Based Conformal Training." pith.science (2026). https://pith.science/paper/2PQ3P2UJ

@misc{pith2026250102767,
  author       = {Pith},
  title        = {Pith review of: Enhancing Trustworthiness of Graph Neural Networks with Rank-Based Conformal Training},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/2PQ3P2UJ}},
  note         = {Machine review of arXiv:2501.02767}
}
read the original abstract

Graph Neural Networks (GNNs) has been widely used in a variety of fields because of their great potential in representing graph-structured data. However, lacking of rigorous uncertainty estimations limits their application in high-stakes. Conformal Prediction (CP) can produce statistically guaranteed uncertainty estimates by using the classifier's probability estimates to obtain prediction sets, which contains the true class with a user-specified probability. In this paper, we propose a Rank-based CP during training framework to GNNs (RCP-GNN) for reliable uncertainty estimates to enhance the trustworthiness of GNNs in the node classification scenario. By exploiting rank information of the classifier's outcome, prediction sets with desired coverage rate can be efficiently constructed. The strategy of CP during training with differentiable rank-based conformity loss function is further explored to adapt prediction sets according to network topology information. In this way, the composition of prediction sets can be guided by the goal of jointly reducing inefficiency and probability estimation errors. Extensive experiments on several real-world datasets show that our model achieves any pre-defined target marginal coverage while significantly reducing the inefficiency compared with state-of-the-art methods.

Figures

Figures reproduced from arXiv: 2501.02767 by the authors.

Figure 1
Figure 1. The framework of RCP-GNN. (a) Model training stage. [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗
Figure 2
Figure 2. Results on different datasets. A lower curve means [PITH_FULL_IMAGE:figures/full_fig_p005_2.png] view at source ↗
Figure 3
Figure 3. The coverage and inefficiency results with (a) [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

41 extracted references · 30 canonical work pages

  1. [1]

    , " * write output.state after.block = add.period write newline

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...

  2. [2]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...

  3. [3]

    R.; Makarenkov, V.; and Nahavandi, S

    Abdar, M.; Pourpanah, F.; Hussain, S.; Rezazadegan, D.; Liu, L.; Ghavamzadeh, M.; Fieguth, P.; Cao, X.; Khosravi, A.; Acharya, U. R.; Makarenkov, V.; and Nahavandi, S. 2021. A review of uncertainty quantification in deep learning: Techniques, applications and challenges. Information Fusion, 76: 243--297

  4. [4]

    N.; Bates, S.; Jordan, M.; and Malik, J

    Angelopoulos, A. N.; Bates, S.; Jordan, M.; and Malik, J. 2021. Uncertainty Sets for Image Classifiers using Conformal Prediction. In International Conference on Learning Representations

  5. [5]

    F.; Candes, E

    Barber, R. F.; Candes, E. J.; Ramdas, A.; and Tibshirani, R. J. 2021. Predictive inference with the jackknife+. The Annals of Statistics, 49(1): 486--507

  6. [6]

    Bates, S.; Angelopoulos, A.; Lei, L.; Malik, J.; and Jordan, M. 2021. Distribution-free, risk-controlling prediction sets. Journal of the ACM (JACM), 68(6): 1--34

  7. [7]

    Bellotti, A. 2021. Optimized conformal classification using gradient descent approximation. arXiv:2105.11255

  8. [8]

    Blondel, M.; Teboul, O.; Berthet, Q.; and Djolonga, J. 2020. Fast Differentiable Sorting and Ranking. In Proceedings of the 37th International Conference on Machine Learning, volume 119, 950--959. PMLR

Show all 41 references
  1. [9]

    Chernozhukov, V.; Fern \'a ndez-Val, I.; and Galichon, A. 2007. Quantile and probability curves without crossing. Econometrica, 78: 1093--1125

  2. [10]

    Clarkson, J. 2023. Distribution Free Prediction Sets for Node Classification. In Proceedings of the 40th International Conference on Machine Learning, volume 202, 6268--6278. PMLR

  3. [11]

    Guo, C.; Pleiss, G.; Sun, Y.; and Weinberger, K. Q. 2017. On Calibration of Modern Neural Networks. In Proceedings of the 34th International Conference on Machine Learning, volume 70, 1321--1330. PMLR

  4. [12]

    Gupta, K.; Rahimi, A.; Ajanthan, T.; Mensink, T.; Sminchisescu, C.; and Hartley, R. 2021. Calibration of Neural Networks using Splines. In International Conference on Learning Representations

  5. [13]

    Guzm\' a n-rivera, A.; Batra, D.; and Kohli, P. 2012. Multiple Choice Learning: Learning to Produce Multiple Structured Outputs. In Advances in Neural Information Processing Systems, volume 25. Curran Associates, Inc

  6. [14]

    Zargarbashi, S.; Antonelli, S.; and Bojchevski, A

    H. Zargarbashi, S.; Antonelli, S.; and Bojchevski, A. 2023. Conformal Prediction Sets for Graph Neural Networks. In Proceedings of the 40th International Conference on Machine Learning, volume 202, 12292--12318. PMLR

  7. [15]

    H.-H.; Shen, Y.; Tomani, C.; and Cremers, D

    Hsu, H. H.-H.; Shen, Y.; Tomani, C.; and Cremers, D. 2022. What Makes Graph Neural Networks Miscalibrated? In Advances in Neural Information Processing Systems, volume 35, 13775--13786. Curran Associates, Inc

  8. [16]

    Huang, K.; Jin, Y.; Candes, E.; and Leskovec, J. 2023. Uncertainty Quantification over Graph with Conformalized Graph Neural Networks. In Advances in Neural Information Processing Systems, volume 36, 26699--26721. Curran Associates, Inc

  9. [17]

    Y.; and Gupta, M

    Jiang, H.; Kim, B.; Guan, M. Y.; and Gupta, M. 2018. To trust or not to trust a classifier. In Proceedings of the 32nd International Conference on Neural Information Processing Systems, NIPS'18, 5546–5557. Red Hook, NY, USA: Curran Associates Inc

  10. [18]

    Kull, M.; Perello Nieto, M.; K\" a ngsepp, M.; Silva Filho, T.; Song, H.; and Flach, P. 2019. Beyond temperature scaling: Obtaining well-calibrated multi-class probabilities with Dirichlet calibration. In Advances in Neural Information Processing Systems, volume 32. Curran Ass...

  11. [19]

    Lam, R.; Sanchez-Gonzalez, A.; Willson, M.; Wirnsberger, P.; Fortunato, M.; Alet, F.; Ravuri, S.; Ewalds, T.; Eaton-Rosen, Z.; Hu, W.; Merose, A.; Hoyer, S.; Holland, G.; Vinyals, O.; Stott, J.; Pritzel, A.; Mohamed, S.; and Battaglia, P. 2023. Learning skillful medium-range g...

  12. [20]

    Lei, J.; Rinaldo, A.; and Wasserman, L. A. 2013. A conformal prediction approach to explore functional data. Annals of Mathematics and Artificial Intelligence, 74: 29 -- 43

  13. [21]

    M.; Huang, K.; and Zitnik, M

    Li, M. M.; Huang, K.; and Zitnik, M. 2022. Graph representation learning in biomedicine and healthcare. Nature Biomedical Engineering, 6(12): 1353--1369

  14. [22]

    Lunde, R. 2023. On the Validity of Conformal Prediction for Network Data Under Non-Uniform Sampling. arXiv:2306.07252

  15. [23]

    Lunde, R.; Levina, E.; and Zhu, J. 2023. Conformal Prediction for Network-Assisted Regression. arXiv:2302.10095

  16. [24]

    Luo, R.; and Zhou, Z. 2024. Trustworthy Classification through Rank-Based Conformal Prediction Sets. arXiv:2407.04407

  17. [25]

    Marandon, A. 2024. Conformal link prediction for false discovery rate control. TEST, 1--22

  18. [26]

    Romano, Y.; Sesia, M.; and Candes, E. 2020. Classification with Valid and Adaptive Coverage. In Advances in Neural Information Processing Systems, volume 33, 3581--3591. Curran Associates, Inc

  19. [27]

    Sadinle, M.; Lei, J.; and Wasserman, L. 2019. Least ambiguous set-valued classifiers with bounded error levels. Journal of the American Statistical Association, 114(525): 223--234

  20. [28]

    Shchur, O.; Mumme, M.; Bojchevski, A.; and Günnemann, S. 2019. Pitfalls of Graph Neural Network Evaluation. arXiv:1811.05868

  21. [29]

    Slossberg, R.; Anschel, O.; Markovitz, A.; Litman, R.; Aberdam, A.; Tsiper, S.; Mazor, S.; Wu, J.; and Manmatha, R. 2022. On calibration of scene-text recognition models. In European Conference on Computer Vision, 263--279. Springer

  22. [30]

    u gner, D.; and G\

    Stadler, M.; Charpentier, B.; Geisler, S.; Z\" u gner, D.; and G\" u nnemann, S. 2021. Graph Posterior Network: Bayesian Predictive Uncertainty for Node Classification. In Advances in Neural Information Processing Systems, volume 34, 18033--18048. Curran Associates, Inc

  23. [31]

    D.; Cemgil, A

    Stutz, D.; Dvijotham, K. D.; Cemgil, A. T.; and Doucet, A. 2022. Learning Optimal Conformal Classifiers. In International Conference on Learning Representations

  24. [32]

    Vovk, V. 2015. Cross-conformal predictors. Annals of Mathematics and Artificial Intelligence, 74: 9--28

  25. [33]

    Vovk, V.; Gammerman, A.; and Shafer, G. 2005. Algorithmic learning in a random world. Springer

  26. [34]

    Wang, F.; Liu, Y.; Liu, K.; Wang, Y.; Medya, S.; and Yu, P. S. 2024. Uncertainty in Graph Neural Networks: A Survey. arXiv:2403.07185

  27. [35]

    Wang, L.; Ghosh, D.; Gonzalez Diaz, M.; Farahat, A.; Alam, M.; Gupta, C.; Chen, J.; and Marathe, M. 2020. Wisdom of the Ensemble: Improving Consistency of Deep Learning Models. In Advances in Neural Information Processing Systems, volume 33, 19750--19761. Curran Associates, Inc

  28. [36]

    Wang, X.; Liu, H.; Shi, C.; and Yang, C. 2021. Be Confident! Towards Trustworthy Graph Neural Networks via Confidence Calibration. In Advances in Neural Information Processing Systems, volume 34, 23768--23779. Curran Associates, Inc

  29. [37]

    Wijegunawardana, P.; Gera, R.; and Soundarajan, S. 2020. Node Classification with Bounded Error Rates. In Complex Networks XI: Proceedings of the 11th Conference on Complex Networks CompleNet 2020, 26--38. Springer

  30. [38]

    Wu, S.; Sun, F.; Zhang, W.; Xie, X.; and Cui, B. 2022. Graph neural networks in recommender systems: a survey. ACM Computing Surveys, 55(5): 1--37

  31. [39]

    Yang, Y.; and Kuchibhotla, A. K. 2024. Selection and Aggregation of Conformal Prediction Sets. Journal of the American Statistical Association, 1--13

  32. [40]

    Yang, Z.; Cohen, W.; and Salakhudinov, R. 2016. Revisiting Semi-Supervised Learning with Graph Embeddings. In Proceedings of The 33rd International Conference on Machine Learning, volume 48, 40--48. PMLR

  33. [41]

    Zhang, J.; Kailkhura, B.; and Han, T. Y.-J. 2020. Mix-n-Match : Ensemble and Compositional Methods for Uncertainty Calibration in Deep Learning. In Proceedings of the 37th International Conference on Machine Learning, volume 119, 11117--11128. PMLR

Pith tools

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