EDBT 2026 Demo / reviewers in the wild / expert
Hao Wang 0013
dblp:w/HaoWang-13
· DBLP profile ↗
23ranked-venue papers in the field
4as first author
10since 2021 · last 2026
0000-0003-2129-2148ORCID · conflict
Domains — venue-derived; a paper can count in several
Database Systems & Data Management · 11 (3 first)Data Mining & Knowledge Discovery · 5Other / Interdisciplinary · 5 (1 first)Information Retrieval & Web Search · 2
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2026 | Text-attributed Graph Condensation via Text Selection and Attribute MatchingabstractText-Attributed Graph (TAG) is an important type of graph structured data, where each node has a text description. TAG models usually train a Graph Neural Network (GNN) and language model jointly, which leads to high space and time consumption, especially on large datasets. To mitigate this, we propose TAGSAM, a condensation method that compresses TAGs while preserving training accuracy. TAGSAM comes with two key designs, i.e., subgraph text Selection and Attribute similarity Matching, which compress the text description and graph topology of TAG, respectively. For the texts, subgraph text selection selects and merges representative text chunks from multiple related text descriptions by maximizing mutual information. For the graph topology, popular condensation methods based on Matching Training Trajectories (MTT) suffer from high variance, which hinders accuracy. Our attribute similarity matching mitigates this issue by aligning stable similarity matrices. We evaluate TAGSAM against six state-of-the-art baselines, where it showcases superior performance. For the same compressed size, TAGSAM improves upon the best-performing baseline by an average of 4.9% in accuracy. Furthermore, it maintains competitive training accuracy even when the TAG is condensed to just 1% size. Our code is available at https://github.com/SundayVHan/TAGSAM Haowei Han, Yuxiang Wang 0013, Guojia Wan, Hao Wang 0013, Shanshan Feng 0001, Hao Huang 0001, Jiawei Jiang 0001, Xiao Yan 0002 |
WWW | 4 |
| 2026 | AviationCopilot: Building a reliable LLM-based Aviation Copilot inspired by human pilot training
Zhuorui Zhang, Shanshan Feng 0001, Tiance Yang, Ruobing Huang, Hao Wang 0013, Fan Li 0015 |
Adv. Eng. Informatics | 5 |
| 2025 | InC: A Vertical Federated Learning Framework with Multiple Noisy Labels
Xiao Yan 0002, Xiaokai Zhou, Hao Wang 0013, Hao Huang 0001, Jiawei Jiang 0001 |
DASFAA (5) | 5 |
| 2025 | Secure spatial remote sensing image matching
Hao Huang 0001, Hao Wang 0013, Chuang Hu, Jiawei Jiang 0001 |
GeoInformatica | 4 |
| 2024 | Generative and Contrastive Paradigms Are Complementary for Graph Self-Supervised LearningabstractFor graph self-supervised learning (GSSL), masked autoencoder (MAE) follows the generative paradigm and learns to reconstruct masked graph edges or node features while contrastive learning (CL) maximizes the similarity between augmented views of the same graph. Existing works utilize MAE and CL separately but we observe that the MAE and CL paradigms are complementary and propose the graph contrastive masked autoencoder (GCMAE) framework to unify them. Specifically, by focusing on local edges or node features, MAE cannot capture global information of the graph and is sensitive to particular edges and features. On the contrary, CL excels in extracting global information because it considers the relation between graphs. As such, we equip GCMAE with an MAE branch and a CL branch, and the two branches share a common encoder, which allows the MAE branch to exploit the global information extracted by the CL branch. To force GCMAE to capture global graph structures, we train it to reconstruct the entire adjacency matrix instead of only the masked edges as in existing works. Moreover, a discrimination loss is proposed for feature reconstruction, which improves the disparity between node embeddings rather than reducing the reconstruction error to tackle the feature smoothing problem of MAE. We evaluate GCMAE on four popular graph tasks (i.e., node classification, node clustering, link prediction, and graph classification) and compare it with 14 state-of-the-art baselines. The results show that GCMAE consistently provides good accuracy across these tasks, and the maximum accuracy improvement is up to 3.2% compared with the best-performing baseline. Yuxiang Wang 0013, Xiao Yan 0002, Chuang Hu, Quanqing Xu, Chuanhui Yang, Fangcheng Fu, Wentao Zhang 0001, Hao Wang 0013, Bo Du 0001, Jiawei Jiang 0001 |
ICDE | 8 |
| 2023 | Few-Shot Named Entity Recognition via Meta-Learning (Extended Abstract)abstractNamed entity recognition (NER) is typically framed as a sequence labeling problem where the entity classes are inherently entangled together because the entity number and classes in a sentence are not known in advance, leaving the N-way K-shot NER problem so far unexplored. In our TKDE paper, we first formally define a more suitable N-way K-shot setting for NER. Then we propose FewNER, a novel meta-learning approach for few-shot NER. FewNER separates the entire network into a task-independent part and a task-specific part. During training in FewNER, the task-independent part is meta-learned across multiple tasks and the task-specific part is learned for each individual task in a low-dimensional space. At test time, FewNER keeps the task-independent part fixed and adapts to a new task via gradient descent by updating only the task-specific part, resulting in it being less prone to overfitting and more computationally efficient. Compared with pre-trained language models (e.g., BERT and ELMo) which obtain the transferability in an implicit manner (i.e., relying on large-scale corpora), FewNER explicitly optimizes the capability of "learning to adapt quickly" through meta-learning. The results demonstrate that FewNER achieves state-of-the-art performance against nine baseline methods by significant margins on three adaptation experiments (i.e., intra-domain cross-type, cross-domain intra-type and cross-domain cross-type). Jing Li 0034, Billy Chiu, Shanshan Feng 0001, Hao Wang 0013 |
ICDE | 4 |
| 2023 | Dynamic Set Similarity Join: An Update Log Based ApproachabstractThe set similarity join finds all pairs of similar sets from two collections of sets. It has many real world applications, such as personalized recommendation and community mining. In this paper, we study the problem of computing the similarity join in a dynamic context, where the sets are updated dynamically. This, however, is inefficient with the state-of-the-art join methods, because they usually assume that data collections are static and have to compute the join result from scratch whenever a set is updated. To address this issue, we propose${{\sf ALJoin}}$, an adaptive filtering approach that computes the join result incrementally based on the update logs. We first investigate the effect of set updates on the similarity values, and on this basis we propose to build a neighborhood index for each set. The neighborhood index of a specific set consists of any other sets that can be transformed into its similar sets within a threshold number of update operations.${{\sf ALJoin}}$then uses this index to effectively identify both similar and dissimilar set pairs based on their update logs. To efficiently build the neighborhood index, we devise several filtering techniques and propose a “lazy-forward” method to reduce the computational cost. In addition, to improve the efficiency on varying workloads, we propose an analytical cost model, and design an online algorithm with performance guarantees to dynamically consolidate the update logs and adapt the neighborhood indexes. We evaluated our method using four real-world datasets. Experimental results show that our approach outperforms existing methods by up to$3.7\times$. Chengcheng Yang, Lisi Chen 0001, Hao Wang 0013, Shuo Shang, Rui Mao 0001, Xiangliang Zhang 0001 |
IEEE Trans. Knowl. Data Eng. | 3 |
| 2022 | Dynamic top-k influence maximization in social networks
Hao Wang 0013, Leong Hou U |
GeoInformatica | 2 |
| 2022 | Few-Shot Named Entity Recognition via Meta-LearningabstractFew-shot learning under the$N$-way$K$-shot setting (i.e.,$K$annotated samples for each of$N$classes) has been widely studied in relation extraction (e.g., FewRel) and image classification (e.g., Mini-ImageNet). Named entity recognition (NER) is typically framed as a sequence labeling problem where the entity classes are inherently entangled together because the entity number and classes in a sentence are not known in advance, leaving the$N$-way$K$-shot NER problem so far unexplored. In this paper, we first formally define a more suitable$N$-way$K$-shot setting for NER. Then we proposeFewNER, a novel meta-learning approach for few-shot NER.FewNERseparates the entire network into a task-independent part and a task-specific part. During training inFewNER, the task-independent part is meta-learned across multiple tasks and the task-specific part is learned for each individual task in a low-dimensional space. At test time,FewNERkeeps the task-independent part fixed and adapts to a new task via gradient descent by updating only the task-specific part, resulting in it being less prone to overfitting and more computationally efficient. Compared with pre-trained language models (e.g., BERT and ELMo) which obtain the transferability in an implicit manner (i.e., relying on large-scale corpora),FewNERexplicitly optimizes the capability of “learning to adapt quickly” through meta-learning. The results demonstrate thatFewNERachieves state-of-the-art performance against nine baseline methods by significant margins on three adaptation experiments (i.e., intra-domain cross-type, cross-domain intra-type and cross-domain cross-type). Jing Li 0034, Billy Chiu, Shanshan Feng 0001, Hao Wang 0013 |
IEEE Trans. Knowl. Data Eng. | 4 |
| 2021 | Crowdsourced top-k queries by pairwise preference judgments with confidence and budget control
Yan Li 0122, Hao Wang 0013, Ngai Meng Kou, Leong Hou U, Zhiguo Gong |
VLDB J. | 2 |
| 2020 | Preference-aware sequence matching for location-based services
Hao Wang 0013 |
GeoInformatica | 1 |
| 2019 | A Contextual Bandit Approach to Personalized Online Recommendation via Sparse Interactions
Hao Wang 0013, Shangdong Yang, Yang Gao 0001 |
PAKDD (2) | 2 |
| 2018 | Online Feature Selection by Adaptive Sub-gradient Methods
Tingting Zhai, Hao Wang 0013, Frédéric Koriche, Yang Gao 0001 |
ECML/PKDD (2) | 2 |
| 2017 | Exploiting Location Significance and User Authority for Point-of-Interest Recommendation
Yonghong Yu, Hao Wang 0013, Shuanzhu Sun, Yang Gao 0001 |
PAKDD (2) | 2 |
| 2017 | Crowdsourced Top-k Queries by Confidence-Aware Pairwise JudgmentsabstractCrowdsourced query processing is an emerging processing technique that tackles computationally challenging problems by human intelligence. The basic idea is to decompose a computationally challenging problem into a set of human friendly microtasks (e.g., pairwise comparisons) that are distributed to and answered by the crowd. The solution of the problem is then computed (e.g., by aggregation) based on the crowdsourced answers to the microtasks. In this work, we attempt to revisit the crowdsourced processing of the top-k queries, aiming at (1) securing the quality of crowdsourced comparisons by a certain confidence level and (2) minimizing the total monetary cost. To secure the quality of each paired comparison, we employ two statistical tools, Student's t-distribution estimation and Stein's estimation, to estimate the confidence interval of the underlying mean value, which is then used to draw a conclusion to the comparison. Based on the pairwise comparison process, we attempt to minimize the monetary cost of the top-k processing within a Select-Partition-Rank framework. Our experiments, conducted on four real datasets, demonstrate that our stochastic method outperforms other existing top-k processing techniques by a visible difference. Ngai Meng Kou, Yan Li 0122, Hao Wang 0013, Leong Hou U, Zhiguo Gong |
SIGMOD Conference | 3 |
| 2017 | Classification of high-dimensional evolving data streams via a resource-efficient online ensemble
Tingting Zhai, Yang Gao 0001, Hao Wang 0013, Longbing Cao |
Data Min. Knowl. Discov. | 3 |
| 2017 | Personalized location recommendation by aggregating multiple recommenders in diversity
Hao Wang 0013, Nikos Mamoulis, Wenting Tu, David Wai-Lok Cheung |
GeoInformatica | 2 |
| 2017 | A Confidence-Aware Top-k Query Processing Toolkit on CrowdsourcingabstractRanking techniques have been widely used in ubiquitous applications like recommendation, information retrieval, etc. For ranking computation hostile but human friendly items, crowdsourcing is considered as an emerging technique to process the ranking by human power. However, there is a lack of an easy-to-use toolkit for answering crowdsourced top- k query with minimal effort. In this work, we demonstrate an interactive programming toolkit that is a unified solution for answering the crowd-sourced top- k queries. The toolkit employs a new confidence-aware crowdsourced top- k algorithm, SPR. The whole progress of the algorithm is monitored and visualized to end users in a timely manner. Besides the visualized result and the statistics, the system also reports the estimation of the monetary cost and the breakdown of each phase. Based on the estimation, end users can strike a balance between the budget and the quality through the interface of this toolkit. Yan Li 0122, Ngai Meng Kou, Hao Wang 0013, Leong Hou U, Zhiguo Gong |
Proc. VLDB Endow. | 3 |
| 2016 | A Fast Distributed Classification Algorithm for Large-Scale Imbalanced DataabstractThe Alternating Direction Method of Multipliers (ADMM) has been developed recently for distributed classification. Nevertheless, the widely-existing class imbalance problem has not been well investigated. Furthermore, previous imbalanced classification methods lack of efforts in studying the complex imbalance problem in a distributed environment. In this paper, we consider the imbalance problem as distributed data imbalance which includes three imbalance issues: (i) within-node class imbalance, (ii)between-node class imbalance, and (iii) between-node structure imbalance. In order to adequately deal with imbalanced data as well as improve time efficiency, a novel distributed Cost-Sensitive classification algorithm via Group-based ADMM (CS-GADMM) is proposed. Briefly, CS-GADMM derives the classification problem as a series of sub-problems with within-node class imbalance. To alleviate the time delay caused by between-node class imbalance, we propose a extension of dual coordinate descent method for the sub-problem optimization. Meanwhile, for between-node structure imbalance, we discreetly study the relationship between local functions, and combine the resulting local variables intra-group to update the global variables for prediction. The experimental results on various imbalanced datasets validate that CS-GADMM could be a efficient algorithm for imbalanced classification. Yang Gao 0001, Yinghuan Shi, Hao Wang 0013 |
ICDM | 4 |
| 2016 | Joint User Knowledge and Matrix Factorization for Recommender Systems
Yonghong Yu, Yang Gao 0001, Hao Wang 0013, Ruili Wang 0001 |
WISE (1) | 3 |
| 2015 | On Dynamic Top-k Influence Maximization
Hao Wang 0013, Nana Pan, Leong Hou U, Bohan Zhan, Zhiguo Gong |
WAIM | 1 |
| 2014 | Durable Queries over Historical Time SeriesabstractThis paper studies the problem of finding objects with durable quality over time in historical time series databases. For example, a sociologist may be interested in the top 10 web search terms during the period of some historical events; the police may seek for vehicles that move close to a suspect 70 percent of the time during a certain time period and so on. Durable top-k (DTop-k) and nearest neighbor (DkNN) queries can be viewed as natural extensions of the standard snapshot top-k and NN queries to timestamped sequences of values or locations. Although their snapshot counterparts have been studied extensively, to our knowledge, there is little prior work that addresses this new class of durable queries. Existing methods for DTop-k processing either apply trivial solutions, or rely on domain-specific properties. Motivated by this, we propose efficient and scalable algorithms for the DTop-k and DkNN queries, based on novel indexing and query evaluation techniques. Our experiments show that the proposed algorithms outperform previous and baseline solutions by a wide margin. Hao Wang 0013, Yilun Cai, Yin David Yang, Nikos Mamoulis |
IEEE Trans. Knowl. Data Eng. | 1 |
| 2013 | Location recommendation in location-based social networks using user check-in dataabstractThis paper studies the problem of recommending new venues to users who participate in location-based social networks (LBSNs). As an increasingly larger number of users partake in LBSNs, the recommendation problem in this setting has attracted significant attention in research and in practical applications. The detailed information about past user behavior that is traced by the LBSN differentiates the problem significantly from its traditional settings. The spatial nature in the past user behavior and also the information about the user social interaction with other users, provide a richer background to build a more accurate and expressive recommendation model. Hao Wang 0013, Manolis Terrovitis, Nikos Mamoulis |
SIGSPATIAL/GIS | 1 |