Pith. sign in

REVIEW 3 major objections 4 minor 41 references

Relative Layer-Wise Relevance Propagation: a more Robust Neural Networks eXplaination

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

Pith's one-line read The paper claims that a new relative layer-wise relevance propagation rule, R-LRP, explains dense, convolutional, and residual image classifiers without dividing by near-zero values or tuning hyperparameters, and that it outperforms…

desk verdict R-LRP is a simple, hyperparameter-free attribution rule that empirically looks strong, but the paper's central conservation-law claim is false: for a linear layer the relevance sum is y^2/N, not c*y, so the residual normalization rests on a broken premise. read the letter →

arxiv 2501.14322 v1 pith:PRTT37Y7 submitted 2025-01-24 cs.LG cs.AI

classification cs.LGcs.AI
keywords Layer-WiseRelevancePropagationeXplainableMachineLearninginterpretabilityneuralnetworkattributionsaliencymapsimageclassificationresidualnetworkshyperparameter-free
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

The paper proposes a new layer-wise relevance propagation rule, R-LRP, that assigns each input pixel a share of a chosen network output without ever dividing by the neuron pre-activations that make classic LRP0 unstable. The authors claim R-LRP needs no hyperparameters and, when the lowest-relevance inputs are masked out, it preserves classification accuracy better than LRP0, LRP-epsilon, LRP-gamma, and LRP-alpha-beta on MNIST, a cat-versus-dog benchmark, and ImageNet-scale data with VGG16, VGG19, and ResNet50. If the claim holds, explainability for deep image classifiers becomes simpler and more reliable because the same rule works across dense, convolutional, and residual architectures. The paper also argues that negative relevance values carry useful signal, so taking absolute values of the contributions improves object localization.

What carries the argument

The central object is the relative contribution formula $z_{i,j,k}^{(l)} = \frac{1}{M_j^{(l+1)}} w_{i,j}^{(l+1)} x_i^{(l)} z_{j,k}^{(l+1)}$, followed by a layer-wise averaging step $z_{i,k}^{(l)} = \frac{\mathrm{Card}(J)}{N^{(l+1)}} \sum_J z_{i,j,k}^{(l)}$. It replaces the ratio-based LRP rule (which divides by the pre-activation sum over inputs) with a multiplication-only recurrence, so near-zero denominators never appear. The factor $\mathrm{Card}(J)/N^{(l+1)}$ rescales the sum of contributions so that the conservation law is preserved up to a global multiplicative constant, and the same machinery is extended to convolutions (via transposed convolutions), pooling, and residual blocks with a normalization of skip-connection and residual-path contributions.

What would settle it

A controlled benchmark with known discriminative features (for example, a synthetic dataset where a specific image region determines the class) would settle the claim: if R-LRP's top-k pixels do not localize that region with higher precision than random selection or LRP0, the reported superiority of R-LRP would be an artifact of the masking protocol.

Watch

Extended reading notes

Core claim

R-LRP computes the contribution of neuron i in layer l to output k through a backward product of weights, activations, and already-computed upper-layer relevance, normalized by the number of inputs to each neuron and averaged over connected outputs, as in equations (6)–(7). Because no denominator is formed from the network's weighted sums, the rule does not blow up when a neuron's pre-activation is near zero. The authors state that the sum of all input contributions equals the selected output up to a single multiplicative factor, so the classical LRP conservation law holds in relative form. On their masked-image accuracy benchmarks, R-LRP outperforms the standard LRP variants at small keep-fractions, and it produces more object-focused maps in pointing-game and distance-to-mask tests.

Load-bearing premise

The evaluation assumes that a method is a better explanation if keeping only its highest-relevance inputs and zeroing the rest preserves classification accuracy.

Editorial extensions

If this is right

  • R-LRP can be dropped into existing dense, convolutional, and residual image classifiers without tuning epsilon, gamma, alpha, or beta, removing a common barrier to adopting LRP.
  • Explanations from R-LRP should remain stable in very deep networks because no stage of the backward pass divides by a quantity that can approach zero.
  • The masked-image accuracy protocol used in the paper, if it is accepted, provides a quantitative ranking of attribution methods that does not depend on a human looking at heatmaps.
  • Cross-network comparisons become feasible: the paper uses R-LRP to show that VGG16 and VGG19 rely on similar pixels while ResNet50 relies on different, more conceptual regions.
  • Absolute-value relevance can be reported as an additional map that highlights negative contributors, which the paper shows improves object localization.

Reading between the lines

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

  • The top-k masking protocol may reward concentrated maps even when they are not faithful to the network's actual decision; a fairer test would compare against a random pixel baseline and use multiple masking strategies.
  • Because R-LRP's conservation law holds only up to a global factor, the raw relevance values are not directly comparable across different output classes; a calibration step would be needed for cross-class comparisons.
  • The normalization step for residual blocks is heuristic, and its validity for very deep networks with many branches could be tested on architectures that are even deeper than ResNet50.
  • A natural and testable extension is applying R-LRP to transformer-based architectures, which the authors explicitly list as future work; whether the relative-relevance rule survives attention layers is an open empirical question.
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

3 major / 4 minor

Summary. The paper proposes a new attribution method, Relative Layer-Wise Relevance Propagation (R-LRP), defined by Eqs. (6)-(7). The rule propagates a selected output backward through dense, convolutional, and residual layers without dividing by pre-activations, and it is claimed to involve no hyperparameters and to satisfy the classical LRP conservation law up to a multiplicative factor. The empirical sections compare R-LRP with LRP0, LRP-epsilon, LRP-gamma, and LRP-alpha-beta on a modified MNIST task, a cat-vs-dog dataset, and a subset of Synthetic ImageNet-1K with VGG16, VGG19, and ResNet50, using a top-k pixel/input masking accuracy protocol and two mask-based qualitative measures.

Significance. The proposal is attractive in spirit: the base R-LRP rule is simple, contains no learned parameters beyond the network weights, and the authors release source code. The experimental study covers several architectures and includes both quantitative and qualitative evaluations. If the central conservation-law claim were correct, R-LRP would be a valuable parameter-free alternative to existing LRP variants. However, the central theoretical claim is not correct: the sum of input relevances is not proportional to the selected output by a constant factor. The empirical superiority claim is also weakened by the chosen masking protocol and limited sampling, so the main contributions of the paper do not currently hold.

major comments (3)
  1. [Section 2.1, Definition 9, Eqs. (6)-(7)] The claimed conservation law "up to a multiplicative factor" is false. Consider a single fully connected layer with one output neuron y = sum_i w_i x_i and bias zero. With z^{(q+1)} = y, Eq. (6) gives z_i = (1/N^(0)) w_i x_i y and Eq. (7) gives sum_i z_i = (1/N^(0)) y sum_i w_i x_i = y^2 / N^(0). The ratio (sum_i z_i)/y = y/N^(0) depends on the input through y, so there is no constant c satisfying sum_i z_i = c y for all inputs. Thus Definition 8 is not satisfied even up to a global factor, contradicting the abstract and the statement in Section 2.1 that "the sum of the inputs' contributions is equal to the selected output (up to a factor for our case)."
  2. [Section 2.3, Proposition 14, Eq. (13)] The residual-block normalization in Eq. (13) is derived from the equality sum_N(l) z_p = sum_N(m) z_p, which is the conservation law shown above to fail for R-LRP. The rescaling factors in Eq. (13) are therefore data-dependent corrections rather than consequences of a valid conservation property. In addition, Eq. (13) divides by sums of relevances, which can be zero or arbitrarily small; this contradicts the paper's advertised property of avoiding division by small values, and the "except for Resnet skip connection" qualification does not cover these normalization denominators. The residual-block handling is therefore not soundly justified.
  3. [Sections 3-5, evaluation protocol] The main empirical evidence for superiority is the top-k masking protocol in which all but the most relevant inputs/pixels are set to zero and the network accuracy is measured. This protocol rewards methods that produce concentrated maps, regardless of whether the selected regions correspond to the actual decision process, and it does not compare against any ground-truth attribution. The ImageNet-1K evaluation in Section 5 uses only two random images per category, and no error bars or per-image variance are reported. These limitations are partially acknowledged only for the qualitative mask-based evaluation in Section 6, but they also affect the quantitative claims of "better results" in Section 7. As presented, the empirical evidence does not support the claim that R-LRP is superior to other LRP methods in general.
minor comments (4)
  1. [Title and Abstract] The word "eXplaination" in the title should be "Explanation."
  2. [Authors' affiliations] The affiliation text "partial secondment at Buawei" appears to contain a typo; it should likely read "Huawei."
  3. [Section 4.1] The dataset attribution "Charm Myae Zaw and all" is unclear; a formal Kaggle citation or a URL should be provided.
  4. [Definition 9, Eq. (7)] The factor Card(J)/N^{(l+1)} in Eq. (7) is redundant when J is the full set of neurons in layer l+1, and its meaning for boundary positions in padded convolutions is not defined; the relationship between J and N^{(l+1)} should be clarified.

Circularity Check

1 steps flagged · score 2.0 of 10

Minor self-definitional normalization in the residual-block rule; the core R-LRP definition and empirical comparisons are independent.

  1. self definitional [Section 2.3, Proposition 14, Eq. (13)]
    "From the conservation law (equation 2), we can state that, X_N(l) z (l) p = X_N(m) z (m) p , ∀(l, m) ∈ {0, ..., q} × {0, ..., q} Thus, the normalization consists in having the same value for sums at the end and the beginning of each part of the residual building block. ... Based on the conservation law property, we then define the contribution of the inputs of a learning block by z(l) i,j = z1(l) i,k P_N(m) z1(m) p / P_N(l) z1(l) p + z2(l) i,k P_N(m) z2(m) p / P_N(l) z2(l) p (13)"

    Equation (13) is not derived from Eq. (6); it is constructed by multiplying each branch's start-of-block relevance by the ratio of that branch's end-of-block sum to its start-of-block sum. Therefore the block-level conservation equality is guaranteed by algebraic identity, i.e. the proposition's 'conservation law' is inserted as the normalization rule rather than obtained from the R-LRP propagation rule. The wording 'Based on the conservation law property' makes the target property an input to the definition. This is a self-definitional patch confined to residual blocks; the dense/convolutional R-LRP formula and the benchmark comparisons do not reduce to it.

full rationale

The core R-LRP rule (Eqs. 6-8) is a closed-form backpropagation formula using only network weights, activations, and a backward relevance variable; no parameter is fitted to the data whose explanations are evaluated, and no external self-cited result is needed to define it. The empirical claims (Sections 3-5) are tested against external datasets with a uniform masking protocol for all methods, and Section 6 even reports categories where R-LRP does not localize well, so the claimed superiority is not enforced by construction. The one exhibitable circular element is Proposition 14/Eq. (13), where residual-branch contributions are rescaled by their own sum ratios, making that block's conservation property definitional rather than derived; this is a secondary, disclosed normalization and does not drive the main empirical comparisons. The skeptic's algebraic objection to the 'up to a factor' claim for dense layers is a correctness concern about a false assertion, not a circularity: a false theorem is still non-circular. Overall, the central R-LRP contribution remains independently testable, so the score is 2 rather than higher.

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

R-LRP introduces no free parameters and no invented entities. The method rests on the DAG model of feed-forward networks, the (unproven and false) conservation law used in residual normalization, and an implicit treatment of ReLU as identity in the backward pass, since Equation (6) multiplies by the input activation x_i without including the activation derivative.

assumptions (3)
  • standard math The DAG representation of feed-forward neural networks (Definition 1) supports a unique backward propagation path for relevance.
    Used throughout Section 1.1 to define network architectures and the R-LRP recursion.
  • domain assumption The conservation law (Definition 8) holds for LRP methods and is used to justify normalization in R-LRP.
    Invoked in Section 2.3 (Proposition 14) to normalize residual and skip connection contributions; R-LRP itself is claimed to satisfy it up to a factor, which is not proven and is in fact false.
  • domain assumption Activation functions are piecewise linear (ReLU) or can be treated as identity in backward relevance computation.
    The R-LRP formula in Equation (6) uses x_i^(l) directly without including the derivative of the activation function, effectively treating ReLU as identity.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Relative Layer-Wise Relevance Propagation: a more Robust Neural Networks eXplaination." pith.science (2026). https://pith.science/paper/PRTT37Y7

@misc{pith2026250114322,
  author       = {Pith},
  title        = {Pith review of: Relative Layer-Wise Relevance Propagation: a more Robust Neural Networks eXplaination},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/PRTT37Y7}},
  note         = {Machine review of arXiv:2501.14322}
}
read the original abstract

Machine learning methods are solving very successfully a plethora of tasks, but they have the disadvantage of not providing any information about their decision. Consequently, estimating the reasoning of the system provides additional information. For this, Layer-Wise Relevance Propagation (LRP) is one of the methods in eXplainable Machine Learning (XML). Its purpose is to provide contributions of any neural network output in the domain of its input. The main drawback of current methods is mainly due to division by small values. To overcome this problem, we provide a new definition called Relative LRP where the classical conservation law is satisfied up to a multiplicative factor but without divisions by small values except for Resnet skip connection. In this article, we will focus on image classification. This allows us to visualize the contributions of a pixel to the predictions of a multi-layer neural network. Pixel contributions provide a focus to further analysis on regions of potential interest. R-LRP can be applied for any dense, CNN or residual neural networks. Moreover, R-LRP doesn't need any hyperparameters to tune contrary to other LRP methods. We then compare the R-LRP method on different datasets with simple CNN, VGG16, VGG19 and Resnet50 networks.

Figures

Figures reproduced from arXiv: 2501.14322 by the authors.

Figure 1
Figure 1. Softmax implementation example in 1D. Proposition 2 (Feed-forward neural network output) Let us given a feed-forward neu￾ral network N (see Definition 1) and x ∈ R d with d = card(I) then SN (x) := {xv}v∈O is a function mapping R d into R p where p = card(O), called the output of N . The performance of these architectures is evaluated on new draws of data in the sense of probability or expectation of accuracy on sai… view at source ↗
Figure 2
Figure 2. Convolution part implementation example in 1D [PITH_FULL_IMAGE:figures/full_fig_p006_2.png] view at source ↗
Figure 3
Figure 3. A residual learning building block. 6 [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (28 more)
Figure 4
Figure 4. Figure 4: Images showing percentage of the most relevant pixels using LRP0 on a modified MNIST dataset using a simple dense network. Mask images are in black and white Image 1% 5% 10% 20% 50% [PITH_FULL_IMAGE:figures/full_fig_p008_4.png]
Figure 5
Figure 5. Figure 5: Images showing percentage of the most relevant inputs using LRP0 on two images from Imagenet dataset with VGG16. 1.4 LRP modified formulas In order to avoid this problem, some LRP-methods use modified formulas to finally produce post processed heatmaps. Usually, these …
Figure 6
Figure 6. Figure 6: R-LRP problems with non-normalized sums for residual block contributions [PITH_FULL_IMAGE:figures/full_fig_p012_6.png]
Figure 7
Figure 7. Figure 7: Contribution calculus for residual learning building block. [PITH_FULL_IMAGE:figures/full_fig_p013_7.png]
Figure 8
Figure 8. Figure 8: Images showing percentage of the most relevant pixels using LRP methods on a modified MNIST dataset using a simple CNN network.Positive contributions are in white while negative ones are in grey The evaluation gives the accuracy of the test set based on the percentage …
Figure 9
Figure 9. Figure 9: Accuracies of LRP methods over modified MNIST test dataset in terms of per￾centage of the most relevant pixels Although all these methods achieve quickly more than 95% of success, we naturally want the contributions of pixels to focus on the object in the input image a…
Figure 10
Figure 10. Figure 10: Images showing percentage of the most relevant pixels in absolute value using some LRP methods on a modified MNIST dataset using a simple CNN network [PITH_FULL_IMAGE:figures/full_fig_p015_10.png]
Figure 11
Figure 11. Figure 11: Accuracy of LRP methods over modified MNIST test dataset in terms of percent￾age of the most relevant pixels in absolute value 4 R-LRP validation with cat vs dog dataset In order to validate our new formula 6, we decided to use a more complex CNN than the one used for…
Figure 12
Figure 12. Figure 12: Two images, from the cat vs dog dataset, showing percentage of the most relevant inputs using some LRP methods with VGG16 based CNN network. using masked images in order to evaluate the LRP methods (figure 13). R-LRP outperforms all the other methods with an accuracy …
Figure 13
Figure 13. Figure 13: Accuracy of LRP methods over cat vs dog test dataset in terms of percentage of the most relevant inputs calculated mask images that contain a percentage of the highest contributions in absolute value, like for previous evaluation (see [PITH_FULL_IMAGE:figures/full_fi…
Figure 14
Figure 14. Figure 14: Two images, from the cat vs dog dataset, showing percentage of the most relevant inputs in absolute value using some LRP methods with VGG16 based CNN network. 17 [PITH_FULL_IMAGE:figures/full_fig_p017_14.png]
Figure 15
Figure 15. Figure 15: Accuracies of LRP methods over cat Vs dog test dataset in terms of percentage of the most relevant inputs in absolute value 4.5 Evaluations with pixels In the previous tests, we have used input values, which means that, for one pixel, we masked separately each input c…
Figure 16
Figure 16. Figure 16: Two images, from the cat Vs dog dataset, showing percentage of the most relevant pixels in absolute value using some LRP methods with VGG16 based CNN network [PITH_FULL_IMAGE:figures/full_fig_p019_16.png]
Figure 17
Figure 17. Figure 17: Accuracy of LRP methods over cat Vs dog test dataset in terms of percentage of the most relevant pixels in absolute value images for each category from the dataset. We keep the same images for all our tests. For an image, the category taken into account for the tests …
Figure 18
Figure 18. Figure 18: percentage of the most relevant pixels in absolute value using some LRP methods with VGG16 network on some challenging images from Synthetic ImageNet-1K dataset. accuracy for these different percentage is better with our method than any other LRP method (see figure 19…
Figure 19
Figure 19. Figure 19: Accuracy of LRP methods in terms of percentage of the most relevant pixels in absolute value for VGG16 and VGG19 networks with Synthetic ImageNet-1K Because VGG16 and VGG19 networks are not so different, the test results are similar. 5.2 ResNet50 When we try to evalua…
Figure 22
Figure 22. Figure 22: figure 22.b, we can see that VGG19 and VGG16 use, in general, the same pixels to class [PITH_FULL_IMAGE:figures/full_fig_p021_22.png]
Figure 20
Figure 20. Figure 20: percentage of the most relevant pixels in absolute value using some LRP methods with ResNet50 network on some challenging images from Synthetic ImageNet-1K dataset. Evaluating the 2000 images used for the tests with the three networks, it shows that 1464 images get th…
Figure 21
Figure 21. Figure 21: Accuracy of LRP methods over ImageNet-1K dataset in terms of percentage of the most relevant pixels in absolute value using ResNet50 (a) (b) (c) [PITH_FULL_IMAGE:figures/full_fig_p023_21.png]
Figure 22
Figure 22. Figure 22: Cross comparison of networks using R-LRP. Relevant pixels for one network on ImageNet-1K are used to evaluate accuracy with another one (from left to right, VGG16, VGG19 and ResNet50) each folder. Thus, to be usable for qualitative evaluations of LRP methods, we only …
Figure 23
Figure 23. Figure 23: Mask and images with 20% of most relevant pixels using R-LRP and LRP-ab0505 for image 1040 (category 479) averaging the values over all images in a category, we get a score of the method for that category. The higher the score for a small percentage of pixels, the bet…
Figure 24
Figure 24. Figure 24: "Best" (cat 393) and "worst" (cat 928) average pixels in the mask for VGG16 [PITH_FULL_IMAGE:figures/full_fig_p024_24.png]
Figure 25
Figure 25. Figure 25: "Best" (cat 393) and "worst" (cat 928) average pixels in the mask for ResNet50 6.2 Average distances The average distance between relevant pixels and the object mask measures the dispersion of pixels in the image, and thus indicates whether relevant pixels are grouped…
Figure 26
Figure 26. Figure 26: Mask and images with 20% of most relevant pixels using R-LRP and LRP-ab0505 for image 1006 (category 277) In figure 27, we can see that R-LRP method gives better results than LRP-αβ and LRP-γ for categories 393 and 928 for VGG16 in terms of average distance from mask.…
Figure 27
Figure 27. Figure 27: "Best" (cat 393) and "worst" (cat 928) R-LRP average distance for VGG16 [PITH_FULL_IMAGE:figures/full_fig_p026_27.png]
Figure 28
Figure 28. Figure 28: "Best" (cat 393) and "worst" (cat 928) R-LRP average distance for ResNet50 [PITH_FULL_IMAGE:figures/full_fig_p026_28.png]
Figure 29
Figure 29. Figure 29: Mask and images with 20% of most relevant pixels using R-LRP and LRP-ab0505 for Image 21098 (category 486) Thus, as it was indicated previously, quality evaluations provide just indicative elements on the pixels defined as relevant by a method, with a human view. A me…
Figure 30
Figure 30. Figure 30: Mask and images with 20% of most relevant pixels using R-LRP and LRP-ab0505 for Image 1245 (category 928) for ResNet50 one (see figures 19 and 21). It seems that in terms of quality, R-LRP gives the best results for VGG16 (resp. VGG19) and good results for ResNet50. 7…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

41 extracted references · 19 canonical work pages

  1. [1]

    What is relevant in a text document?: An interpretable machine learning approach

    Leila Arras et al. “What is relevant in a text document?: An interpretable machine learning approach”. In: (2017).doi: 10.1371/journal.pone.0181142. 27 E. Nyiri and O. Gibaru

  2. [2]

    On pixel-wise explanations for non-linear classifier decisions by layer-wise relevance propagation

    Sebastian Bach et al. “On pixel-wise explanations for non-linear classifier decisions by layer-wise relevance propagation”. In:PLoS ONE(2015). doi: 10.1371/journal.pone. 0130140

  3. [3]

    Empirical Evaluation of Gated Recurrent Neural Networks on Sequence Modeling

    Junyoung Chung et al. “Empirical Evaluation of Gated Recurrent Neural Networks on Sequence Modeling”. In:28th Conference on Neural Information Processing Systems (NIPS) Deep Learning and Representation Learning Workshop(2014). doi: 10.48550/ arXiv.1412.3555

  4. [4]

    Explaining by Removing: A Unified Framework for Model Explanation

    Ian C. Covert, Scott Lundberg, and Su-In Lee. “Explaining by Removing: A Unified Framework for Model Explanation”. In:Journal of Machine Learning Research22 (2021), pp. 1–90.doi: 10.48550/arXiv.2011.14878

  5. [5]

    Nonlinear Approximation and (Deep) ReLU Networks

    Ingrid Daubechies et al. “Nonlinear Approximation and (Deep) ReLU Networks”. In: Contructive Approximation55 (2022), pp. 127–172.doi: 10.1007/s00365-021-09548- z

  6. [6]

    Neural Network Approximation

    Ronald DeVore, Boris Hanin, and Guergana Petrova. “Neural Network Approximation”. In: Acta Numerica30 (2021), pp. 337–444.doi: 10.1017/S0962492921000052

  7. [7]

    A guide to convolution arithmetic for deep learning

    Vincent Dumoulin and Francesco Visin. “A guide to convolution arithmetic for deep learning”. In: (2016).doi: 10.48550/arXiv.1603.07285

  8. [8]

    Combining pretrained CNN feature extractors to enhance clustering of complex natural images

    Joris Guérin et al. “Combining pretrained CNN feature extractors to enhance clustering of complex natural images”. In:Neurocomputing 423 (2021), pp. 551–571.doi: 10. 1016/j.neucom.2019.05.064

Show all 41 references
  1. [9]

    Semantically Meaningful View Selection

    Joris Guérin et al. “Semantically Meaningful View Selection”. In:IEEE International Conference on Intelligent Robots and Systems (IROS)(2018), pp. 1061–1066. doi: 10.1109/IROS.2018.8593524

  2. [10]

    Unsupervised robotic sorting: Towards autonomous decision making robots

    Joris Guérin et al. “Unsupervised robotic sorting: Towards autonomous decision making robots”. In:International Journal of Artificial Intelligence and Applications (IJAIA) 9.2 (2018), pp. 81–98.doi: 10.5121/ijaia.2018.9207

  3. [11]

    Deep Residual Learning for Image Recognition

    Kaiming He et al. “Deep Residual Learning for Image Recognition”. In:IEEE Conference on Computer Vision and Pattern Recognition(2016), pp. 770–778.doi: 10.1109/CVPR. 2016.90

  4. [12]

    Long Short-term Memory

    Sepp Hochreiter and Jürgen Schmidhuber. “Long Short-term Memory”. In:Neural Computation 9.8 (1997), pp. 1735–1780.doi: 10.1162/neco.1997.9.8.1735

  5. [13]

    Explainable AI Methods - A Brief Overview

    Andreas Holzinger et al. “Explainable AI Methods - A Brief Overview”. In:xxAI - Beyond Explainable AI: International Workshop, Held in Conjunction with ICML 2020, July 18, 2020, Vienna, Austria, Revised and Extended Papers. Ed. by Andreas Holzinger et al. Cham: Springer Intern...

  6. [14]

    url: https://doi.org/10.1007/978-3- 031-04083-2_2

    doi: 10.1007/978-3-031-04083-2_2 . url: https://doi.org/10.1007/978-3- 031-04083-2_2

  7. [15]

    Explaining the unique nature of individual gait patterns with deep learning

    Fabian Horst et al. “Explaining the unique nature of individual gait patterns with deep learning”. In:Scientific Reports9.2391 (2019). doi: 10.1038/s41598-019-38748-8

  8. [16]

    A Visual Designer of Layer-wise Relevance Propagation Models

    Xinyi Huang et al. “A Visual Designer of Layer-wise Relevance Propagation Models”. In: Computer Graphics Forum40.3 (2021), pp. 227–238.doi: 10.1111/cgf.14302. 28 R-LRP XML

  9. [17]

    Explaining CNN and RNN Using Selective Layer-Wise Relevance Propagation

    Yeon-Jee Jung, Seung-Ho Han, and Ho-Jin Choi. “Explaining CNN and RNN Using Selective Layer-Wise Relevance Propagation”. In:IEEE Access9 (2021), pp. 18670– 18681. doi: 10.1109/ACCESS.2021.3051171

  10. [18]

    Towards Best Practice in Explaining Neural Network Decisions with LRP

    Maximilian Kohlbrenner et al. “Towards Best Practice in Explaining Neural Network Decisions with LRP”. In:International Joint Conference on Neural Networks (IJCNN) (2020), pp. 1–7.doi: 10.1109/IJCNN48605.2020.9206975

  11. [19]

    Understanding and Comparing Deep Neural Networks for Age and Gender Classification

    Sebastian Lapuschkin et al. “Understanding and Comparing Deep Neural Networks for Age and Gender Classification”. In:IEEE International Conference on Computer Vision Workshops (ICCVW)(2017), pp. 1629–1638.doi: 10.1109/ICCVW.2017.191

  12. [20]

    Unmasking Clever Hans predictors and assessing what machines really learn

    Sebastian Lapuschkin et al. “Unmasking Clever Hans predictors and assessing what machines really learn”. In:Nature Communications 10.1096 (2019). doi: 10.1038/ s41467-019-08987-4

  13. [21]

    Explaining nonlinear classification decisions with deep Taylor decomposition

    Grégoire Montavon et al. “Explaining nonlinear classification decisions with deep Taylor decomposition”. In: Pattern Recognition65 (2017), pp. 211–222. doi: 10 . 1016 / j . patcog.2016.11.008

  14. [22]

    Layer-Wise Relevance Propagation: An Overview

    Grégoire Montavon et al. “Layer-Wise Relevance Propagation: An Overview”. In:Lecture Notes in Computer Science book series11700 (2019)

  15. [23]

    RISE: Randomized Input Sampling for Explanation of Black-box Models

    Vitali Petsiuk, Abir Das, and Kate Saenko. “RISE: Randomized Input Sampling for Explanation of Black-box Models”. In:British Machine Vision Conference (BMCV) (2018). doi: 10.48550/arXiv.1806.07421

  16. [24]

    Why Should I Trust You?: Explaining the Predictions of any Classifier

    Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. “Why Should I Trust You?: Explaining the Predictions of any Classifier”. In:Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining(2016), pp. 1135–

  17. [25]

    Online Recognition of Incomplete Gesture Data to Interface Collaborative Robots

    Miguel Simão, Olivier Gibaru, and Pedro Neto. “Online Recognition of Incomplete Gesture Data to Interface Collaborative Robots”. In:IEEE Transactions on Industrial Electronics 66.12 (2019), pp. 9372–9382.doi: 10.1109/TIE.2019.2891449

  18. [26]

    Grad-CAM: Visual Explanations from Deep Networks via Gradient-based Localization

    Ramprasaath R. Selvaraju et al. “Grad-CAM: Visual Explanations from Deep Networks via Gradient-based Localization”. In:IEEE International Conference on Computer Vision (ICCV)(2017), pp. 618–626.doi: 10.1109/ICCV.2017.74

  19. [27]

    Improving novelty detection with generative adversarial networks on hand gesture data

    Miguel Simão, Pedro Neto, and Olivier Gibaru. “Improving novelty detection with generative adversarial networks on hand gesture data”. In:Neurocomputing 358 (2019), pp. 437–445. doi: 10.1016/j.neucom.2019.05.064

  20. [28]

    EMG-based online classification of gestures with recurrent neural networks

    Miguel Simão, Pedro Neto, and Olivier Gibaru. “EMG-based online classification of gestures with recurrent neural networks”. In:Pattern Recognition Letters128 (2019), pp. 45–51. doi: 10.1016/j.patrec.2019.07.021

  21. [29]

    A Review on Electromyography Decoding and Pattern Recognition for Human-Machine Interaction

    Miguel Simão et al. “A Review on Electromyography Decoding and Pattern Recognition for Human-Machine Interaction”. In:IEEE Access7 (2019), pp. 39564–39582.doi: 10.1109/ACCESS.2019.2906584. 29 E. Nyiri and O. Gibaru

  22. [30]

    Using data dimensionality reduction for recognition of incomplete dynamic gestures

    Miguel Simão, Pedro Neto, and Olivier Gibaru. “Using data dimensionality reduction for recognition of incomplete dynamic gestures”. In:Pattern Recognition Letters99 (2017), pp. 32–38.doi: 10.1016/j.patrec.2017.01.003

  23. [31]

    Striving for Simplicity: The All Convolutional Net

    Jost Tobias Springenberg et al. “Striving for Simplicity: The All Convolutional Net”. In: 3rd International Conference on Learning Representations (ICLR)(2015). doi: 10.48550/arXiv.1412.6806

  24. [32]

    Very Deep Convolutional Networks for Large- Scale Image Recognition

    Karen Simonyan and Andrew Zisserman. “Very Deep Convolutional Networks for Large- Scale Image Recognition”. In:3rd International Conference on Learning Representations (ICLR) (2015). doi: 10.48550/arXiv.1409.1556

  25. [33]

    Axiomatic Attribution for Deep Networks

    Mukund Sundararajan, Ankur Taly, and Qiqi Yan. “Axiomatic Attribution for Deep Networks”. In:ICML’17: Proceedings of the 34th International Conference on Machine Learning 70 (2017), pp. 3319–3328.doi: 10.48550/arXiv.1703.01365

  26. [34]

    Interpretable human action recognition in compressed do- main

    Vignesh Srinivasan et al. “Interpretable human action recognition in compressed do- main”. In:IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) (2017), pp. 1692–1696.doi: 10.1109/ICASSP.2017.7952445

  27. [35]

    Thulasiraman and M

    K. Thulasiraman and M. N. S. Swamy.Graphs: Theory and Algorithms. John Wiley & Sons, 1992. isbn: 978-0-471-51356-8. doi: 10.1002/9781118033104

  28. [36]

    Analyzing Neuroimaging Data Through Recurrent Deep Learning Models

    Armin W. Thomas et al. “Analyzing Neuroimaging Data Through Recurrent Deep Learning Models”. In:Frontiers in Neuroscience13 (2019). doi: 10.3389/fnins.2019. 01321

  29. [37]

    Attention is All you Need

    Ashish Vaswani et al. “Attention is All you Need”. In:30th Conference on Neural Information Processing Systems (NIPS)(2017). doi: 10.48550/arXiv.1706.03762

  30. [38]

    MLP-Mixer: An all-MLP Architecture for Vision

    Ilya Tolstikhin et al. “MLP-Mixer: An all-MLP Architecture for Vision”. In:35th Conference on Neural Information Processing Systems(2021). doi: 10.48550/arXiv. 2105.01601

  31. [39]

    Top-down Neural Attention by Excitation Backprop

    Jianming Zhang et al. “Top-down Neural Attention by Excitation Backprop”. In: International Journal of Computer Vision126 (2018), pp. 1084–1102.doi: 10.1007/ s11263-017-1059-x. 30

  32. [40]

    Visualizing and Understanding Convolutional Networks

    Matthew D Zeiler and Rob Fergus. “Visualizing and Understanding Convolutional Networks”. In:Computer Vision – ECCV 2014. ECCV 20148689 (2014). doi: 10. 1007/978-3-319-10590-1_53

  33. [1144]

    doi: 10.1145/2939672.2939778

Pith tools

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