EDBT 2026 Demo / reviewers in the wild / expert
Zhongying Zhao 0001
dblp:04/1381-1
· DBLP profile ↗
20ranked-venue papers in the field
3as first author
17since 2021 · last 2026
0000-0002-5880-0225ORCID · verified
Domains — venue-derived; a paper can count in several
Information Retrieval & Web Search · 6Knowledge Engineering, Semantic Web & Information Systems · 6 (2 first)Database Systems & Data Management · 4 (1 first)Data Mining & Knowledge Discovery · 4
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2026 | ScaleGNN: Towards Scalable Graph Neural Networks via Adaptive High-order Neighboring Feature FusionabstractGraph Neural Networks (GNNs) have demonstrated impressive performance across diverse graph-based tasks by leveraging message passing to capture complex node relationships. However, on large-scale real-world graphs, GNNs face two major challenges: (1) GNNs struggle to ensure scalability and efficiency as repeated aggregation of large neighborhoods incurs significant computational overhead; (2) GNNs suffer from over-smoothing, where excessive propagation makes node representations indistinguishable, hindering model expressiveness. To tackle these, we propose ScaleGNN, which adaptively fuses multi-hop node features for scalable and effective graph learning. We first compute per-hop pure-neighbor matrices to isolate exclusive structural signals, then apply lightweight fusion to balance low- and high-order information, preserving both local detail and global correlations. To curb redundancy and over-smoothing, we introduce Local Contribution Score (LCS)–based masking to prune low-relevance high-order neighbors, and impose learnable sparsity to selectively integrate valuable multi-hop features. Extensive experiments on real-world datasets show that ScaleGNN consistently outperforms state-of-the-art GNNs in both predictive accuracy and computational efficiency. The source code is available at https://github.com/lx970414/ScaleGNN. Xiang Li 0111, Jianpeng Qi, Haobing Liu 0001, Yuan Cao 0005, Guoqing Chao, Zhongying Zhao 0001, Junyu Dong, Xinwang Liu 0002, Yanwei Yu |
WWW | 6 |
| 2026 | A Dual-Channel Contrastive Learning Framework for Anomaly Detection in Dynamic Graph Structures
Runshuo Liu, Chao Li 0022, Zhongying Zhao 0001, Qingtian Zeng |
WWW | 3 |
| 2026 | Mitigating Dynamic Graph Distribution Shifts via Mixture of Variational ExpertsabstractDynamic graph neural networks (DyGNNs) currently struggle with handling distribution shifts that naturally arise when training and test data follow similar but non-identical distributions. As the generation of dynamic graphs is strongly influenced by latent environments, it is critical to investigate their impacts on the generalization behavior of DyGNNs. We therefore establish a connection between the temporal message-passing scheme employed by DyGNNs and their generalization performance under distribution shifts. Our analysis reveals that environment-specific factors misguide the learning process and lead to unsatisfactory out-of-distribution (OOD) generalization. Based on this insight, we propose MoVE, a Mixture of Variational Experts network to mitigate complex distribution shifts in dynamic graphs. MoVE adopts a hierarchical variational architecture that extrapolates latent representations into a mixture of distribution shifts as pseudo-environments. Additionally, we incorporate a Mixture-of-Experts (MoE) framework with a novel training objective that aligns the outputs of different experts to produce invariant representations. Extensive experiments on various dynamic graphs, including both real-world and synthetic datasets, demonstrate that our model significantly outperforms state-of-the-art techniques. Qianyu Song, Chao Li 0022, Yeyu Yan, Zhongying Zhao 0001, Qingtian Zeng |
WWW | 5 |
| 2026 | Every bird has its nest: Boosting graph convolutional network via hierarchical learning
Gen Liu 0001, Chao Li 0022, Zhongying Zhao 0001 |
Inf. Process. Manag. | 4 |
| 2026 | Step Into Balance: A Consistency-Aware and Loose Homophily Guided Generative Method for Class-Imbalanced GraphsabstractGraph Neural Networks (GNNs) have demonstrated remarkable success in various scenarios. However, their impressive performance is under the assumption of class balance (i.e., equal training sample distribution across various categories). Once trapped in the class-imbalanced issue, the GNN-based models typically under-represent the minority ones, resulting in decreased performance compared to balanced graphs. A promising solution is to balance the graph in a generative manner. However, the existing studies overlook the consistency between the synthesized sample and its corresponding class. Furthermore, the homophily assumption (i.e., like attracts like) undermines the topological diversity of graphs, thereby complicating the capability of models to capture the true distribution and boundaries of the categories. To this end, we propose aConsistency-Aware andLooseHomophily guided generative method for class-imbalanced graphs, namelyGraphCALH. Specifically, we design a consistency-aware feature synthesis method to balance the node- wise characteristics and the class- wise commonality for the synthesized samples. Moreover, we devise a loose homophily guided topology modeling method to enrich the topological diversity and simplify category boundaries. The experimental results on eleven class-imbalanced datasets demonstrate that the proposed GraphCALH outperforms ten state-of-the-art methods. The source code of this work will be uploaded to Github. Gen Liu 0001, Zhongying Zhao 0001, Chao Li 0022, Qingtian Zeng, Shuo Wang 0035, Alessandro Brighente, Mauro Conti |
IEEE Trans. Knowl. Data Eng. | 2 |
| 2026 | Multi-Channel Hypergraph Contrastive Learning for Matrix CompletionabstractRating is a typical user’s explicit feedback that visually reflects how much a user likes a related item. The (rating) matrix completion is essentially a rating prediction process, which is also a significant problem in recommender systems. Recently, graph neural networks (GNNs) have been widely used in matrix completion, which captures users’ preferences over items by formulating a rating matrix as a bipartite graph. However, existing methods are susceptible due to data sparsity and long-tail distribution in real-world scenarios. Moreover, the messaging mechanism of GNNs makes it difficult to capture high-order correlations and constraints between nodes, which are essentially useful in recommendation tasks. To tackle these challenges, we propose a M ulti-Channel H ypergraph C ontrastive L earning framework for matrix completion, named MHCL . Specifically, MHCL adaptively learns hypergraph structures to capture high-order correlations between nodes and jointly captures local and global collaborative relationships through attention-based cross-view aggregation. Additionally, to consider the magnitude and order information of ratings, we treat different rating subgraphs as different channels, encourage alignment between adjacent ratings, and further achieve the mutual enhancement between different ratings through multi-channel cross-rating contrastive learning. Extensive experiments on eight publicly available real-world datasets demonstrate that our proposed method significantly outperforms the current state-of-the-art approaches. The source code of our model is available at https://github.com/lx970414/MHCL . Xiang Li 0111, Changsheng Shui, Zhongying Zhao 0001, Junyu Dong, Yanwei Yu |
ACM Trans. Inf. Syst. | 3 |
| 2025 | UMGAD: Unsupervised Multiplex Graph Anomaly DetectionabstractGraph anomaly detection (GAD) is a critical task in graph machine learning, with the primary objective of identifying anomalous nodes that deviate significantly from the majority. This task is widely applied in various real-world scenarios, including fraud detection and social network analysis. However, existing GAD methods still face two major challenges: (1) They are often limited to detecting anomalies in single-type interaction graphs and struggle with multiple interaction types in multiplex heterogeneous graphs. (2) In unsupervised scenarios, selecting appropriate anomaly score thresholds remains a significant challenge for accurate anomaly detection. To address the above challenges, we propose a novel Unsupervised Multiplex Graph Anomaly Detection method, named UMGAD. We first learn multi-relational correlations among nodes in multiplex heterogeneous graphs and capture anomaly information during node attribute and structure reconstruction through graph-masked autoencoder (GMAE). Then, to further extract abnormal information, we generate attribute-level and subgraph-level augmented-view graphs, respectively, and perform attribute and structure reconstruction through GMAE. Finally, we learn to optimize node attributes and structural features through contrastive learning between original-view and augmented-view graphs to improve the model's ability to capture anomalies. Meanwhile, we propose a new anomaly score threshold selection strategy, which allows the model to be independent of ground truth information in real unsupervised scenarios. Extensive experiments on six datasets show that our UMGAD significantly outperforms state-of-the-art methods, achieving average improvements of 12.25% in AUC and 11.29% in Macro-F1 across all datasets. The source code of our model is available at https://github.com/lx970414/UMGAD. Xiang Li 0111, Jianpeng Qi, Zhongying Zhao 0001, Guanjie Zheng, Lei Cao 0004, Junyu Dong, Yanwei Yu |
ICDE | 3 |
| 2025 | NodeHGAE: Node-oriented heterogeneous graph autoencoder
Xiangkai Zhu, Chao Li 0022, Yeyu Yan, Zhongying Zhao 0001, Hua Duan, Qingtian Zeng |
Inf. Sci. | 4 |
| 2025 | Dual-Channel Multiplex Graph Neural Networks for RecommendationabstractEffective recommender systems play a crucial role in accurately capturing user and item attributes that mirror individual preferences. Some existing recommendation techniques have started to shift their focus towards modeling various types of interactive relations between users and items in real-world recommendation scenarios, such as clicks, marking favorites, and purchases on online shopping platforms. Nevertheless, these approaches still grapple with two significant challenges: (1) Insufficient modeling and exploitation of the impact of various behavior patterns formed by multiplex relations between users and items on representation learning, and (2) ignoring the effect of different relations within behavior patterns on the target relation in recommender system scenarios. In this work, we introduce a novel recommendation framework,Dual-ChannelMultiplexGraphNeuralNetwork (DCMGNN), which addresses the aforementioned challenges. It incorporates an explicit behavior pattern representation learner to capture the behavior patterns composed of multiplex user-item interactive relations, and includes a relation chain representation learner and a relation chain-aware encoder to discover the impact of various auxiliary relations on the target relation, the dependencies between different relations, and mine the appropriate order of relations in a behavior pattern. Extensive experiments on three real-world datasets demonstrate that our DCMGNN surpasses various state-of-the-art recommendation methods. It outperforms the best baselines by 10.06% and 12.15% on average across all datasets in terms of Recall@10 and NDCG@10 respectively. The source code of our paper is available athttps://github.com/lx970414/TKDE-DCMGNN. Xiang Li 0111, Chaofan Fu, Zhongying Zhao 0001, Guangjie Zheng, Chao Huang 0001, Yanwei Yu, Junyu Dong |
IEEE Trans. Knowl. Data Eng. | 3 |
| 2025 | Lightweight yet Efficient: An External Attentive Graph Convolutional Network with Positional Prompts for Sequential RecommendationabstractGraph-Based Sequential Recommender Systems (GSRSs) have gained significant research attention due to their ability to simultaneously handle user–item interactions and sequential relationships between items. Current GSRSs often utilize composite or in-depth structures for graph encoding (e.g., the Graph Transformer). Nevertheless, they have high computational complexity, hindering the deployment on resource-constrained edge devices. Moreover, the relative position encoding in Graph Transformer has difficulty in considering the complicated positional dependencies within sequence. To this end, we propose an External Attentive Graph Convolutional Network with Positional Prompts for Sequential Recommendation (EA-GPS) . Specifically, we first introduce an external attentive graph convolutional network that linearly measures the global associations among nodes via two external memory units. Then, we present a positional prompt-based decoder that explicitly treats the absolute item positions as external prompts. By introducing length-adaptive sequential masking and a soft attention network, such a decoder facilitates the model to capture the long-term positional dependencies and contextual relationships within sequences. Extensive experimental results on five real-world datasets demonstrate that the proposed EA-GPS outperforms the state-of-the-art methods. Remarkably, it achieves the superior performance while maintaining a smaller parameter size and lower training overhead. The implementation of this work is publicly available at https://github.com/ZZY-GraphMiningLab/EA-GPS . Jinyu Zhang 0002, Chao Li 0054, Zhongying Zhao 0001 |
ACM Trans. Inf. Syst. | 3 |
| 2024 | Heterogeneous graph knowledge distillation neural network incorporating multiple relations and cross-semantic interactionsabstractIn recent years, the study of real-world graphs has revealed their inherent heterogeneity, prompting growing research interest in heterogeneous graphs. Characterized by diverse node and relation types, heterogeneous graphs have led to the development of heterogeneous graph neural networks , which possess the remarkable ability of modeling such heterogeneity. Consequently, researchers have embraced these networks, applying them in various domains. A prevalent approach is using meta-path based methods in heterogeneous graph neural networks . However, a significant limitation arises from the fact that such methods tend to overlook vital attribute information within intermediate nodes and disregard relevant semantics across various meta-paths. To address the above limitations, we propose a new model named HGNN-MRCS. Specifically, HGNN-MRCS incorporates three key components, i.e., a relation aware module to encapsulate the attribute information of the intermediate nodes; a meta-path aware technique to facilitate learning of semantic information of each meta-path and enable higher-order representation learning ; and a knowledge distillation strategy to learn relevant semantics across meta-paths and fuse them. Experimental results on four real-world datasets demonstrate the superior performance of this work over the SOAT methods. The source codes of this work are available at https://github.com/ZZY-GraphMiningLab/HGNN-MRCS . Jinhu Fu, Chao Li 0022, Zhongying Zhao 0001, Qingtian Zeng |
Inf. Sci. | 3 |
| 2024 | MHGCN+: Multiplex Heterogeneous Graph Convolutional NetworkabstractHeterogeneous graph convolutional networks have gained great popularity in tackling various network analytical tasks on heterogeneous graph data, ranging from link prediction to node classification. However, most existing works ignore the relation heterogeneity with multiplex networks between multi-typed nodes and the different importance of relations in meta-paths for node embedding, which can hardly capture the heterogeneous structure signals across different relations. To tackle this challenge, this work proposes a M ultiplex H eterogeneous G raph C onvolutional N etwork (MHGCN+) for multiplex heterogeneous network embedding. Our MHGCN+ can automatically learn the useful heterogeneous meta-path interactions of different lengths with different importance in multiplex heterogeneous networks through multi-layer convolution aggregation. Additionally, we effectively integrate both multi-relation structural signals and attribute semantics into the learned node embeddings with both unsupervised and semi-supervised learning paradigms. Extensive experiments on seven real-world datasets with various network analytical tasks demonstrate the significant superiority of MHGCN+ against state-of-the-art embedding baselines in terms of all evaluation metrics. The source code of our method is available at: https://github.com/FuChF/MHGCN-plus . Chaofan Fu, Pengyang Yu, Yanwei Yu, Chao Huang 0001, Zhongying Zhao 0001, Junyu Dong |
ACM Trans. Intell. Syst. Technol. | 5 |
| 2023 | HetReGAT-FC: Heterogeneous Residual Graph Attention Network via Feature Completion
Chao Li 0022, Yeyu Yan, Jinhu Fu, Zhongying Zhao 0001, Qingtian Zeng |
Inf. Sci. | 4 |
| 2023 | Self-supervised contrastive learning on heterogeneous graphs with mutual constraints of structure and feature
Zhongying Zhao 0001, Xiangju Li, Chao Li 0022 |
Inf. Sci. | 2 |
| 2023 | Dual Feature Interaction-Based Graph Convolutional NetworkabstractGraphs are widely used to model various practical applications. In recent years, graph convolution networks (GCNs) have attracted increasing attention due to the extension of convolution operation from traditional grid data to graph one. However, the representation ability of current GCNs is undoubtedly limited because existing work fails to consider feature interactions. Toward this end, we propose a Dual Feature Interaction-based GCN. Specifically, it models feature interaction in the aspects of 1) node features where we use Newton's identity to extract different-order cross features implicit in the original features and design an attention mechanism to fuse them; and 2) graph convolution where we capture the pairwise interactions among nodes in the neighborhood to expand a weighted sum operation. We evaluate the proposed model with graph data from different fields, and the experimental results on semi-supervised node classification and link prediction demonstrate the effectiveness of the proposed GCN. The data and source codes of this work are available athttps://github.com/ZZY-GraphMiningLab/DFI-GCN. Zhongying Zhao 0001, Chao Li 0022, Qingtian Zeng, Weili Guan, MengChu Zhou |
IEEE Trans. Knowl. Data Eng. | 1 |
| 2022 | Multiplex Heterogeneous Graph Convolutional NetworkabstractHeterogeneous graph convolutional networks have gained great popularity in tackling various network analytical tasks on heterogeneous network data, ranging from link prediction to node classification. However, most existing works ignore the relation heterogeneity with multiplex network between multi-typed nodes and different importance of relations in meta-paths for node embedding, which can hardly capture the heterogeneous structure signals across different relations. To tackle this challenge, this work proposes a Multiplex Heterogeneous Graph Convolutional Network (MHGCN) for heterogeneous network embedding. Our MHGCN can automatically learn the useful heterogeneous meta-path interactions of different lengths in multiplex heterogeneous networks through multi-layer convolution aggregation. Additionally, we effectively integrate both multi-relation structural signals and attribute semantics into the learned node embeddings with both unsupervised and semi-supervised learning paradigms. Extensive experiments on five real-world datasets with various network analytical tasks demonstrate the significant superiority of MHGCN against state-of-the-art embedding baselines in terms of all evaluation metrics. The source code of our method is available at: https://github.com/NSSSJSS/MHGCN. Pengyang Yu, Chaofan Fu, Yanwei Yu, Chao Huang 0001, Zhongying Zhao 0001, Junyu Dong |
KDD | 5 |
| 2021 | DeepEmLAN: Deep embedding learning for attributed networks
Zhongying Zhao 0001, Chao Li 0022, Jie Tang 0001, Qingtian Zeng |
Inf. Sci. | 1 |
| 2018 | Identifying advisor-advisee relationships from co-author networks via a novel deep model
Zhongying Zhao 0001, Liqiang Nie, Yilong Yin, Yong Zhang 0001 |
Inf. Sci. | 1 |
| 2014 | Detecting and Analyzing Influenza Epidemics with Social Media in China
Jun Luo 0008, Chao Li 0022, Xin Wang 0002, Zhongying Zhao 0001 |
PAKDD (1) | 5 |
| 2011 | Info-Cluster Based Regional Influence Analysis in Social Networks
Chao Li 0022, Zhongying Zhao 0001, Jun Luo 0008, Jianping Fan 0002 |
PAKDD (2) | 2 |