REVIEW 3 major objections 6 minor 58 references
Value bounds and Convergence Analysis for Averages of LRP attributions
T0 review · 3 major / 6 minor · reviewed 2026-08-04 · deepseek-v4-flash
Pith's one-line read Averaging LRP attributions converges with constants that ignore network weight size.
desk verdict Weight-independent convergence bound for LRP-beta is a new result worth engaging with, but the abstract overclaims, Theorem 3 is wrong, and Lemma 7 relies on an unstated denominator assumption that likely fails for ReLU networks. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The 'relevance-conserving' transition matrix M(g) for a layer collects the LRP attribution of each output neuron over its inputs; conservation means every column sums to 1, a generalization of stochasticity to non-square matrices that may contain negative entries. Lemma 7 propagates signed bounds on the attribution sums from layer to layer using only these column-sum identities and the separate normalization of positive and negative contributions in the β-rule, producing the weight-independent range bound (31). The singular-value analysis in Theorems 3 and 4 provides an earlier, looser bound and highlights the contrast with Jacobian-based gradient norms.
What would settle it
Construct or find a network with a dead ReLU unit (all pre-activations ≤ 0), run LRP-β, and check whether the attribution column sums still equal 1 and whether any attribution component exceeds the claimed range 2^{n-1}(1+2β)(1+β)^{n-1}. More directly, simulate a small random network where every neuron has nonzero positive and negative denominator sums and verify numerically that the range bound holds; a single counterexample would disprove the lemma.
Extended reading notes
Core claim
The central claim is that LRP-type attribution maps can be represented as products of modified-gradient transition matrices, and for the relevance-conserving LRP-β rule the value range of every attribution component after backpropagating through t layers is bounded by 2^{t-1}(1+β)^t (positive part) and 2^{t-1}β(1+β)^{t-1} (negative part)—a bound that depends only on depth and the parameter β, not on weight magnitudes. Feeding this range into a standard concentration inequality for sums of bounded variables gives an O(1/√m) convergence rate for averages of LRP-β attributions whose multiplicative constant is free of weight norms, unlike the gradient bound which scales as 2L^{n-1}∏‖W_l‖_2. The
Load-bearing premise
The proof requires every column of each LRP-β transition matrix to sum exactly to 1, which needs both the positive and negative denominator sums to be nonzero at every neuron; for ReLU networks with dead or all-negative pre-activations the β-rule is undefined and the weight-independent bound can fail.
Editorial extensions
If this is right
- Smoothing LRP-β attributions—via SmoothLRP or test-time augmentation—needs no extra samples to compensate for growing weight magnitudes, because the range bound in the concentration inequality does not involve weight norms.
- The O(1/√m) rate matches gradient-based SmoothGrad, but the constant is fundamentally smaller for LRP-β, explaining prior empirical findings that LRP explanations are insensitive to top-down weight randomization.
- For LRP-γ, convergence becomes weight-decoupled only when γ is chosen large enough to satisfy a per-layer condition on the relative scales of positive and negative activations, giving a practical guideline for setting γ.
- The number of augmentations needed to keep a fixed deviation with probability 1−δ scales with the squared value range, so LRP-β's weight-independent range yields concrete computational savings in deep networks with large weights.
- The bounds are stated for individual attribution components, so the same convergence guarantee applies component-wise to full attribution maps.
Reading between the lines
- The component-wise bound suggests that LRP-β attribution values are effectively 'clipped' in a way that prevents the noise amplification seen in gradients; one could directly test this by comparing attribution variances across layer depths in a single network.
- The transition-matrix formalism could be applied to other conservation-style attribution rules, such as DeepLIFT's rescale rule, to derive analogous weight-independent convergence constants.
- For β=0 (LRP-0), the predicted per-component range lies in [0,1], implying an especially tight Hoeffding bound; experiments could compare the required sample sizes for β=0 versus β=1 in practice.
- The LRP-γ condition hints at a principled way to choose γ during inference to guarantee fast averaging, moving beyond faithfulness-based tuning of attribution parameters.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper analyzes LRP-β and LRP-γ attribution methods by representing them as products of modified gradient matrices. It derives singular-value bounds in §4 and component-wise range bounds in §5 (Lemmas 7 and 8). These bounds are combined with Hoeffding's inequality to obtain O(1/√m) convergence of averaged attribution maps, with constants independent of weight norms for LRP-β (Eq. (31)) and conditionally independent for LRP-γ. The theoretical results are complemented by an experimental comparison on ImageNet with pretrained networks under photometric and Gaussian augmentations.
Significance. If the range bounds are valid, the weight-independence result for LRP-β is a useful theoretical distinction from gradient-based and LRP-ε methods: it gives a concrete, weight-free sample-complexity estimate for SmoothLRP/test-time-averaged LRP attributions and provides a theoretical explanation for earlier observations about LRP's robustness to weight randomization. The derivations are self-contained, no parameters are fitted to the theory, and the appendix gives detailed proofs with the code in the supplement. The main risk is that the proof of Lemma 7 relies on every LRP-β denominator being nonzero, which is not guaranteed for the ReLU networks used in the experiments; this is load-bearing for Eq. (31).
major comments (3)
- [Theorem 3 / Eq. (17)] The proof uses Σ_b p_ab^+ = 1 and Σ_b p_ab^- = 1 for every neuron. These identities require both denominators in Eq. (7) to be nonzero. For ReLU networks, z_b ≥ 0, so a neuron whose incoming weight row satisfies w_ab ≤ 0 for all b has Σ_b (w_ab z_b)_+ = 0 for every input, making the positive LRP-β term 0/0. The paper states no fallback; if one adopts 0/0 := 0, the column sums are < 1 and the inductive steps in (85)-(86) fail. Consequently Eq. (31) is not established for the paper's own architectures, which may contain dead or all-negative-weight neurons. This is not a zero-measure event for such neurons. The authors should state a non-degeneracy assumption explicitly, or analyze a stable LRP variant (e.g., with an epsilon in the denominator) and prove the corresponding bounds.
- [Section 6.2 / Lemma 8] Theorem 3 is false as stated. For a column-stochastic matrix M, the computation (1/S) 1_S^T M M^T 1_S = R/S only gives a Rayleigh quotient, hence a lower bound σ_max ≥ √(R/S). It does not show that √(R/S) is a singular value, nor that 1_S/√S is a singular vector. Column stochasticity gives 1_S^T M = 1_R^T, not M 1_R ∝ 1_S. For example, M = [[0.8, 0.3], [0.2, 0.7]] is column-stochastic but M 1 = (1.1, 0.9), so 1 is not a singular vector. This theorem is not used in the main convergence argument, but it is a published mathematical claim and should be corrected to a lower bound or to a condition under which equality holds.
- [Section 5, Lemma 7] The experimental validation for LRP-γ is only partially covered by Lemma 8 because condition (29) is not verified for the networks and augmentations used; the paper acknowledges this in the text, but the tables present LRP-γ results without marking which cells are outside the theorem's scope. The central LRP-β claim is not affected, but the LRP-γ comparison should be explicitly labeled as exploratory in the main results, not only in the accompanying text.
minor comments (6)
- [Theorem 3] The typeset statement '√R√S' is ambiguous; it should be √(R/S) = √R / √S.
- [Lemma 7 / Eq. (28)] The notation P_{z_b ∈ Z_+} is confusing: it denotes a sum over all components b whose attribution is positive, but reads like a probability or a sum over a single component. Clarify with explicit Σ_{b: Y_+(b)} notation.
- [Definition 2] The sentence 'This property can be ensured for a non-zero attribution by normalization' is vague. Specify whether the authors propose renormalizing the LRP columns, adding an epsilon-rule, or restricting to architectures where Eq. (8) holds.
- [References] Reference [52] has a corrupted author field ('W. H. and'); it should cite Hoeffding (1963).
- [Tables 6.3-6.4] Several p-values are reported as 1.0 when the ratio is below 1; consider reporting exact values or 'n.s.' to avoid the appearance of a failed test with degenerate precision.
- [Section 6.1] The description of the experimental statistic says 'lower bound on the deviation' but the quantity in Eq. (34) is a norm of a difference of two independent averages; its expectation is not the same as the deviation from E[A(f,x)]. The text should be more explicit about why this is a lower-bound proxy, especially since the concentration theory applies to each component separately.
Circularity Check
No significant circularity: the main bounds are derived from the defining normalization of LRP-β; self-citations are motivational only.
full rationale
The paper's central claims—Lemma 7, Lemma 8, and equation (31)—are proved from the LRP-β/γ transition formulas themselves. Lemma 7's induction uses Σ_b p_ab^+ = 1 and Σ_b p_ab^- = 1, which are not fitted, imported, or predicted: they are the defining per-neuron normalizations in equations (7)–(8). Deriving consequences from the definition of the rule under analysis is not circularity; the paper does not claim to predict the weight-independent bound from data or from an external principle that already contains it. The self-citations (e.g., [8]) are used only to motivate why the result matters (empirically observed low sensitivity to top-down randomization) and to justify the ℓ2-normalization choice in experiments, not as load-bearing inputs to the proofs of Theorem 4 or Lemma 7. The paper also openly acknowledges that the LRP-γ condition (29) was not verified experimentally and that ℓ2-normalized results are not covered by Lemmata 7/8; these are honest limitations, not circular maneuvers. The unconditional validity of (31) does rest on a nonzero-denominator assumption—both sums in equation (7) being nonzero at every neuron—but this is a correctness/domain-of-definition caveat, not a circularity, and so is outside the scope of this pass. Overall, the derivation chain is self-contained: the bounds follow from the conservation properties embedded in the LRP rules, and the comparison to gradient bounds is made by an independent Hoeffding argument.
Assumptions & free parameters
free parameters (3)
- beta (LRP-beta rule parameter) =
beta >= 0; experiments use beta = 0 and beta = 1
- gamma (LRP-gamma rule parameter) =
gamma > 1; experiments use gamma = 100 and gamma = 1000
- noise variance for SmoothGrad experiments =
sigma^2 = 1
assumptions (7)
- domain assumption LRP backward pass treats activation functions as identity maps even for non-piecewise-linear activations
- domain assumption Batch normalization layers are fused into adjacent affine layers
- domain assumption Each LRP-beta column sum is exactly 1, requiring nonzero positive and negative denominators in eq. (7)
- domain assumption For LRP-gamma, condition (29) holds: gamma^{-1/2} * sum_{b:w_ab z_b<0} -w_ab z_b < sum_{b:w_ab z_b>0} w_ab z_b
- standard math Hoeffding's inequality applies to the bounded attribution components
- domain assumption Activations are L-Lipschitz for the gradient-norm comparison in eq. (19)
- domain assumption Output initialization weights q_u are nonnegative and sum to 1
Cite this review
Pith. "Pith review of Value bounds and Convergence Analysis for Averages of LRP attributions." pith.science (2026). https://pith.science/paper/PUYOVD6R
@misc{pith2026250908963,
author = {Pith},
title = {Pith review of: Value bounds and Convergence Analysis for Averages of LRP attributions},
year = {2026},
howpublished = {\url{https://pith.science/paper/PUYOVD6R}},
note = {Machine review of arXiv:2509.08963}
}
read the original abstract
We analyze numerical properties of Layer-wise relevance propagation (LRP)-type attribution methods by representing them as a product of modified gradient matrices. This representation creates an analogy to matrix multiplications of Jacobi-matrices which arise from the chain rule of differentiation. In order to shed light on the distribution of attribution values, we derive upper bounds for singular values. Furthermore we derive component-wise bounds for attribution map values. As a main result, we apply these component-wise bounds to obtain multiplicative constants. These constants govern the convergence of empirical means of attributions to expectations of attribution maps. This finding has important implications for scenarios where multiple non-geometric data augmentations are applied to individual test samples, as well as for Smoothgrad-type attribution methods. In particular, our analysis reveals that the constants for LRP-beta remain independent of weight norms, a significant distinction from both gradient-based methods and LRP-epsilon.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
Deep inside convolutional networks: Visualising image classification models and saliency maps,
K. Simonyan, A. Vedaldi, and A. Zisserman, “Deep inside convolutional networks: Visualising image classification models and saliency maps,” in2nd International Conference on Learning Representations, ICLR 2014, Banff, AB, Canada, April 14-16, 2014, Workshop Track Proceedings(Y. Bengio and Y. LeCun, eds.), 2014
2014
-
[2]
Striving for simplicity: The all convolutional net,
J. Springenberg, A. Dosovitskiy, T. Brox, and M. Riedmiller, “Striving for simplicity: The all convolutional net,” inICLR (workshop track), 2015
2015
-
[3]
Grad-cam: Visual explanations from deep networks via gradient-based localization,
R. R. Selvaraju, M. Cogswell, A. Das, R. Vedantam, D. Parikh, and D. Batra, “Grad-cam: Visual explanations from deep networks via gradient-based localization,” in2017 IEEE International Conference on Computer Vision (ICCV), pp. 618–626, 2017
2017
-
[4]
Learning important features through propagating activation differences,
A. Shrikumar, P. Greenside, and A. Kundaje, “Learning important features through propagating activation differences,” inProceedings of the 34th International Conference on Machine Learning, ICML 2017, Sydney, NSW, Australia, 6-11 August 2017(D. Precup and Y. W. Teh, eds.), vol. 70 ofProceedings of Machine Learning Research, pp. 3145–3153, PMLR, 2017
2017
-
[5]
The shattered gradients problem: If resnets are the answer, then what is the question?,
D. Balduzzi, M. Frean, L. Leary, J. P. Lewis, K. W. Ma, and B. McWilliams, “The shattered gradients problem: If resnets are the answer, then what is the question?,” inInternational Conference on Machine Learning (ICML), vol. 70 ofPMLR, pp. 342–350, PMLR, 2017
2017
-
[6]
On pixel-wise explanations for non-linear classifier decisions by layer-wise relevance propagation,
S. Bach, A. Binder, G. Montavon, F. Klauschen, K. R. Müller, and W. Samek, “On pixel-wise explanations for non-linear classifier decisions by layer-wise relevance propagation,”PLoS ONE, vol. 10, no. 7, pp. 1–46, 2015
2015
-
[7]
Unmasking clever hans predictors and assessing what machines really learn,
S. Lapuschkin, S. Wäldchen, A. Binder, G. Montavon, W. Samek, and K.-R. Müller, “Unmasking clever hans predictors and assessing what machines really learn,”Nature Communications, vol. 10, p. 1096, Mar 2019
2019
-
[8]
Shortcomings of top-down randomization-based sanity checks for evaluations of deep neural network explanations,
A. Binder, L. Weber, S. Lapuschkin, G. Montavon, K.-R. Müller, and W. Samek, “Shortcomings of top-down randomization-based sanity checks for evaluations of deep neural network explanations,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp. 16143–16152, June 2023
2023
Show all 58 references
-
[9]
AttnLRP: Attention-aware layer-wise relevance propagation for transformers,
R. Achtibat, S. M. V. Hatefi, M. Dreyer, A. Jain, T. Wiegand, S. Lapuschkin, and W. Samek, “AttnLRP: Attention-aware layer-wise relevance propagation for transformers,” inProceedings of the 41st International Conference on Machine Learning(R. Salakhutdinov, Z. Kolter, K. Helle...
2024
-
[10]
Mambalrp: Explaining selective state space sequence models,
F. Rezaei Jafari, G. Montavon, K.-R. Müller, and O. Eberle, “Mambalrp: Explaining selective state space sequence models,” inAdvances in Neural Information Processing Systems(A. Globerson, L. Mackey, D. Belgrave, A. Fan, U. Paquet, J. Tomczak, and C. Zhang, eds.), vol. 37, pp. ...
2024
-
[11]
Sanity checks for saliency maps,
J. Adebayo, J. Gilmer, M. Muelly, I. J. Goodfellow, M. Hardt, and B. Kim, “Sanity checks for saliency maps,” inAdvances in Neural Information Processing Systems 31, pp. 9525–9536, 2018
2018
-
[12]
Towards better understanding of gradient-based attribution methods for deep neural networks,
M. Ancona, E. Ceolini, C. Öztireli, and M. Gross, “Towards better understanding of gradient-based attribution methods for deep neural networks,” in6th International Conference on Learning Represen- tations, ICLR 2018, Vancouver, BC, Canada, April 30 - May 3, 2018, Conference T...
2018
-
[13]
Axiomatic attribution for deep networks,
M. Sundararajan, A. Taly, and Q. Yan, “Axiomatic attribution for deep networks,” inProceedings of the 34th International Conference on Machine Learning, ICML 2017, Sydney, NSW, Australia, 6-11 August 2017(D. Precup and Y. W. Teh, eds.), vol. 70 ofProceedings of Machine Learnin...
2017
-
[14]
Smoothgrad: removing noise by adding noise,
D. Smilkov, N. Thorat, B. Kim, F. B. Viégas, and M. Wattenberg, “Smoothgrad: removing noise by adding noise,”arXiv preprint arXiv:1706.03825, 2017. 15
2017 arXiv
-
[15]
Smoothlrp: Smoothing LRP by averaging over stochastic input variations,
A. P. Raulf, S. Däubener, B. Hack, A. Mosig, and A. Fischer, “Smoothlrp: Smoothing LRP by averaging over stochastic input variations,” in29th European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning, ESANN 2021, Online event (Bruges, Be...
2021
-
[16]
Explaining prediction models and individual predictions with feature contributions,
E. Štrumbelj and I. Kononenko, “Explaining prediction models and individual predictions with feature contributions,”Knowledge and Information Systems, vol. 41, pp. 647–665, Dec 2014
2014
-
[17]
A unified approach to interpreting model predictions,
S. M. Lundberg and S. Lee, “A unified approach to interpreting model predictions,” inAdvances in Neural Information Processing Systems 30: Annual Conference on Neural Information Processing Systems 2017, December 4-9, 2017, Long Beach, CA, USA(I. Guyon, U. von Luxburg, S. Beng...
2017
-
[18]
RISE: randomized input sampling for explanation of black-box models,
V. Petsiuk, A. Das, and K. Saenko, “RISE: randomized input sampling for explanation of black-box models,” inBritish Machine Vision Conference 2018, BMVC 2018, Newcastle, UK, September 3-6, 2018, p. 151, BMVA Press, 2018
2018
-
[19]
Interpretable explanations of black boxes by meaningful perturbation,
R. C. Fong and A. Vedaldi, “Interpretable explanations of black boxes by meaningful perturbation,” in IEEE International Conference on Computer Vision, ICCV 2017, Venice, Italy, October 22-29, 2017, pp. 3449–3457, IEEE Computer Society, 2017
2017
-
[20]
Explaining image classifiers by removing input features using generative models,
C. Agarwal and A. Nguyen, “Explaining image classifiers by removing input features using generative models,” inComputer Vision - ACCV 2020 - 15th Asian Conference on Computer Vision, Kyoto, Japan, November 30 - December 4, 2020, Revised Selected Papers, Part VI(H. Ishikawa, C....
2020
-
[21]
Towards robust interpretability with self-explaining neural networks,
D. Alvarez-Melis and T. S. Jaakkola, “Towards robust interpretability with self-explaining neural networks,” inAdvances in Neural Information Processing Systems 31: Annual Conference on Neural Information Processing Systems 2018, NeurIPS 2018, December 3-8, 2018, Montréal, Can...
2018
-
[22]
Evaluating the visualization of what a deep neural network has learned,
W. Samek, A. Binder, G. Montavon, S. Lapuschkin, and K. Müller, “Evaluating the visualization of what a deep neural network has learned,”IEEE Trans. Neural Networks Learn. Syst., vol. 28, no. 11, pp. 2660–2673, 2017
2017
-
[23]
On the (in)fidelity and sensitivity of explanations,
C. Yeh, C. Hsieh, A. S. Suggala, D. I. Inouye, and P. Ravikumar, “On the (in)fidelity and sensitivity of explanations,” inAdvances in Neural Information Processing Systems 32: Annual Conference on Neural Information Processing Systems 2019, NeurIPS 2019, December 8-14, 2019, V...
2019
-
[24]
Evaluating and aggregating feature-based model explanations,
U. Bhatt, A. Weller, and J. M. F. Moura, “Evaluating and aggregating feature-based model explanations,” inProceedings of the Twenty-Ninth International Joint Conference on Artificial Intelligence, IJCAI 2020 (C. Bessiere, ed.), pp. 3016–3022, ijcai.org, 2020
2020
-
[25]
IROF: a low resource evaluation metric for explanation methods,
L. Rieger and L. K. Hansen, “IROF: a low resource evaluation metric for explanation methods,”CoRR, vol. abs/2003.08747, 2020
2003 arXiv
-
[26]
On quantitative aspects of model interpretability,
A. Nguyen and M. R. Martínez, “On quantitative aspects of model interpretability,”CoRR, vol. abs/2007.07584, 2020
2007 arXiv
-
[27]
Framework for evaluating faithfulness of local explanations,
S. Dasgupta, N. Frost, and M. Moshkovitz, “Framework for evaluating faithfulness of local explanations,” in International Conference on Machine Learning, ICML 2022, 17-23 July 2022, Baltimore, Maryland, USA (K. Chaudhuri, S. Jegelka, L. Song, C. Szepesvári, G. Niu, and S. Saba...
2022
-
[28]
Rethinking stability for attribution-based explanations,
C. Agarwal, N. Johnson, M. Pawelczyk, S. Krishna, E. Saxena, M. Zitnik, and H. Lakkaraju, “Rethinking stability for attribution-based explanations,”CoRR, vol. abs/2203.06877, 2022
2022 arXiv
-
[29]
A consistent and efficient evaluation strategy for attribution methods,
Y. Rong, T. Leemann, V. Borisov, G. Kasneci, and E. Kasneci, “A consistent and efficient evaluation strategy for attribution methods,” inInternational Conference on Machine Learning, ICML 2022, 17-23 July 2022, Baltimore, Maryland, USA(K. Chaudhuri, S. Jegelka, L. Song, C. Sze...
2022
-
[30]
Sanity checks revisited: An exploration to repair the model parameter randomisation test,
A. Hedström, L. Weber, S. Lapuschkin, and M. M. Höhne, “Sanity checks revisited: An exploration to repair the model parameter randomisation test,”CoRR, vol. abs/2401.06465, 2024
2024 arXiv
-
[31]
Funnybirds: A synthetic vision dataset for a part-based analysis of explainable AI methods,
R. Hesse, S. Schaub-Meyer, and S. Roth, “Funnybirds: A synthetic vision dataset for a part-based analysis of explainable AI methods,” inIEEE/CVF International Conference on Computer Vision, ICCV 2023, Paris, France, October 1-6, 2023, pp. 3958–3968, IEEE, 2023
2023
-
[32]
Benchmarking the attribution quality of vision models,
R. Hesse, S. Schaub-Meyer, and S. Roth, “Benchmarking the attribution quality of vision models,” in Advances in Neural Information Processing Systems(A. Globerson, L. Mackey, D. Belgrave, A. Fan, U. Paquet, J. Tomczak, and C. Zhang, eds.), vol. 37, pp. 97928–97947, Curran Asso...
2024
-
[33]
Which explanation should i choose? a function approximation perspective to characterizing post hoc explanations,
T. Han, S. Srinivas, and H. Lakkaraju, “Which explanation should i choose? a function approximation perspective to characterizing post hoc explanations,” inAdvances in Neural Information Processing Systems (S. Koyejo, S. Mohamed, A. Agarwal, D. Belgrave, K. Cho, and A. Oh, eds...
2022
-
[34]
Initialization noise in image gradients and saliency maps,
A.-C. Woerl, J. Disselhoff, and M. Wand, “Initialization noise in image gradients and saliency maps,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp. 1766–1775, June 2023
2023
-
[35]
Towards the unification and robustness of perturbation and gradient based explanations,
S. Agarwal, S. Jabbari, C. Agarwal, S. Upadhyay, S. Wu, and H. Lakkaraju, “Towards the unification and robustness of perturbation and gradient based explanations,” inProceedings of the 38th International Conference on Machine Learning(M. Meila and T. Zhang, eds.), vol. 139 ofP...
2021
-
[36]
Rethinking the principle of gradient smooth methods in model explanation,
L. Zhou, C. Ma, Z. Wang, and X. Shi, “Rethinking the principle of gradient smooth methods in model explanation,” 2024
2024
-
[37]
Probabilistic lipschitzness and the stable rank for comparing explanation models,
L. Simpson, K. Millar, A. Cheng, C.-C. Lim, and H. G. Chew, “Probabilistic lipschitzness and the stable rank for comparing explanation models,” 2024
2024
-
[38]
Test-time image-to-image translation ensembling improves out-of-distribution generalization in histopathology,
M. Scalbert, M. Vakalopoulou, and F. Couzinié-Devy, “Test-time image-to-image translation ensembling improves out-of-distribution generalization in histopathology,” 2022
2022
-
[39]
Ai-based anomaly detection for clinical-grade histopathological diagnostics,
J. Dippel, N. Prenißl, J. Hense, P. Liznerski, T. Winterhoff, S. Schallenberg, M. Kloft, O. Buchstab, D. Horst, M. Alber, L. Ruff, K.-R. Müller, and F. Klauschen, “Ai-based anomaly detection for clinical-grade histopathological diagnostics,” 2024
2024
-
[40]
Improved domain generalization for cell detection in histopathology images via test-time stain augmentation,
C. Xu, Z. Wen, Z. Liu, and C. Ye, “Improved domain generalization for cell detection in histopathology images via test-time stain augmentation,” inMedical Image Computing and Computer Assisted Intervention – MICCAI 2022(L. Wang, Q. Dou, P. T. Fletcher, S. Speidel, and S. Li, e...
2022
-
[41]
Fine-tuned densenet-169 for breast cancer metastasis prediction using fastai and 1-cycle policy,
A. Vulli, P. N. Srinivasu, M. S. K. Sashank, J. Shafi, J. Choi, and M. F. Ijaz, “Fine-tuned densenet-169 for breast cancer metastasis prediction using fastai and 1-cycle policy,”Sensors, vol. 22, no. 8, 2022
2022
-
[42]
Taal: Test-time augmentation for active learning in medical image segmentation,
M. Gaillochet, C. Desrosiers, and H. Lombaert, “Taal: Test-time augmentation for active learning in medical image segmentation,” inMICCAI Workshop on Data Augmentation, Labelling, and Imperfections, pp. 43–53, Springer, 2022
2022
-
[43]
Improving generalization capability of deep learning-based nuclei instance segmentation by non-deterministic train time and deterministic test time stain normalization,
A. Mahbod, G. Dorffner, I. Ellinger, R. Woitek, and S. Hatamikia, “Improving generalization capability of deep learning-based nuclei instance segmentation by non-deterministic train time and deterministic test time stain normalization,”Computational and Structural Biotechnolog...
2024
-
[44]
Multi-modality microscopy image style augmentation for nuclei segmentation,
Y. Liu, S. J. Wagner, and T. Peng, “Multi-modality microscopy image style augmentation for nuclei segmentation,”Journal of Imaging, vol. 8, no. 3, 2022
2022
-
[45]
Stain-robust mitotic figure detection for the mitosis domain generalization challenge,
M. Jahanifar, A. Shephard, N. Z. Tajeddin, R. M. S. Bashir, M. Bilal, S. A. Khurram, F. Minhas, and N. Rajpoot, “Stain-robust mitotic figure detection for the mitosis domain generalization challenge,” 2021
2021
-
[46]
Test-time generative augmentation for medical image segmentation,
X. Ma, Y. Tao, Y. Zhang, Z. Ji, Y. Zhang, and Q. Chen, “Test-time generative augmentation for medical image segmentation,” 2024. 17
2024
-
[47]
Betteraggregationintest-timeaugmentation,
D.Shanmugam, D.Blalock, G.Balakrishnan, andJ.Guttag, “Betteraggregationintest-timeaugmentation,” 2021
2021
-
[48]
Test-time data augmentation for estimation of heteroscedastic aleatoric uncertainty in deep neural networks,
M. S. Ayhan and P. Berens, “Test-time data augmentation for estimation of heteroscedastic aleatoric uncertainty in deep neural networks,” inMedical Imaging with Deep Learning, 2018
2018
-
[49]
Layer-wise relevance propagation: an overview,
G. Montavon, A. Binder, S. Lapuschkin, W. Samek, and K.-R. Müller, “Layer-wise relevance propagation: an overview,” inExplainable AI: interpreting, explaining and visualizing deep learning, pp. 193–209, Springer, 2019
2019
-
[50]
Das asymptotische Verteilungsgesetz der Eigenwerte linearer partieller Differentialgleichungen (mit einer Anwendung auf die Theorie der Hohlraumstrahlung),
H. Weyl, “Das asymptotische Verteilungsgesetz der Eigenwerte linearer partieller Differentialgleichungen (mit einer Anwendung auf die Theorie der Hohlraumstrahlung),”Mathematische Annalen, vol. 71, pp. 441– 479, Dec 1912
1912
-
[51]
R. A. Horn and C. R. Johnson,Matrix Analysis. Cambridge University Press, 1990
1990
-
[52]
Probability inequalities for sums of bounded random variables,
W. H. and, “Probability inequalities for sums of bounded random variables,”Journal of the American Statistical Association, vol. 58, no. 301, pp. 13–30, 1963
1963
-
[53]
Deep residual learning for image recognition,
K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” inIEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 770–778, 2016
2016
-
[54]
EfficientNetV2: Smaller models and faster training,
M. Tan and Q. V. Le, “EfficientNetV2: Smaller models and faster training,” inProceedings of the 38th International Conference on Machine Learning, ICML 2021, 18-24 July 2021, Virtual Event(M. Meila and T. Zhang, eds.), vol. 139 ofProceedings of Machine Learning Research, pp. 1...
2021
-
[55]
Pytorch: An imperative style, high-performance deep learning library,
A. Paszke, S. Gross, F. Massa, A. Lerer, J. Bradbury, G. Chanan, T. Killeen, Z. M. Lin, N. Gimelshein, L. Antiga, A. Desmaison, A. Köpf, E. Yang, Z. DeVito, M. Raison, A. Tejani, S. Chilamkurthy, B. Steiner, L. Fang, J. J. Bai, and S. Chintala, “Pytorch: An imperative style, h...
2019
-
[56]
Swin transformer V2: scaling up capacity and resolution,
Z. Liu, H. Hu, Y. Lin, Z. Yao, Z. Xie, Y. Wei, J. Ning, Y. Cao, Z. Zhang, L. Dong, F. Wei, and B. Guo, “Swin transformer V2: scaling up capacity and resolution,” inIEEE/CVF Conference on Computer Vision and Pattern Recognition, CVPR 2022, New Orleans, LA, USA, June 18-24, 2022...
2022
-
[57]
Imagenet: A large-scale hierarchical image database,
J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei, “Imagenet: A large-scale hierarchical image database,” inComputer Vision and Pattern Recognition, 2009. CVPR 2009. IEEE Conference on, pp. 248–255, IEEE, 2009. A Technical Appendices and Supplementary Material A.1 P...
2009
-
[58]
We can assume without loss of generality after ordering the terms according to the sign ofwks ·z s that M[:, k] = ((1 +β)p1,+,
This norm is invariant to reordering the components of the vectorM[:, k]. We can assume without loss of generality after ordering the terms according to the sign ofwks ·z s that M[:, k] = ((1 +β)p1,+, . . . ,(1 +β)pt,+,−βp t+1,−, . . . ,−βpS,−)(45) where Pt i=1 pi,+ = 1and PS ...
Reviewed August 4, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.