๐ค AI Summary
Existing spatial Graph Neural Network (GNN)-based fraud detection methods often prune heterogeneous neighbors to satisfy the homophily assumption, leading to graph topology distortion and increased prediction uncertainty. To address this, we propose the Dual-channel Heterogeneity-aware Message Passing (DHMP) frameworkโthe first GNN architecture to explicitly decouple homogeneous and heterogeneous subgraphs. DHMP introduces a heterogeneity separation module, a shared-weight dual-channel message propagation mechanism, and a label-aware adaptive sampling strategy, enabling independent modeling and dynamic fusion of multi-frequency signals. Crucially, DHMP preserves the original graph structure while significantly enhancing discriminative capability for heterogeneous fraud patterns. Extensive experiments on three real-world e-commerce and social network fraud datasets demonstrate that DHMP consistently outperforms state-of-the-art methods, validating the critical importance of explicit heterogeneity modeling for both detection accuracy and robustness.
๐ Abstract
Fraudulent activities have significantly increased across various domains, such as e-commerce, online review platforms, and social networks, making fraud detection a critical task. Spatial Graph Neural Networks (GNNs) have been successfully applied to fraud detection tasks due to their strong inductive learning capabilities. However, existing spatial GNN-based methods often enhance the graph structure by excluding heterophilic neighbors during message passing to align with the homophilic bias of GNNs. Unfortunately, this approach can disrupt the original graph topology and increase uncertainty in predictions. To address these limitations, this paper proposes a novel framework, Dual-channel Heterophilic Message Passing (DHMP), for fraud detection. DHMP leverages a heterophily separation module to divide the graph into homophilic and heterophilic subgraphs, mitigating the low-pass inductive bias of traditional GNNs. It then applies shared weights to capture signals at different frequencies independently and incorporates a customized sampling strategy for training. This allows nodes to adaptively balance the contributions of various signals based on their labels. Extensive experiments on three real-world datasets demonstrate that DHMP outperforms existing methods, highlighting the importance of separating signals with different frequencies for improved fraud detection. The code is available at https://github.com/shaieesss/DHMP.