Search papers, labs, and topics across Lattice.
FairGC addresses the problem of unfairness amplification in graph condensation by explicitly incorporating fairness constraints into the distillation process. It uses a Distribution-Preserving Condensation module to align the joint distributions of labels and sensitive attributes, a Spectral Encoding module to maintain global structural patterns, and a Fairness-Enhanced Neural Architecture to promote equitable predictions. Experiments on real-world datasets demonstrate that FairGC achieves a better trade-off between accuracy and fairness compared to existing graph condensation methods.
Graph condensation, while shrinking massive datasets for GNN training, can inadvertently amplify biases – until now.
Graph condensation (GC) has become a vital strategy for scaling Graph Neural Networks by compressing massive datasets into small, synthetic node sets. While current GC methods effectively maintain predictive accuracy, they are primarily designed for utility and often ignore fairness constraints. Because these techniques are bias-blind, they frequently capture and even amplify demographic disparities found in the original data. This leads to synthetic proxies that are unsuitable for sensitive applications like credit scoring or social recommendations. To solve this problem, we introduce FairGC, a unified framework that embeds fairness directly into the graph distillation process. Our approach consists of three key components. First, a Distribution-Preserving Condensation module synchronizes the joint distributions of labels and sensitive attributes to stop bias from spreading. Second, a Spectral Encoding module uses Laplacian eigen-decomposition to preserve essential global structural patterns. Finally, a Fairness-Enhanced Neural Architecture employs multi-domain fusion and a label-smoothing curriculum to produce equitable predictions. Rigorous evaluations on four real-world datasets, show that FairGC provides a superior balance between accuracy and fairness. Our results confirm that FairGC significantly reduces disparity in Statistical Parity and Equal Opportunity compared to existing state-of-the-art condensation models. The codes are available at https://github.com/LuoRenqiang/FairGC.