EDBT 2026 Demo / reviewers in the wild / expert
Venus Haghighi
dblp:216/6867
· DBLP profile ↗
8ranked-venue papers in the field
5as first author
8since 2021 · last 2026
0000-0002-5036-8984ORCID · verified
Domains — venue-derived; a paper can count in several
Data Mining & Knowledge Discovery · 5 (4 first)Information Retrieval & Web Search · 3 (1 first)
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2026 | Beyond Smoothing: A Discriminative Enhanced Aggregation Graph Neural Network for Camouflaged Fraud DetectionabstractGraph Neural Networks (GNNs) have been widely used for learning representations of graph-structured data, achieving remarkable success in various graph-related Web applications, such as fraud detection. To generate node representations, GNN-based models operate message-passing mechanisms that aim to smooth the learned representations in a local neighborhood. However, fraudsters increasingly employ sophisticated “camouflage” tactics, exhibiting normal behaviors by strategically forming numerous connections with legitimate entities. As a result, existing GNN-based methods struggle to effectively tackle such fraudulent activities due to their reliance on homophily-based message-passing architectures. These methods fail to generate discriminative representations, which is crucial for distinguishing fraudsters from benign entities. To address this problem, we propose a novel Discriminative Enhanced Aggregation Graph Neural Network-based FraudDEtectioNMoDel (DEFEND) . DEFEND incorporates tailored discriminative mechanisms that strengthen representation learning at two complementary levels: (i) intra-relation and (ii) inter-relation. While prior approaches primarily focus on intra-relation patterns and overlook inter-relation information, DEFEND integrates both to capture subtle inconsistencies in fraudster behavior. Specifically, an edge discriminating mechanism classifies neighborhoods into homophily or heterophily-based views by leveraging node attributes and structural characteristics, and a camouflage-aware dual-channel aggregation module captures different frequencies of information tailored to these views to generate rich intra-relation node representations. While prior approaches typically rely on intra-relation information within each relation type, they overlook the discriminative signals that arise from correlations across different relations. In DEFEND, we observe that fraudsters often avoid forming consistent cross-relation interactions, whereas benign entities tend to establish them more frequently. This discrepancy creates a distinctive behavioral pattern. To capture this, we introduce an inter-relation correlation mechanism that correlates a node’s intra-relation representations across multiple relation types using an attention-based weighting scheme. By adaptively weighing the importance of each relation and integrating their contributions, DEFEND enhances the discriminative power of node representations. This mechanism enables the model to leverage both intra-relation and inter-relation levels of information, leading to richer and more robust representations for fraud detection. Finally, a multi-relation combination module aggregates information across different relation types, emphasizing the importance of node–relation pairs in the embedding. We conducted extensive experiments on two real-world fraud datasets to demonstrate the effectiveness of our proposed model, and our results show that DEFEND outperforms the state-of-the-art baselines. The source codes and datasets of our work are available at https://github.com/VenusHaghighi/DEFEND . Venus Haghighi, Behnaz Soltani, Lina Yao 0001, Jia Wu 0001, Jian Yang 0001, Quan Z. Sheng |
ACM Trans. Knowl. Discov. Data | 1 |
| 2025 | STGS: Spatio-temporal Graph Sparsification Using Reinforcement LearningabstractSpatio-temporal graphs encode dynamic interactions across space and time, but their size and complexity pose challenges for analysis and computation. Graph sparsification provides an effective solution to these issues by reducing the number of edges while preserving the essential structural and dynamic properties of the network. This reduction is crucial for enhancing the interpretability of complex graphs, revealing hidden patterns, and enabling more efficient computational analysis. However, real-world graphs often exhibit continuous spatial and temporal evolution, which most existing sparsification algorithms, primarily designed for static graphs, fail to address. We introduce STGS (Spatio-Temporal Graph Sparsification), a reinforcement learning-based framework for sparsifying spatio-temporal graphs. By learning to prune edges while preserving key spatio-temporal patterns, STGS enables efficient analysis of evolving systems. Experiments on real-world datasets demonstrate that STGS outperforms existing methods in both structural preservation and downstream forecasting tasks. Nasrin Shabani, Amin Beheshti, Yuankai Qi, Venus Haghighi, Jin Foo, Jia Wu 0001 |
CIKM | 4 |
| 2025 | FAP: A Foveation-Inspired Adversarial Purification Pipeline for Enhancing Robustness in Mammography ClassificationabstractDeep learning models for medical image analysis demonstrate remarkable diagnostic accuracy but remain highly vulnerable to adversarial perturbations. To address this challenge, we introduce Foveated Adversarial Purification (FAP), a biologically inspired preprocessing pipeline that integrates three core innovations. First, FAP employs eccentricity-adaptive separable Gaussian blurring, where kernel size dynamically adjusts with lesion morphology. This approach mimics the human fovea's acuity gradient, preserves high-frequency details around lesions while suppressing peripheral noise, and reduces GPU memory usage by 40% compared to conventional 2D filtering. Second, FAP introduces gradient-guided fixation sampling with sigmoid-clustered probability, which prioritizes lesion-dense regions consistent with radiologists' diagnostic scanpaths. This mechanism achieves 82% overlap with radiologist-annotated regions of interest, ensuring that preprocessing aligns with clinical saliency rather than arbitrary regions. Third, FAP implements lesion-aware adversarial training, where binary spatial masks confine perturbations to non-diagnostic regions. This preserves lesion fidelity while hardening the classifier against attacks, yielding a certified ℓ2radius of 1.12, exceeding prior defenses. Evaluated across three mammography datasets, FAP achieves substantial robustness improvements: +20.03% absolute accuracy on CMMD (coarse tumors), +16.39% on BREAST (mixed lesions), and maintains baseline performance on CBIS-DDSM (microcalcifications). By aligning computational robustness with biological vision strategies, FAP establishes a clinically interpretable and computationally efficient framework for adversarial defense in medical imaging. The implementation is released in our GitHub repository11https://github.com/ghazallalooha/FAP. Ghazal Lalooha, Wenjie Ruan, Venus Haghighi, Xinshu Li 0001, Quan Z. Sheng |
ICDM | 3 |
| 2025 | Beyond pairwise relationships: a transformer-based hypergraph learning approach for fraud detectionabstractAbstract Fraud detection in online networks has become increasingly challenging as fraudsters adopt sophisticated camouflage tactics to evade detection, making it imperative to combat their deceptive strategies. Graph-based fraud detection has gained significant attention in recent years, reflecting its growing potential to mitigate sophisticated fraudulent activities. The main objective of graph-based fraud detection is to distinguish between fraudsters and normal entities within graphs. While real-world networks contain complex, high-order relationships, existing graph-based fraud detection methods focus solely on pairwise interactions, overlooking non-pairwise relationships and the broader dependencies among entities within fraud graphs. Thus, we highlight the importance of exploring non-pairwise relationships to build a more effective fraud detection model. In this paper, we propose TROPICAL, a novel TRansfOrmer-based hyPergraph LearnIng framework for detecting CAmouflaged maLicious actors in online social networks. To capture comprehensive high-order relations, we construct a hypergraph from the original input graph. However, constructing the hypergraph can be computationally intensive. TROPICAL addresses this challenge by carefully selecting moderate hyperparameters, creating a balance between computational efficiency and effectively capturing high-order relationships. TROPICAL learns node representations by processing multiple hyperedge groups and incorporates positional encodings into the aggregated information to enhance their distinctiveness. The aggregated sequential information is then passed through a transformer encoder, enabling the model to generate rich, high-order representations to detect camouflaged fraudsters. Extensive experiments on two real-world datasets demonstrate TROPICAL’s superior performance compared to the state-of-the-art fraud detection models. The source codes and the datasets of our work are available at https://github.com/VenusHaghighi/TROPICAL . Venus Haghighi, Behnaz Soltani, Nasrin Shabani, Jia Wu 0001, Yang Zhang 0095, Lina Yao 0001, Jian Yang 0001, Quan Z. Sheng |
Knowl. Inf. Syst. | 1 |
| 2024 | DFLStar: A Decentralized Federated Learning Framework with Self-Knowledge Distillation and Participant SelectionabstractFederated learning (FL) is a distributed machine learning paradigm in which clients collaboratively train models in a privacy-preserving manner. While centralized FL (CFL) suffers from single points of failure and performance bottlenecks, decentralized FL (DFL), which depends on inter-client communication, has emerged to eliminate the need of a central entity. However, due to lack of the coordination of a central server, heterogeneous data distribution across clients makes local models in DFL inclined to diverge towards their local objectives, resulting in poor model accuracy. Moreover, each client in DFL needs to communicate with multiple neighbors, yielding a heavy communication load. To tackle these challenges, we propose a novel DFL framework called DFLStar, which can improve DFL from two perspectives. First, to avoid significantly diverging towards local data, DFLStar incorporates self-knowledge distillation to enhance the local model training by assimilating knowledge from the aggregated model. Second, clients in DFLStar identify and only select the most informative neighbors (based on the last layer model similarity) for parameter exchange, thereby minimizing the communication overhead. Our experimental results on two real datasets demonstrate that DFLStar significantly improves both communication overhead and training time compared to traditional DFL algorithms while achieving a specific target accuracy. Furthermore, within a fixed training duration, DFLStar constantly obtains the highest model accuracy compared to the baselines. Behnaz Soltani, Venus Haghighi, Yipeng Zhou, Quan Z. Sheng, Lina Yao 0001 |
CIKM | 2 |
| 2024 | TROPICAL: Transformer-Based Hypergraph Learning for Camouflaged Fraudster DetectionabstractGraph-based fraud detection has attracted increasing attention in recent years, reflecting its growing potential in mitigating sophisticated fraudulent activities. The main objective of graph-based fraud detection is to discern between fraud-sters and normal entities within graphs. As fraudsters adopt increasingly sophisticated camouflage tactics, combating them has become an urgent task. Despite the complex interactions within real-world networks involving high-order relations, ex-isting graph-based fraud detection methods often neglect non-pairwise relationships among entities in graphs. Thus, we empha-size the significance of investigating beyond pairwise relationships for building an effective fraud detection model. In this paper, we propose constructing a hypergraph from the original input graph to encapsulate comprehensive high-order relations and present TROPICAL, a novel TRansfOrmer-based hyPergraph LearnIng for detecting CAmouflaged maLicious actors in online social networks. TROPICAL learns representations by processing different hyperedge groups and incorporates positional encodings into the aggregated information to enhance their distinctiveness. Subsequently, the model feeds the learned aggregated sequential information into the transformer encoder, achieving rich rep-resentations for effective camouflaged fraudster detection. The superiority of TROPICAL is demonstrated through experiments conducted on two real-world datasets, compared against the state-of-the-art fraud detection models. The source codes and datasets of our work are available at https://github.comNenusHaghighi/TROPICAL. Venus Haghighi, Behnaz Soltani, Nasrin Shabani, Jia Wu 0001, Yang Zhang 0095, Lina Yao 0001, Quan Z. Sheng, Jian Yang 0001 |
ICDM | 1 |
| 2024 | Robust Graph Learning Against Camouflaged Malicious Actors
Venus Haghighi, Nasrin Shabani, Behnaz Soltani, Lina Yao 0001, Quan Z. Sheng, Jian Yang 0001, Amin Beheshti |
WISE (2) | 1 |
| 2023 | From Classic GNNs to Hyper-GNNs for Detecting Camouflaged Malicious ActorsabstractGraph neural networks (GNNs), which extend deep learning models to graph-structured data, have achieved great success in many applications such as detecting malicious activities. However, GNN-based models are vulnerable to camouflage behavior of malicious actors, i.e., the performance of existing GNN-based models has been hindered significantly. In this research proposal, we follow two research directions to address this challenge. One direction focuses on enhancing the existing GNN-based models and enabling them to identify both camouflaged and non-camouflaged malicious actors. In this regard, we propose to explore an adaptive aggregation strategy, which empowers GNN-based models to handle camouflage behavior of fraudsters. The other research direction concentrates on leveraging hypergraph neural networks (hyper-GNNs) to learn nodes' representation for more effective identification of camouflaged malicious actors. Venus Haghighi |
WSDM | 1 |