Dataset Condensation Atlas

Settings · other modalities

Graphs

Graph condensation: synthesize a small graph (or a few small graphs) on which a graph neural network trains to the accuracy it reaches on the original large graph.

One synthetic sample

Synthetic node features and labels with a synthetic or omitted adjacency structure.

Standard evaluation

Train a GNN (GCN, SGC, APPNP, …) on the condensed graph and evaluate node classification on the original graph (Cora, Citeseer, ogbn-arxiv, Flickr, Reddit) or graph classification on TU datasets.

Budget

condensation ratio (fraction of nodes kept)

Benchmarks

Cora · Citeseer · ogbn-arxiv · Flickr · Reddit · TU graph-classification datasets

What is different here

  • Structure must either be synthesized jointly with features or dropped entirely; structure-free condensation shows the latter can work.
  • Matching passes through message passing, so the condensed graph is tied to the propagation scheme.
  • The subfield has its own surveys and benchmarks and is often organized alongside graph sparsification and coarsening.

Comparison pitfalls

  • Transductive and inductive settings, and differing definitions of the condensation ratio, make results hard to compare.

Start with

GCond · DosCond · SFGC · GEOM · GC-Bench · Graph condensation survey

Methods by family 13

A paper appears under every family it belongs to. Oldest first within a family.

Selection

Dataset quantization 1

2023-10

Mirage — Mirage: Model-Agnostic Graph Distillation for Graph Classification

Mridul Gupta, Sahil Manchanda, Hariprasad Kodamana et al. · ICLR 2024notableGraphspaper ↗code ↗

Mirage condenses a graph-classification dataset by decomposing every input graph into the multiset of computation trees a message-passing GNN would build on it, then compressing the (typically skewed) frequency distribution of these computation trees into a concise summary, rather than emulating gradient flows on the full dataset. Because it needs no full-dataset training and no target architecture during distillation, Mirage is unsupervised and architecture-agnostic, and the paper reports better generalization accuracy, compression and distillation efficiency than prior graph distillation baselines.

Bi-level performance matching

Kernel and closed-form inner solvers 2

2023-01

KIDD — Kernel Ridge Regression-Based Graph Dataset Distillation

Zhe Xu, Yuzhong Chen, Menghai Pan · KDD 2023Graphspaper ↗code ↗

KIDD (Kernel ridge regression-based graph Dataset Distillation) replaces the inner GNN training loop with kernel ridge regression, using a purpose-built graph kernel (LiteGNTK, related to the random-walk graph kernel) so the condensation objective has a closed-form solution. The paper reports strong empirical performance across seven real-world graph datasets, in some cases with condensed graphs outperforming the full training set using as few as 1.65% of the original training graphs.

2023-06

SFGC — Structure-free Graph Condensation: From Large-scale Graphs to Condensed Graph-free Data

Xin Zheng, Miao Zhang, Chunyang Chen et al. · NeurIPS 2023notableGraphspaper ↗code ↗

SFGC drops the joint node-and-structure optimization of prior graph condensation methods and instead distills only a condensed node set with topology reduced to the identity matrix (graph-free data), implicitly folding structural information into the node attributes; a training-trajectory meta-matching scheme aligns the long-term GNN learning behavior between the original and condensed graph, and a closed-form graph neural feature score dynamically evaluates candidate condensed data during training. The paper reports superior performance across different condensation ratios versus prior graph condensation baselines.

Surrogate matching

Gradient matching 5

2021-10

GCond — Graph Condensation for Graph Neural Networks

Wei Jin, Lingxiao Zhao, Shichang Zhang et al. · ICLR 2022landmarkGraphspaper ↗code ↗

Introduces GCond, which condenses a large graph into a small synthetic graph and features by imitating the GNN training trajectory on the original graph through a gradient-matching loss, jointly synthesizing node features and structure so that GNNs trained on the condensed graph transfer across architectures; reports approximating original test accuracy by 95.3% on Reddit, 99.8% on Flickr and 99.0% on Citeseer while shrinking graph size by over 99.9%.

2022-06

DosCond — Condensing Graphs via One-Step Gradient Matching

Wei Jin, Xianfeng Tang, Haoming Jiang et al. · KDD 2022Graphspaper ↗code ↗

Proposes DosCond, a one-step gradient-matching scheme for graph condensation that models the discrete graph structure probabilistically and matches gradients for a single step instead of unrolling multi-step training; reports 90% graph-size reduction while retaining up to 98% of original performance, about 15x faster than multi-step gradient matching.

2024-02

CTRL — Two Trades is not Baffled: Condensing Graph via Crafting Rational Gradient Matching

Tianle Zhang, Yuchen Zhang, Kun Wang et al. · arXiv 2024Graphspaper ↗code ↗

CTRL observes that prior graph condensation methods match only the direction of gradients, which lets the condensed graph's training trajectory drift from the real graph's and accumulates error (worsened by condensation/evaluation-phase mismatch); it corrects this with an optimized starting point closer to the real feature distribution and a more refined gradient-matching strategy. The paper reports that CTRL neutralizes the impact of accumulated errors on condensed-graph performance, with experiments across multiple graph datasets and downstream tasks.

2024-03

Graph Data Condensation via Self-expressive Graph Structure Reconstruction

Zhanyu Liu, Chaolv Zeng, Guanjie Zheng · KDD 2024Graphspaper ↗code ↗

GCSR (GCSR) condenses a graph by reconstructing an interpretable, closed-form self-expressive adjacency for the condensed nodes (each node reconstructed from a sparse combination of the others in its feature subspace) instead of learning a structure generator or dropping structure entirely, while node features are refined by multi-step gradient matching against the full graph's training trajectories. The paper reports the best average cross-architecture GNN accuracy among graph condensation baselines, attributing the gain to keeping explicit structural information.

2025-11

SR-GM — Decoupling and Damping: Structurally-Regularized Gradient Matching for Multimodal Graph Condensation

Lian Shen, Zhendan Chen, Meijia Song et al. · arXiv 2025Graphspaper ↗

Condenses multimodal graphs, where node features integrate sources such as vision and text, by decoupling per-modality gradients before matching so that semantic misalignment between modalities does not create gradient conflicts, and adds a structural damping regularizer that suppresses gradient noise the message-passing mechanism would otherwise amplify through the topology. Reports state-of-the-art results and cross-architecture generalization on four multimodal graph datasets.

Surrogate matching

Trajectory matching 2

2023-06

SFGC — Structure-free Graph Condensation: From Large-scale Graphs to Condensed Graph-free Data

Xin Zheng, Miao Zhang, Chunyang Chen et al. · NeurIPS 2023notableGraphspaper ↗code ↗

SFGC drops the joint node-and-structure optimization of prior graph condensation methods and instead distills only a condensed node set with topology reduced to the identity matrix (graph-free data), implicitly folding structural information into the node attributes; a training-trajectory meta-matching scheme aligns the long-term GNN learning behavior between the original and condensed graph, and a closed-form graph neural feature score dynamically evaluates candidate condensed data during training. The paper reports superior performance across different condensation ratios versus prior graph condensation baselines.

2024-02

GEOM — Navigating Complexity: Toward Lossless Graph Condensation via Expanding Window Matching

Yuchen Zhang, Tianle Zhang, Kai Wang et al. · ICML 2024notableGraphspaper ↗code ↗

Identifies that the prior state-of-the-art graph trajectory-matching method supplies biased and restricted supervision signals from the original graph, limiting both the scale and efficacy of the condensed graph, and proposes GEOM, which trains expert trajectories with a curriculum-learning strategy for more diverse supervision and transfers that information into the condensed graph with an expanding-window matching scheme; reports state-of-the-art results toward lossless graph condensation across several datasets.

Surrogate matching

Distribution and feature matching 3

2022-06

GCDM — Graph Condensation via Receptive Field Distribution Matching

Mengyang Liu, Shanchuan Li, Xinshi Chen et al. · arXiv 2022Graphspaper ↗

Proposes GCDM, which views a graph as a distribution of receptive fields and condenses it by matching that distribution between the real and synthetic graphs with a maximum-mean-discrepancy loss; reports strong cross-architecture generalization to a variety of GNN models and substantially faster condensation than earlier graph condensation methods.

2023-10

GDEM — Graph Distillation with Eigenbasis Matching

Yang Liu, Deyu Bo, Chuan Shi · ICML 2024notableGraphspaper ↗code ↗

Proposes GDEM for graph distillation, which aligns the eigenbasis and node features of the synthetic and real graphs directly and replicates the real graph's spectrum, instead of relying on GNN-derived gradients, representations or trajectories that bias the synthetic spectrum and tie the result to one GNN architecture; adds a discrimination constraint to balance effectiveness and generalization, reporting state-of-the-art results with strong cross-architecture generalization and a theoretical guarantee that the synthetic graphs are restricted spectral approximations of the real ones.

2024-06

LQM — Dataset Condensation with Latent Quantile Matching

Wei Wei, Tom De Schepper, Kevin Mets · CVPR 2024 WorkshopGraphspaper ↗

Shows that matching only the mean of latent feature embeddings, as in standard distribution matching, lets very different distributions appear identical, and proposes Latent Quantile Matching, which instead matches the quantiles of the embedding distributions to minimize a goodness-of-fit statistic; matches or beats prior distribution-matching methods on image and graph-structured datasets and improves continual graph learning.

Setting-specific methods

2023-10

SGDD — Does Graph Distillation See Like Vision Dataset Counterpart?

Beining Yang, Kai Wang, Qingyun Sun et al. · NeurIPS 2023notableGraphspaper ↗code ↗

Analyzes graph condensation methods in the spectral domain and finds that prior approaches induce a substantial Laplacian Energy Distribution (LED) shift between synthetic and real graphs, hurting cross-architecture generalization and tasks like anomaly detection and link prediction; proposes SGDD, which broadcasts the original graph's structural information into synthetic-graph generation to reduce this shift, reporting 98.6% of full-graph accuracy on YelpChi at a 1000x size reduction and 17.6-31.4% smaller LED shifts across nine datasets.

Analyses, benchmarks, surveys and applications

2026-05

Graph condensation needs a reset — Position: Graph Condensation Needs a Reset -- Move Beyond Full-dataset Training and Model-Dependence

Mridul Gupta, Samyak Jain, Vansh Ramani et al. · arXiv 2026notableGraphspaper ↗

A position paper arguing that mainstream graph condensation contradicts its own goal: gradient-matching methods must train on the full graph to produce the condensed one, generalize poorly across GNN architectures, and are judged by node compression ratios that ignore real resource savings and condensation overhead. It calls for lightweight, architecture-agnostic methods and resource-based evaluation.

2024-06

GC-Bench — GC-Bench: An Open and Unified Benchmark for Graph Condensation

Qingyun Sun, Ziying Chen, Beining Yang et al. · NeurIPS 2024notableGraphspaper ↗code ↗

Introduces GC-Bench, a benchmark that systematically evaluates 12 graph-condensation methods on node- and graph-level tasks across 12 datasets along effectiveness, transferability and complexity, and releases a reusable library for training and evaluating graph condensation methods.

2024-06

GC4NC — GC4NC: A Benchmark Framework for Graph Condensation on Node Classification with New Insights

Shengbo Gong, Juntong Ni, Noveen Sachdeva et al. · NeurIPS 2025 Datasets and Benchmarks TrackGraphspaper ↗code ↗

Introduces GC4NC, a benchmark that evaluates graph-condensation methods for node classification across performance, efficiency, privacy preservation, denoising ability, NAS effectiveness and transferability, reporting new insights into which design choices drive condensed-graph quality along these dimensions.

2024-05

GCondenser — GCondenser: Benchmarking Graph Condensation

Yilun Liu, Ruihong Qiu, Zi Huang · arXiv 2024Graphspaper ↗code ↗

Introduces GCondenser, the first large-scale graph-condensation benchmark with a standardized condensation-validation-evaluation pipeline that extends to new methods and datasets, and uses it to comprehensively compare mainstream graph-condensation methods.

2024-02

A Survey on Graph Condensation

Hongjia Xu, Liangliang Zhang, Yao Ma et al. · arXiv 2024Graphspaper ↗code ↗

Surveys graph condensation, giving a formal problem definition and a taxonomy that splits methods by optimization objective into three types and by output into graph-modifying versus fully synthetic approaches, and reviews the datasets and evaluation metrics used in the field.

2024-01

Graph reduction survey — A Comprehensive Survey on Graph Reduction: Sparsification, Coarsening, and Condensation

Mohammad Hashemi, Shengbo Gong, Juntong Ni et al. · IJCAI 2024Graphspaper ↗code ↗

This survey unifies graph sparsification, coarsening and condensation under one definition, introduces a hierarchical taxonomy of the challenges each addresses, reviews the technical details and practical applications of methods in all three families, and lays out research directions for keeping graph reduction effective as graphs continue to grow.

2024-01

Graph condensation survey — Graph Condensation: A Survey

Xinyi Gao, Junliang Yu, Tong Chen et al. · TKDE 2025Graphspaper ↗code ↗

This survey organizes graph condensation research into five categories aligned with evaluation criteria (effectiveness, generalization, efficiency, fairness, robustness), examines optimization strategies and condensed-graph generation as the two core components across methods, empirically compares representative methods against the five criteria, and surveys applications and open-source libraries in the field.

2023-09

CaT — CaT: Balanced Continual Graph Learning with Graph Condensation

Yilun Liu, Ruihong Qiu, Zi Huang · ICDM 2023Graphspaper ↗code ↗

Proposes CaT for continual graph learning: before each model update, the newly arrived graph is condensed into a small synthetic replay graph stored in a Condensed Graph Memory alongside condensed replays of past graphs, and the model is updated by training directly on this memory (Training in Memory) rather than on the full incoming graph, which addresses the scale imbalance between new and historical data; reports superior effectiveness and efficiency over replay-based continual graph learning baselines on four benchmarks.

2023-01

Sachdeva & McAuley survey — Data Distillation: A Survey

Noveen Sachdeva, Julian McAuley · TMLR 2023coreGraphsOther datapaper ↗

This survey presents a formal framework for data distillation with a detailed taxonomy of existing approaches, and covers the method across three data modalities: images, graphs, and user-item interactions (recommender systems), identifying current challenges and future research directions for each.

2023-01

Fair Graph Distillation

Qizhang Feng, Zhimeng Jiang, Ruiquan Li et al. · NeurIPS 2023Graphspaper ↗

Shows that GNNs trained on graphs condensed by existing graph-distillation methods can exhibit more severe group-fairness problems than GNNs trained on the original graph, then proposes a fair graph-distillation approach that generates small distilled graphs that are both fair and informative.