REVIEW 4 major objections 6 minor 63 references
Ralts: Robust Aggregation for Enhancing Graph Neural Network Resilience on Bit-flip Errors
T0 review · 4 major / 6 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Three similarity-based aggregation filters recover most of the prediction accuracy that hardware bit flips in weights, embeddings, or adjacency matrices would destroy, at nearly the same computational cost.
desk verdict Genuinely new lightweight robust aggregations for GNN bit-flip robustness, with plausible gains; missing code, error bars, and an unexamined distribution-shift mechanism are the main soft spots. 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 load-bearing mechanism is the aggregation function itself, rewritten from a plain mean into an outlier filter and topology repairer. Distribution-based aggregation estimates per-dimension mean $\mu$ and standard deviation $\sigma$ of node embeddings during training, then at inference averages only values inside the interval $(\mu - a\sigma, \mu + b\sigma)$, treating the rest as bit-flip outliers. Dynamic-weight aggregation learns a center embedding $m_g$ alongside the model and weights each neighbor by $1/(\|h_u - m_g\|^2 + 1)$, so distant, likely-corrupted embeddings are attenuated rather than discarded. Cosine aggregation computes $\cos(x_i, x_j) = x_i\cdot x_j/(\|x_i\|\|x_j\|)$ for every edge and prunes edges whose similarity falls below a threshold $\alpha$, on the principle that structurally similar nodes are more likely to be connected. A combined variant sums the three with learnable scalars. All forms stay at $O(\ell|E|)$, matching mean aggregation, which is what allows the defense to ride on standard message-passing runtimes with modest latency growth.
What would settle it
Train a GNN on a graph dataset whose first-layer node embeddings have demonstrably non-Gaussian per-dimension distributions (bimodal or heavy-tailed, established by a normality test across nodes), inject bit flips into model weights at a BER of $3\times10^{-5}$, and compare distribution-based aggregation with plain mean aggregation. If the claimed at-least-20% improvement collapses because the fixed $\mu \pm a\sigma$ interval discards healthy embeddings or retains corrupted ones, the Gaussian premise fails; if the gain persists on such a dataset, the method's generality is confirmed.
Extended reading notes
Core claim
On its own terms, the paper establishes that GNN robustness to hardware bit errors is largely recoverable at the aggregation layer, without retraining and without changing the model architecture. Its central claim is that three robust aggregation functions, each exploiting graph similarity, keep the linear time complexity of mean aggregation while clearly outperforming existing robust alternatives: on average at a BER of $3\times10^{-5}$, distribution-based and dynamic-weight aggregation improve prediction accuracy by 44.1%, 27.4%, 32.6%, 22.2%, and 43.7% relative to mean, median, trimmed-mean, soft-median, and activation-clipping baselines, and cosine aggregation improves accuracy by roughly 9–16% against the same baselines for adjacency-matrix errors. The paper further claims these gains are stable across GCN, GAT, and GIN; across node-level and graph-level tasks; across dense and sparse models; and across small citation and molecular graphs as well as the much larger ogbn-arxiv and ogbn-products graphs. It also reports that combining the three functions with learnable scalars yields additional robustness when errors strike weights, embeddings, and topology simultaneously.
Load-bearing premise
The load-bearing premise is that per-dimension node embeddings are approximately Gaussian across nodes, so a fixed interval of a few standard deviations such as $\mu \pm a\sigma$ cleanly separates bit-flip outliers from informative values; embeddings are nonlinear outputs of neighborhood averaging, not sample means, and the interval bounds and similarity threshold are tuned per dataset.
Editorial extensions
If this is right
- Any message-passing GNN can adopt the defense by swapping its aggregation function; no architectural change is needed, since the distribution statistics, the center embedding, and the combination weights are all obtained during ordinary training.
- Because unprotected GNNs stay stable below a BER of roughly $10^{-7}$, and Ralts absorbs the damage above that threshold, system designers can justify voltage scaling or lighter error-correction codes in reliability-tolerant regimes.
- Weight sparsification alone does not make GNNs more robust to bit flips, unlike DNNs, but Ralts improves accuracy consistently at every tested sparsity level of 15%, 30%, and 60%.
- When errors simultaneously hit weights, node embeddings, and the adjacency matrix, the combined aggregation function outperforms each robust function individually because the three target different error sources.
- Ralts scales to large, dense graphs: all three functions keep $O(\ell|E|)$ complexity, with profiled latencies on ogbn-arxiv and ogbn-products of roughly $1.7$–$2.1\times$ that of mean aggregation.
Reading between the lines
- A cheap normality check on a clean model's per-dimension embedding statistics would predict, before any bit flips occur, whether distribution-based aggregation will help or hurt on a given dataset; the paper does not explore this diagnostic.
- The hyperparameters $a$, $b$, and $\alpha$ are tuned per dataset, so a natural testable extension is estimating them automatically from clean validation data, or allowing them to vary per embedding dimension rather than globally.
- Because the injection framework is fault-model agnostic, the same aggregation filters could plausibly absorb other silent-corruption sources such as timing errors or stuck-at faults, and possibly adversarial perturbations; this extrapolates beyond the paper's random independent bit-flip setup.
- If the aggregation-level principle holds, the results imply that the efficiency–robustness trade-off in GNN accelerators is best resolved inside message passing rather than by expensive input reconstruction, a system-design consequence the authors leave mostly implicit.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper studies the robustness of message-passing GNNs to random bit-flip errors in model weights, node embeddings, and adjacency matrices. It first reports an empirical sensitivity analysis across GCN, GAT, and GIN on six medium datasets and two OGB datasets. It then proposes Ralts, a set of three alternative aggregation functions—distribution-based trimming of outlier dimensions, dynamic weight averaging based on distance to a learned center, and cosine-similarity-based edge pruning—that can be used individually or combined. The evaluation compares these functions with mean, max, median, trimmed mean, soft median, and activation-clipping baselines under several BERs, including sparse models, and profiles execution latency. The headline claims are that at BER 3e-5 the robust aggregations improve accuracy by at least 20% for weight/embedding errors and at least 10% for adjacency errors, with execution efficiency comparable to PyG built-in mean aggregation.
Significance. If the empirical claims are taken at face value, Ralts offers a simple, architecture-agnostic, low-overhead defense against an underexplored failure mode, and the sensitivity analysis is a useful reference for hardware/GNN co-design. The paper's strengths are its broad evaluation (three models, eight datasets, three error locations, multiple BERs, dense and sparse models), the linear time complexity of the proposed aggregations, and the direct integration into message-passing frameworks. The efficiency profile is a valuable contribution. However, because the main quantitative claims depend on per-dataset hyperparameters whose selection procedure is not reported, and because the mechanism for weight-error robustness is not demonstrated, the significance as currently evidenced is weaker than the abstract suggests.
major comments (4)
- [Section IV-A and IV-C, Section VII-B] Hyperparameters a, b, and α are introduced as "adjusted for different datasets or GNNs" (Section IV-A) and as a "tunable threshold parameter" (Section IV-C), but the paper does not describe how these values are chosen, what values are used, or whether a validation set is used. Because the headline improvements in Section VII-B are computed on the same error conditions for which these hyperparameters can be tuned, the reported gains may partly reflect per-condition fitting rather than out-of-sample robustness. Please provide the exact selection protocol (tuning set, grid, criterion) and a table of the chosen hyperparameter values, or a sensitivity analysis showing that the results are stable across a wide range of a, b, and α.
- [Section IV-A, Figs. 6 and 9] The mechanism for weight-error robustness is not demonstrated. Section IV-A estimates µ and σ from clean training embeddings and then applies the fixed interval (µ−aσ, µ+bσ) at inference; Section IV-B similarly uses a center m_g. When bit flips occur in model weights, the corrupted network computes embeddings through systematically altered weights, so the whole per-dimension distribution can shift rather than only producing sparse outliers. The paper provides no measurement of how much the embedding distribution shifts under weight errors and no ablation with re-estimated, recentered, or adaptive thresholds. The CLT argument in Section IV-A addresses the shape of clean embeddings, not the train-test distribution shift. In the absence of such evidence, the strong improvement reported for weight errors cannot be attributed specifically to principled outlier removal. Please add this analysis or qualify the weight-error claim.
- [Section V (Implementation details), Figs. 6–14] The manuscript reports that results are averaged over five different random seeds with 10 independent runs per seed, but no figure or table presents error bars, standard deviations, confidence intervals, or significance tests. In several comparisons in Figs. 9–12 the curves lie close together, so the quantitative claims (e.g., 44.1% average improvement in Section VII-B) are not supported by any measure of variability. Please report per-condition means with variance or confidence intervals and, where feasible, paired tests across seeds for the main comparisons.
- [Section IV-B] The dynamic weight aggregation uses a "learnable center embedding" m_g trained via backpropagation, but the paper does not state whether m_g is a model parameter subject to bit flips in the weight-error scenario, nor does it give initialization, loss-term, or update details. If m_g is a stored parameter, it can be corrupted directly; if it is instead a statistic of clean embeddings, it faces the same distribution-shift problem as µ and σ. The manuscript should clarify the status of m_g and evaluate the sensitivity of dynamic-weight aggregation to corrupted or shifted centers.
minor comments (6)
- [Abstract and Section VII-B] The abstract's "at least 20%" improvement claim is not tied to a specific baseline; Section VII-B reports different numbers for different baselines (44.1% vs mean, 27.4% vs median, etc.). Please specify the baseline and conditions for the abstract claim.
- [Fig. 5] The Gaussian-supporting figure shows only the first element of first-layer embeddings for four dataset-model pairs, while the text claims that values in each dimension of node embeddings exhibit near-Gaussian behavior. Please show more dimensions/layers or add quantitative normality checks.
- [Eq. (2)] The weight formula Weight_u = 1/(d_u^2+1) is not invariant to the scale of node embeddings; the manuscript should discuss how the scale of d_u^2 affects the weighting and whether any normalization is needed.
- [Section IV-D and Fig. 11] The combination of aggregation functions with learnable scalars is mentioned, but no details are given for how the scalars are initialized or trained, and the Combined curve in Fig. 11 is not described in terms of this mechanism. Please specify the combination procedure.
- [Section VI and Fig. 6] The statement that GNNs maintain stable performance for BERs below 10^-7 to 10^-6 is not directly visible in Fig. 6, whose x-axis starts at 1e-6; please either extend the plots to these BERs or rephrase the claim.
- [Section VII-D and Fig. 13] The geometric-mean latency values quoted in the text (1.42x, 1.08x, 1.37x) do not clearly match the values shown in Fig. 13; please align the text and figure so the reported numbers can be verified.
Circularity Check
No significant circularity: Ralts' robustness and efficiency claims are empirical evaluations against external baselines, not derivations that reduce to their own definitions.
full rationale
The paper makes no first-principles prediction that is defined in terms of its own outcome. Section IV defines three aggregation mechanisms procedurally: distribution-based aggregation fits per-dimension mean and standard deviation on clean training embeddings and trims values outside the fitted interval; dynamic-weight aggregation learns a center embedding and reweights by inverse squared distance; cosine aggregation prunes edges below a tunable similarity threshold. None of these definitions presupposes the accuracy improvements reported in Sections VII-B and VII-D. The reported gains are measured against external PyG baselines (mean, max, median, trimmed mean, soft median, and activation clipping) under injected bit flips, and they could in principle have gone the other way, as the paper itself observes for graph-level tasks where the gains are described as slightly diminished. The tunable hyperparameters a, b, and alpha are selected per dataset, but ordinary hyperparameter selection does not make the outcome equivalent to the input, and the paper does not define the target accuracy in terms of these parameters. The Gaussian/CLT motivation in Section IV-A is a heuristic whose failure would be a correctness or robustness risk, not a circular step, and the paper explicitly concedes that not all embedding distributions strictly follow Gaussian distributions. No load-bearing self-citation chain or imported uniqueness theorem appears, and the efficiency claims are profiled against PyG implementations. The paper is self-contained as an empirical robustness study, so no circularity is present.
Assumptions & free parameters
free parameters (3)
- a (distribution lower threshold multiplier) =
not reported
- b (distribution upper threshold multiplier) =
not reported
- α (cosine similarity threshold) =
not reported
assumptions (4)
- domain assumption Per-dimension node embeddings are approximately Gaussian across nodes, so a fixed multiple of standard deviations separates bit-flip outliers from clean values.
- domain assumption Nodes with high feature similarity are more likely to be connected (homophily), so low-similarity edges are likely spurious and can be safely pruned.
- domain assumption Bit-flip errors occur independently with probability p (BER) in memory bits, and each flip corrupts the stored value.
- domain assumption Bit flips in weights/embeddings produce extreme values that can be identified by statistical deviation.
Cite this review
Pith. "Pith review of Ralts: Robust Aggregation for Enhancing Graph Neural Network Resilience on Bit-flip Errors." pith.science (2026). https://pith.science/paper/ND6BPA47
@misc{pith2026250718804,
author = {Pith},
title = {Pith review of: Ralts: Robust Aggregation for Enhancing Graph Neural Network Resilience on Bit-flip Errors},
year = {2026},
howpublished = {\url{https://pith.science/paper/ND6BPA47}},
note = {Machine review of arXiv:2507.18804}
}
abstract
Graph neural networks (GNNs) have been widely applied in safety-critical applications, such as financial and medical networks, in which compromised predictions may cause catastrophic consequences. While existing research on GNN robustness has primarily focused on software-level threats, hardware-induced faults and errors remain largely underexplored. As hardware systems progress toward advanced technology nodes to meet high-performance and energy efficiency demands, they become increasingly susceptible to transient faults, which can cause bit flips and silent data corruption, a prominent issue observed by major technology companies (e.g., Meta and Google). In response, we first present a comprehensive analysis of GNN robustness against bit-flip errors, aiming to reveal system-level optimization opportunities for future reliable and efficient GNN systems. Second, we propose Ralts, a generalizable and lightweight solution to bolster GNN resilience to bit-flip errors. Specifically, Ralts exploits various graph similarity metrics to filter out outliers and recover compromised graph topology, and incorporates these protective techniques directly into aggregation functions to support any message-passing GNNs. Evaluation results demonstrate that Ralts effectively enhances GNN robustness across a range of GNN models, graph datasets, error patterns, and both dense and sparse architectures. On average, under a BER of $3\times10^{-5}$, these robust aggregation functions improve prediction accuracy by at least 20\% when errors present in model weights or node embeddings, and by at least 10\% when errors occur in adjacency matrices. Ralts is also optimized to deliver execution efficiency comparable to built-in aggregation functions in PyTorch Geometric.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
Semi-supervised classification with graph convolutional networks,
T. N. Kipf and M. Welling, “Semi-supervised classification with graph convolutional networks,” arXiv preprint arXiv:1609.02907 , 2016
arXiv 2016
-
[2]
Graph embedding on biomedical networks: methods, applications and evaluations,
X. Yue et al. , “Graph embedding on biomedical networks: methods, applications and evaluations,” Bioinformatics, 2020
work page 2020
-
[3]
A comprehensive survey on graph neural networks,
Z. Wu et al., “A comprehensive survey on graph neural networks,” IEEE TNNLS, 2020
work page 2020
-
[4]
Ironman: Gnn-assisted design space exploration in high- level synthesis via reinforcement learning,
N. Wu et al., “Ironman: Gnn-assisted design space exploration in high- level synthesis via reinforcement learning,” in Proc. GLSVLSI, 2021
work page 2021
-
[5]
J. Zhang et al. , “Build a gnn-based real-time fraud detection solution using amazon sagemaker, amazon neptune, and the deep graph library.” https://aws.amazon.com/blogs/machine-learning/build-a-gnn-based- real-time-fraud-detection-solution-using-amazon-sagemaker-amazon- neptune-and-the-deep-graph-library/, [AWS Machine Learning Blog, Online; accessed 01-...
work page 2024
-
[6]
Financial fraud detection using graph neural networks: A systematic review,
S. Motie and B. Raahemi, “Financial fraud detection using graph neural networks: A systematic review,”Expert Systems With Applications, 2023
work page 2023
-
[7]
Cat-gnn: Enhancing credit card fraud detection via causal temporal graph neural networks,
Y . Duan et al., “Cat-gnn: Enhancing credit card fraud detection via causal temporal graph neural networks,” arXiv preprint arXiv:2402.14708 , 2024
arXiv 2024
-
[8]
Scalable graph learning for anti-money laundering: A first look,
M. Weber et al., “Scalable graph learning for anti-money laundering: A first look,” arXiv preprint arXiv:1812.00076 , 2018
arXiv 2018
Show all 63 references
-
[9]
Enhancing graph neural network-based fraud detectors against camouflaged fraudsters,
Y . Dou et al. , “Enhancing graph neural network-based fraud detectors against camouflaged fraudsters,” in Proc. CIKM, 2020
2020
-
[10]
αcyber: Enhancing robustness of android malware detection system against adversarial attacks on heterogeneous graph based model,
S. Hou et al. , “αcyber: Enhancing robustness of android malware detection system against adversarial attacks on heterogeneous graph based model,” in Proc. CIKM, 2019
2019
-
[11]
Graph neural networks for hardware vulnerability analysis—can you trust your gnn?,
L. Alrahis and O. Sinanoglu, “Graph neural networks for hardware vulnerability analysis—can you trust your gnn?,” in Proc. VTS, IEEE, 2023
2023
-
[12]
Graph neural networks for vulnerability detection: A counterfactual explanation,
Z. Chu et al. , “Graph neural networks for vulnerability detection: A counterfactual explanation,” in Proceedings of the 33rd ACM SIGSOFT International Symposium on Software Testing and Analysis , 2024
2024
-
[13]
Fraud Reports by Federal Trade Commission
“Fraud Reports by Federal Trade Commission.” https: //www.ftc.gov/news-events/news/press-releases/2024/02/nationwide- fraud-losses-top-10-billion-2023-ftc-steps-efforts-protect-public, [Online; accessed 01-Nov-2024]
2024
-
[14]
Value of fraud loss in the United States in 2022, by payment method
“Value of fraud loss in the United States in 2022, by payment method.” https://www.statista.com/statistics/958997/fraud-loss-usa-by- payment-method/, [Online; accessed 01-Nov-2024]
2022
-
[15]
Robust machine learning systems: Challenges, current trends, perspectives, and the road ahead,
M. Shafique et al. , “Robust machine learning systems: Challenges, current trends, perspectives, and the road ahead,” IEEE D & T , 2020
2020
-
[16]
Neutron soft error rate measurements in a 90-nm cmos process and scaling trends in sram from 0.25-/spl mu/m to 90-nm generation,
P. Hazucha et al. , “Neutron soft error rate measurements in a 90-nm cmos process and scaling trends in sram from 0.25-/spl mu/m to 90-nm generation,” in IEEE IEDM, 2003
2003
-
[17]
Razor: circuit-level correction of timing errors for low- power operation,
D. Ernst et al., “Razor: circuit-level correction of timing errors for low- power operation,” IEEE Micro, 2004
2004
-
[18]
Impact of technology and voltage scaling on the soft error susceptibility in nanoscale cmos,
V . Chandra and R. Aitken, “Impact of technology and voltage scaling on the soft error susceptibility in nanoscale cmos,” in IEEE International Symposium on Defect and Fault Tolerance of VLSI Systems , 2008
2008
-
[19]
Thundervolt: enabling aggressive voltage underscaling and timing error resilience for energy efficient deep learning accelera- tors,
J. Zhang et al., “Thundervolt: enabling aggressive voltage underscaling and timing error resilience for energy efficient deep learning accelera- tors,” in Proc. DAC, 2018
2018
-
[20]
Detecting silent data corruptions in the wild,
H. D. Dixit et al., “Detecting silent data corruptions in the wild,” arXiv preprint arXiv:2203.08989, 2022
2022 arXiv
-
[21]
Detection and prevention of silent data corruption in an exabyte-scale database system,
D. F. Bacon, “Detection and prevention of silent data corruption in an exabyte-scale database system,” in The 18th IEEE Workshop on Silicon Errors in Logic-System Effects , 2022
2022
-
[22]
An assessment of vulnerability of hardware neural networks to dynamic voltage and temperature variations,
X. Jiao et al. , “An assessment of vulnerability of hardware neural networks to dynamic voltage and temperature variations,” in Proc. ICCAD, 2017
2017
-
[23]
Dnn engine: A 28-nm timing-error tolerant sparse deep neural network processor for iot applications,
P. N. Whatmough et al. , “Dnn engine: A 28-nm timing-error tolerant sparse deep neural network processor for iot applications,” IEEE JSSC, 2018
2018
-
[24]
Ares: A framework for quantifying the resilience of deep neural networks,
B. Reagen et al., “Ares: A framework for quantifying the resilience of deep neural networks,” in Proc. DAC, 2018
2018
-
[25]
Bit error robustness for energy-efficient dnn accelera- tors,
D. Stutz et al. , “Bit error robustness for energy-efficient dnn accelera- tors,” Proc. MLSys, 2021
2021
-
[26]
Adversarial attacks and defenses on graphs,
W. Jin et al. , “Adversarial attacks and defenses on graphs,” ACM SIGKDD Explorations Newsletter , 2021
2021
-
[27]
Adversarial attack and defense on graph data: A survey,
L. Sun et al., “Adversarial attack and defense on graph data: A survey,” IEEE Transactions on Knowledge and Data Engineering , 2022
2022
-
[28]
Pygfi: Analyzing and enhancing robustness of graph neural networks against hardware errors,
R. Wang et al. , “Pygfi: Analyzing and enhancing robustness of graph neural networks against hardware errors,” arXiv preprint arXiv:2212.03475, 2022
2022 arXiv
-
[29]
Graph structure learning for robust graph neural networks,
W. Jin et al., “Graph structure learning for robust graph neural networks,” in Proc. SIGKDD, 2020
2020
-
[30]
Topology attack and defense for graph neural networks: an optimization perspective,
K. Xu et al., “Topology attack and defense for graph neural networks: an optimization perspective,” in Proc. IJCAI, 2019
2019
-
[31]
Robustness of graph neural networks at scale,
S. Geisler et al., “Robustness of graph neural networks at scale,” Proc. NeurIPS, 2021
2021
-
[32]
Fast graph representation learning with PyTorch Geometric,
M. Fey and J. E. Lenssen, “Fast graph representation learning with PyTorch Geometric,” in ICLR Workshop on Representation Learning on Graphs and Manifolds , 2019
2019
-
[33]
How powerful are graph neural networks?,
K. Xu et al., “How powerful are graph neural networks?,” in Proc. ICLR, 2018
2018
-
[34]
Computing graph neural networks: A survey from algorithms to accelerators,
S. Abadal et al. , “Computing graph neural networks: A survey from algorithms to accelerators,” ACM CSUR, 2021
2021
-
[35]
Empowering graph representation learning with test-time graph transformation,
W. Jin et al., “Empowering graph representation learning with test-time graph transformation,” in Proc. ICLR, 2023
2023
-
[36]
Resilient low voltage accelerators for high energy efficiency,
N. Chandramoorthy et al. , “Resilient low voltage accelerators for high energy efficiency,” in Proc. HPCA, IEEE, 2019
2019
-
[37]
On characterizing near-threshold sram failures in finfet technology,
S. Ganapathy et al., “On characterizing near-threshold sram failures in finfet technology,” in Proc. DAC, 2017
2017
-
[38]
Matic: Learning around errors for efficient low-voltage neural network accelerators,
S. Kim et al. , “Matic: Learning around errors for efficient low-voltage neural network accelerators,” in Proc. DATE, IEEE, 2018
2018
-
[39]
The theory of error-correcting codes,
F. MacWilliams, “The theory of error-correcting codes,” Elsevier Science Publishers BV google schola , 1977
1977
-
[40]
Chapter 5 - error coding techniques,
“Chapter 5 - error coding techniques,” in Architecture Design for Soft Errors (S. Mukherjee, ed.), pp. 161–206, Morgan Kaufmann, 2008
2008
-
[41]
Berry: Bit error robustness for energy-efficient reinforce- ment learning-based autonomous systems,
Z. Wan et al., “Berry: Bit error robustness for energy-efficient reinforce- ment learning-based autonomous systems,” in Proc. DAC, IEEE, 2023
2023
-
[42]
Mulberry: Enabling bit-error robustness for energy- efficient multi-agent autonomous systems,
Z. Wan et al. , “Mulberry: Enabling bit-error robustness for energy- efficient multi-agent autonomous systems,” in Proc. ASPLOS, 2024
2024
-
[43]
Greentpu: Improving timing error resilience of a near- threshold tensor processing unit,
P. Pandey et al., “Greentpu: Improving timing error resilience of a near- threshold tensor processing unit,” in Proc. DAC, 2019
2019
-
[44]
Read: Reliability-enhanced accelerator dataflow opti- mization using critical input pattern reduction,
Z. Zhang et al. , “Read: Reliability-enhanced accelerator dataflow opti- mization using critical input pattern reduction,” in Proc. ICCAD, 2023
2023
-
[45]
Sparse dnns with improved adversarial robustness,
Y . Guo et al., “Sparse dnns with improved adversarial robustness,” Proc. NeurIPS, 2018
2018
-
[46]
Reliability evaluation of pruned neural networks against errors on parameters,
Z. Gao et al., “Reliability evaluation of pruned neural networks against errors on parameters,” in Proc. DFT, 2020
2020
-
[47]
Understanding structural vulnerability in graph convo- lutional networks,
L. Chen et al., “Understanding structural vulnerability in graph convo- lutional networks,” in Proc. IJCAI, 2021
2021
-
[48]
Link prediction based on graph neural net- works,
M. Zhang and Y . Chen, “Link prediction based on graph neural net- works,” Proc. NeurIPS, 2018
2018
-
[49]
Evaluating graph neural networks for link prediction: Current pitfalls and new benchmarking,
J. Li et al. , “Evaluating graph neural networks for link prediction: Current pitfalls and new benchmarking,” Proc. NeurIPS, 2024
2024
-
[50]
Birds of a feather: Homophily in social networks,
M. McPherson et al., “Birds of a feather: Homophily in social networks,” Annual review of sociology , 2001
2001
-
[51]
Principal neighbourhood aggregation for graph nets,
G. Corso et al. , “Principal neighbourhood aggregation for graph nets,” Proc. NeurIPS, 2020
2020
-
[52]
Graph attention networks,
P. Veli ˇckovi´c et al. , “Graph attention networks,” arXiv preprint arXiv:1710.10903, 2017
2017 arXiv
-
[53]
Revisiting semi-supervised learning with graph embed- dings,
Z. Yang et al., “Revisiting semi-supervised learning with graph embed- dings,” in Proc. ICML, 2016
2016
-
[54]
Pubmed dataset
“Pubmed dataset.” https://pubmed.ncbi.nlm.nih.gov/download/, [Online; accessed 01-Oct-2024]
2024
-
[55]
Subgraph matching kernels for attributed graphs,
N. Kriege and P. Mutzel, “Subgraph matching kernels for attributed graphs,” in Proc. ICML, 2012
2012
-
[56]
Protein function prediction via graph kernels,
K. M. Borgwardt et al., “Protein function prediction via graph kernels,” Bioinformatics, pp. i47–i56, 06 2005
2005
-
[57]
The network data repository with interactive graph analytics and visualization,
R. A. Rossi and N. K. Ahmed, “The network data repository with interactive graph analytics and visualization,” in AAAI, 2015
2015
-
[58]
Microsoft academic graph: When experts are not enough,
K. Wang et al. , “Microsoft academic graph: When experts are not enough,” Quantitative Science Studies , 2020
2020
-
[59]
The extreme classification repository: Multi-label datasets and code,
K. Bhatia et al. , “The extreme classification repository: Multi-label datasets and code,” 2016
2016
-
[60]
Towards sparsification of graph neural networks,
H. Peng et al. , “Towards sparsification of graph neural networks,” in Proc. ICCD, 2022
2022
-
[61]
Hydra: Pruning adversarially robust neural networks,
V . Sehwag et al., “Hydra: Pruning adversarially robust neural networks,” Proc. NeurIPS, 2020
2020
-
[62]
Sparsity winning twice: Better robust generalization from more efficient training,
T. Chen et al. , “Sparsity winning twice: Better robust generalization from more efficient training,” in Proc. ICLR, 2022
2022
-
[63]
Time and space complexity of graph convolutional networks,
D. Blakely et al. , “Time and space complexity of graph convolutional networks,” 2021
2021
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.