Skip to content
AI.info

Research

Robust Graph Condensation via Classification Complexity Mitigation

Robust Graph Condensation via Classification Complexity Mitigation Overview Research area: Graph machine learning — specifically graph condensation (GC), the compression of large graphs into small syn

arXiv
2510.26451
Published
2025-10-30
Authors
Jiayi Luo, Qingyun Sun, Beining Yang, Haonan Yuan, Xingcheng Fu, Yanbiao Ma, Jianxin Li, Philip S. Yu

AI summary

Robust Graph Condensation via Classification Complexity Mitigation

Overview

Research area: Graph machine learning — specifically graph condensation (GC), the compression of large graphs into small synthetic graphs for efficient Graph Neural Network (GNN) training, and the robustness of that compression when the source graph is corrupted.

Technical level: Advanced. The paper combines classification complexity theory, differential geometry of data manifolds (intrinsic dimension, Gaussian curvature, Ricci curvature, Wasserstein distance), and adversarial attack benchmarks.

Scope: The paper diagnoses why graph condensation loses accuracy under adversarial attacks and proposes a manifold-geometry-based framework, MRGC, that defends condensation against structural, feature, and label corruption.

What This Paper Is About

Graph condensation produces a small synthetic graph on which GNNs can be trained to match the accuracy of GNNs trained on a much larger original graph. Existing methods assume the original graph is clean, and the authors show that when that graph is attacked, the condensed graph degrades sharply. The paper's goal is to explain this failure through the lens of classification complexity and to build a condensation framework that preserves the complexity-reducing property of GC even when features, structure, and labels are all corrupted.

Key Contributions

  1. An empirical and theoretical diagnosis of GC robustness. The authors demonstrate that GC inherently reduces the classification complexity of a graph, that this property is what makes GC effective, and that adversarial attacks on the original graph reverse it. They formalize this with Theorem 1 (ID(G') < ID(G)) and Theorem 2 (ID(G') < ID(G'*), where G'* is condensed from an attacked graph).

  2. Evidence that existing robust graph learning does not solve the problem. Two toy cases on Cora with GCond — using MedianGCN as the GC backbone, and training MedianGCN on the condensed graph — both fail to help and can perform worse than standard GC.

  3. A geometry-based framework, MRGC (Manifold-constrained Robust Graph Condensation), consisting of three plug-and-play modules added to an existing GC backbone: Intrinsic Dimension Manifold Regularization, Curvature-Aware Manifold Smoothing, and Class-Wise Manifold Decoupling.

  4. The first study of GC robustness where features, structure, and labels can all be corrupted, with extensive experiments across five datasets, three condensation ratios per dataset, and varying attack budgets.

Main Findings

  • GC lowers classification complexity, and attacks reverse that: Using three metrics — Intrinsic Dimension, Fisher's Discriminant Ratio, and the Fraction of Hyperspheres Covering Data — the authors report an average reduction of 89.25% in these metrics after GC. Under adversarial attacks, the condensed graph shows an average increase of 547.54% across all metrics.

  • Robust GNNs do not transfer to robust GC: In the Cora toy cases (ratio 2.6%), both integrating MedianGCN as the GC backbone and training MedianGCN on the condensed graph performed worse than standard GCond, attributed to attention-like mechanisms that already perform poorly in clean GC settings.

  • MRGC wins across condensation ratios under poisoning attacks: In Table 1, MRGC achieves the best result on every dataset and ratio except Ogbn-arxiv at ratios of 0.05% and 0.50%. Selected results: Cora at 1.30% ratio 77.43 ±0.32 (next best GCond(+K) 71.79 ±0.51); Cora at 2.60% 76.72 ±0.76; Cora at 5.20% 74.40 ±0.29; CiteSeer at 0.90% 65.12 ±0.69; PubMed at 0.08% 74.85 ±0.34; DBLP at 0.11% 65.11 ±1.26; Ogbn-arxiv at 0.05% 59.38 ±0.58.

  • Trajectory-matching methods can lead on Ogbn-arxiv: GEOM is reported as superior on Ogbn-arxiv at condensation ratios of 0.25% and 0.50%, which the authors explain by trajectory-matching methods (SFGC, GEOM) being significantly stronger than gradient-matching methods on the clean Ogbn-Arxiv dataset. GEOM nonetheless shows poor robustness on other datasets.

  • Advantage holds across attack budgets: In Table 2, MRGC consistently outperforms all baselines across all datasets and attack budget variations. On CiteSeer, MRGC improves approximately 3.98% and 4.75% over the runner-up at label perturbation ratios of 30% and 40% respectively. Representative values include Cora at feature budget F.20% 74.79 ±1.12 and Cora at label budget L.30% 70.47 ±1.19.

  • RobGC is attack-type dependent: RobGC performs well under structure attacks but degrades as the intensity of feature and label attacks increases, consistent with its dependence on structure learning and label propagation.

  • Preprocessing-based denoising is of limited use: GCond with SVD low-rank approximation (+S), Jaccard-similarity edge removal (+J), and k-nearest-neighbor augmentation (+K, k=3) all have limited effectiveness, because they assume node features and labels are clean.

  • Many baselines fail outright at scale: On PubMed and DBLP at the lowest ratios, several methods exceed the 24 GB memory limit (OOM), and on Ogbn-arxiv RobGC exceeds a 24-hour time limit (OOT).

  • Gradient-matching GC is generally more robust than trajectory-matching and distribution-matching GC methods.

Methodology in Plain English

The authors start from an observation: condensation shrinks a graph's "classification complexity" — the intrinsic dimension of the data, the complexity of the boundaries between classes, and the ambiguity between classes. Attacks push all three back up.

They address each factor with one module:

  1. Intrinsic Dimension Manifold Regularization constrains the condensed graph to lie on a low-dimensional manifold. Since the intrinsic dimension cannot be computed directly from discrete samples, they approximate it with a Laplacian operator and relate manifold volume to the determinant of the covariance of node representations, giving a differentiable regularizer L_dim.

  2. Curvature-Aware Manifold Smoothing flattens class boundaries. For each node, the method fits a quadratic hypersurface to its local neighborhood, derives a closed-form Gaussian curvature (Proposition 1), and weights each node's curvature by its Ricci curvature under the Ollivier definition, so that bridge nodes at community boundaries count more. That yields L_cur.

  3. Class-Wise Manifold Decoupling reduces class ambiguity by penalizing the gap between the sum of per-class manifold volumes and the volume of the whole manifold, defined as L_sep.

The total training loss is L = L_GC + αL_dim + βL_cur + γL_sep, where L_GC is the loss of whichever GC backbone is used; MRGC is presented as plug-and-play. Node features in the condensed graph are initialized by randomly selecting non-outlier nodes from the original graph.

Complexity: the dimension module needs O(n'd' + (d')³), Gaussian curvature O(n'((d')⁶ + k)), Ricci curvature O((n')²), and the decoupling module O(c(d')³) where c is the number of classes. PCA is applied to reduce feature dimensionality d' before computing the regularization terms.

Experiments use GCond as the backbone, five datasets (Cora, CiteSeer, PubMed, DBLP, Ogbn-arxiv), PRBCD for structure poisoning, normally sampled noise for features, and uniform label flipping, with the budget set as a percentage of edges (structure) or training nodes (feature, label). Hyperparameters α, β, γ are grid-searched from 1e-3 to 1e2 over five logarithmic steps; all experiments are run five times and report mean and standard deviation on a single NVIDIA GeForce RTX 3090 24GB GPU.

Why This Matters

Impact on research. Graph condensation is increasingly used to make GNN training cheap, but prior robustness work was limited to RobGC's defense against structure attacks. This paper reframes robustness as a geometric property — the classification complexity reduction that GC performs — which gives the field a measurable target rather than a purely empirical one, and it extends evaluation to feature and label corruption.

Real-world applications (the paper explicitly mentions neural architecture search and graph continual learning as GC use cases):

  • Anomaly and fraud detection on contaminated graphs, where attacker-controlled edges, features, or labels are guaranteed rather than hypothetical.
  • Large-scale recommendation and social networks, where condensing a billion-edge interaction graph for fast model iteration requires trust in the compressed artifact.
  • Neural architecture search over graphs, a use case named in the paper, where a poisoned search graph could mislead architecture selection.
  • Graph continual learning, also named in the paper, where corrupted incoming data could degrade stored condensed representations across tasks.

Industry relevance. Teams that compress large production graphs to cut GPU costs need the compressed graph to behave like the original even when the source data is noisy or adversarially manipulated. The paper adds regularization modules rather than a new architecture, which makes them deployable on top of an existing GC pipeline.

Future Directions

  • Extending MRGC to more GC families. The experiments use GCond (gradient matching) as the backbone. The authors state MRGC is compatible with most existing GC methods, but compatibility with trajectory-matching and distribution-matching methods, where GEOM already leads on clean Ogbn-arxiv, is not established.

  • Characterizing the trade-off on datasets where GC backbones differ sharply. The Ogbn-arxiv result where GEOM wins at ratios of 0.25% and 0.50% raises the question of whether robustness gains and clean-accuracy gains can be obtained simultaneously.

  • Reducing the curvature computation cost. The Gaussian curvature term costs O(n'((d')⁶ + k)), which is quartic-to-sextic in the reduced feature dimension. Making this affordable without PCA pre-reduction is an open engineering question.

  • Broadening the attack model. The paper covers structure (PRBCD), feature, and label perturbations under poisoning. Other threat models — adaptive attacks aware of the regularizers, or evasion rather than poisoning — are not reported.

Target Audience

Researchers and graduate students in graph representation learning and adversarial robustness who already understand GNN training and condensation; practitioners building GNN pipelines on large or untrusted graphs; and readers interested in the geometry of data manifolds applied to graph compression. The paper assumes comfort with differential geometry terminology (Gaussian and Ricci curvature, Wasserstein distance, intrinsic dimension) and with the standard GC benchmark setup, so it is best suited to readers with prior exposure to graph condensation literature.

Authors’ abstract

Graph condensation (GC) has gained significant attention for its ability to synthesize smaller yet informative graphs. However, existing studies often overlook the robustness of GC in scenarios where the original graph is corrupted. In such cases, we observe that the performance of GC deteriorates significantly, while existing robust graph learning technologies offer only limited effectiveness. Through both empirical investigation and theoretical analysis, we reveal that GC is inherently an intrinsic-dimension-reducing process, synthesizing a condensed graph with lower classification complexity. Although this property is critical for effective GC performance, it remains highly vulnerable to adversarial perturbations. To tackle this vulnerability and improve GC robustness, we adopt the geometry perspective of graph data manifold and propose a novel Manifold-constrained Robust Graph Condensation framework named MRGC. Specifically, we introduce three graph data manifold learning modules that guide the condensed graph to lie within a smooth, low-dimensional manifold with minimal class ambiguity, thereby preserving the classification complexity reduction capability of GC and ensuring robust performance under universal adversarial attacks. Extensive experiments demonstrate the robustness of \ModelName\ across diverse attack scenarios.

Read the original paper