VLDB 2026 Research / reviewers in the wild / expert
Hong Gao 0001
dblp:32/1438-1
· DBLP profile ↗
in reviewer pool
← Back
126ranked-venue papers in the field
0as first author
33since 2021 · last 2026
—ORCID · conflict
Domains — venue-derived; a paper can count in several
Database Systems & Data Management · 75Data Mining & Knowledge Discovery · 19Information Retrieval & Web Search · 19Knowledge Engineering, Semantic Web & Information Systems · 9Other / Interdisciplinary · 4
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2026 | An Amortized O(1) Lower Bound for Dynamic Time Warping in Motif Discovery (Extended Abstract)
Zemin Chao, Hong Gao 0001, Dongjing Miao, Jianzhong Li 0001, Hongzhi Wang 0001 |
ICDE | 2 |
| 2026 | Maximizing Influence Query Over Indoor Trajectories (Extended Abstract)
Hong Gao 0001, Junle Chen, Donghua Yang, Jianzhong Li 0001 |
ICDE | 2 |
| 2026 | Many Hands Make Light Work: Group-based Information Diffusion Prediction over Long-Context CascadesabstractInformation diffusion prediction aims to forecast the temporal spread of opinions and behaviors by identifying potential adopters. Existing methods typically treat information diffusion as a sequence of individual adoptions and rely on computationally expensive pairwise (one-to-one) influence computations, often restricting predictions to just the next adopter. This individual-level paradigm both misrepresents real-world collective (many-to-many) influences and suffers a critical efficiency trade-off: to remain feasible, such models must truncate long diffusion histories, thereby overlooking early initiators and opinion leaders. To overcome these limitations, we formalize a more practical task: Group-based Information Diffusion Prediction, and propose an effective and scalable GRID framework. Specifically, GRID first learns group-oriented graph embeddings via a task-regularized information bottleneck objective, which amplifies key influence pathways and produces reliable user embeddings for group identification. Built on these embeddings, the core GroupAttn module captures inter-group influence while reducing complexity from quadratic to linear in cascade length. This enables the modeling of ultra-long cascades (exceeding 10,000 users) without truncation while preserving representational fidelity within a provable error bound. Finally, a group-wise objective guides the model to predict semantically meaningful future groups. Extensive experiments on four real-world datasets show that GRID outperforms ten state-of-the-art baselines by an average of 10.65% in accuracy, while achieving an order-of-magnitude gain in efficiency and extending the supported cascade length by up to 10 times. Zihan Feng 0001, Yajun Yang, Xin Huang 0001, Xin Wang 0030, Hong Gao 0001, Qinghua Hu |
WWW | 5 |
| 2026 | LLM-Driven Semantic ID for Information Diffusion Prediction
Haoshuang Liu, Zihan Feng 0001, Yajun Yang, Xin Wang 0030, Hong Gao 0001, Qinghua Hu |
WWW | 5 |
| 2026 | Adaptive Unsupervised Anomaly Detection for Low-Quality Multivariate Time-Series DataabstractHow should we perform anomaly detection on multivariate time-series data with missing data, attribute misplacement and concept drift? The majority of existing anomaly detection methods overlook the fact that data are often of low quality. To address this challenge, we propose an adaptive unsupervised anomaly detection method for low-quality multivariate time series data. Our method introduces a self-attention mechanism that integrates masked information and missing length information to enhance the model's capability in handling incomplete data. Furthermore, we design a deep probabilistic adaptive memory network to improve the model's adaptability to attribute misplacement and concept drift. We also discuss the optimal window size for effectively dealing with concept drift. Comparative experiments on multiple real-world datasets demonstrate that our method can effectively detect anomalies in low-quality multivariate time series data. The experimental results further highlight the robustness of our model, proving its ability to maintain high performance in the presence of data quality issues. Donghua Yang, Hong Gao 0001, Jianzhong Li 0001 |
IEEE Trans. Knowl. Data Eng. | 4 |
| 2025 | With Anchors or Not: Fairness-Aware Truss-Based Community Search on Attributed GraphsabstractCommunity search, which finds cohesive subgraphs containing given query vertices, has attracted much attention in decades. On attributed graphs, when considering the fairness of members' attributes in a community, the cohesiveness constraint of a clique is too strong, which often causes no fair clique based communities can be found. Thus, in this paper, we use the k-truss model, which is a relaxation of the clique but whose members have large engagement and high tie strength, to describe fair communities, namely fair k-truss communities (FTC) and anchored fair k-truss communities (AFTC, using anchored vertices to help satisfying the fairness constraint). We formulate the FTC and AFTC search problems to find the FTC or AFTC containing a given query vertex$q$which has the largest$k$and the smallest diameter. We prove the hardness of both problems. We develop several greedy algorithms and acceleration strategies to solve FTC and AFTC search problems. Experiments on 8 real-world networks show the significance of our FTC and AFTC models, and high performance of our algorithms and acceleration strategies. Xinrui Wang 0001, Shixin Ye, Xin Huang 0001, Hong Gao 0001, Xiuzhen Cheng, Dongxiao Yu |
ICDE | 5 |
| 2025 | Hybrid DRAM-NVM R-Trees with Consistency GuaranteeabstractThe non-volatile memory (NVM) with DRAM-like performance and disk-like persistency has attracted considerable attention in a variety of index structures, including hash table, B-Tree and R-Tree. However, existing NVM-optimized consistent R-Tree is still suboptimal because its single level system neglects the potential boost that DRAM can bring. In this paper, we first propose a hybrid DRAM-NVM consistent R-Tree (HR-Tree), which separately stores internal nodes in DRAM and leaf nodes in NVM. To avoid inconsistency, HR-Tree uses several auxiliary flag bits and pointers to record the process of writes to NVM and employs persistence operations to strictly control the order of writes to NVM. To reduce DRAM consumption, which mainly depends on the metadata size of a leaf node, we present a shared byte strategy to abolish restrictions on metadata size while still keeping HR-Tree consistency. Next, for further shortening search time, we propose an alternative Hilbert-curve-based hybrid R-Tree (HHR-Tree). It has better search efficiency yet leads to insertion performance degradation. Contrary to in-place update in HR-Tree, HHR-Tree applies out-of-place mechanism to enforce data consistency. We conduct comprehensive evaluations on Intel Optane DC Persistent Memory. The proposed HR-Tree outperforms FBR-Tree in terms of insertion, deletion and search throughput while HHR-Tree exhibits a significant improvement for search performance by sacrificing insertion efficiency. Chengyou Shen, Shengfei Shi, Hong Gao 0001, Yaofeng Tu |
ICDE | 5 |
| 2025 | Efficient Sphere-Effect Based Information Diffusion Prediction on Large-scale Social NetworksabstractInformation diffusion prediction is fundamental for forecasting user participation in information sharing on social networks, such as retweets on Twitter. Existing methods typically extract user relationships from social networks and historical interactions, while further capturing contextual information within the specific diffusion process. However, these methods have several limitations: (1) They often utilize sequential diffusion process for prediction and simplify differentiated influences among participants; (2) They capture user relationships on the entire graph for all users, in which most information is not necessary for a specific diffusion process and is too inefficient for real-world large-scale networks. To tackle these limitations, we propose a novel and scalable model SILN, for sphere-based information diffusion prediction on large social networks. Specifically, SILN features three components. First, we integrate two kinds of sphere effects in terms of structural and temporal views, which learn an enhanced cascade representation. Second, SILN designs an efficient learning scheme based on the cascade-specific subgraph, which significantly reduces the entire graph computation to smaller subgraphs. Third, to facilitate subgraph extraction, we develop an optimized graph storage technique to allow constant-time neighbor access and reduce the storage cost by about 30% in practice. Extensive experiments on six real-world datasets validate that SILN consistently outperforms seven state-of-the-art competitors in prediction performance while exhibiting exceptional time and space efficiency on million-node social networks. Zihan Feng 0001, Yajun Yang, Xin Huang 0001, Hong Gao 0001, Liping Jing, Qinghua Hu |
KDD (2) | 4 |
| 2025 | An Amortized O(1) Lower Bound for Dynamic Time Warping in Motif DiscoveryabstractMotif discovery is a critical operation for analyzing series data in many applications. Recent works demonstrate the importance of finding motifs with Dynamic Time Warping. However, existing algorithms spend most of their time in computing lower bounds of Dynamic Time Warping to filter out the unpromising candidates. Specifically, the time complexity for computing these lower bounds is$O(L)$for each pair of subsequences, where$L$is the length of the motif (subsequences). This paper proposes two new lower bounds, called$LB_{f}$and$LB_{M}$, both of them only cost amortized$O(1)$time for each pair of subsequences. On real datasets, the proposed lower bounds are at least one magnitude faster than the state-of-the-art lower bounds used in motif discovery while still keeping satisfying effectiveness. Based on these faster lower bounds, this paper designs an efficient motif discovery algorithm that significantly reduces the cost of lower bounds. The experiments conducted on real datasets show the proposed algorithm is 5.6 times faster than the state-of-the-art algorithms on average. Zemin Chao, Hong Gao 0001, Dongjing Miao, Jianzhong Li 0001, Hongzhi Wang 0001 |
IEEE Trans. Knowl. Data Eng. | 2 |
| 2025 | Maximizing Influence Query Over Indoor TrajectoriesabstractMaximizing Influence (Max-Inf) query is a fundamental operation in spatial data management. This query returns an optimal site from a candidate set to maximize itsinfluence. Existing work commonly focuses on outdoor spaces. In practice, however, people spend up to 87% of their daily life inside indoor spaces. The outdoor techniques fall short in indoor spaces due to the complicated topology of indoor spaces. In this paper, we formulate two indoor Max-Inf queries:Top-$k$kProbabilistic Influence Query (T$k$kPI)andCollective-$k$kProbabilistic Influence Query (C$k$kPI)taking probability and mobility factors into consideration. We propose a novel spatial index, IT-tree, which utilizes the properties of indoor venues to facilitate the indoor distance computation, and then applies a trie to further organize the trajectories with similar check-in partitions together, based on their sketch information. This structure is simple but highly effective in pruning the trajectory search space. To process T$k$PI efficiently, we devise subtree pruning and progressive pruning techniques to delicately filter out unnecessary trajectories based on probability bounds and the monotonicity of influence probability. For C$k$PI queries, which is a submodular NP-hard problem, three approximation algorithms are provided with different strategies of computing marginal influence value during the search. Through extensive experiments on several real indoor venues, we demonstrate the efficiency and effectiveness of our proposed algorithms. Hong Gao 0001, Junle Chen, Donghua Yang, Jianzhong Li 0001 |
IEEE Trans. Knowl. Data Eng. | 2 |
| 2024 | Multi-level Contrastive Learning on Weak Social Networks for Information Diffusion Prediction
Zihan Feng 0001, Yajun Yang, Hong Gao 0001, Xin Wang 0030, Qinghua Hu |
DASFAA (6) | 4 |
| 2024 | Searching rooms with top-k passenger flows using indoor trajectoriesabstractIn a wide variety of applications, such as indoor position selection for advertising and setting rents of different shops in a shopping mall, it is better to get the passenger flow of each room. In the indoor space, the positions of users are commonly captured by the indoor positioning system consisting of static positioning devices. And the sequence of all tracking events with the same user ordered by the corresponding time is the indoor trajectory of this user. Thus, in this paper, we define and study two essential queries named Rooms with top- k passenger flows at a Timestamp query (R k T for short) and Rooms with top- k passenger flows within a time Interval query (R k I for short), i.e., how to search rooms with top- k passenger flows at a timestamp and within a time interval in the past using indoor trajectories, respectively. For the indoor positioning system, there are only limited static positioning devices deployed in the indoor space on account of the cost. And the detection ranges of these static positioning devices only cover a small part of the indoor space. When a user is in the undetected state, there is uncertainty in its position combined with the quite complex indoor topology. Such uncertainty brings great challenges to determining the passenger flow in each room. Considering the distribution of static positioning devices, we propose a new method about how to reasonably infer where a user is in the undetected state and the corresponding probability based on its indoor trajectory and the complex indoor topology. In order to quickly retrieve the set of indoor trajectories, we propose a full Binary tree indexing indoor trajectories divided by Time intervals (BiT for short), which is built on the given set of indoor trajectories. Based on the index BiT, we propose PAT Algorithm and PAI Algorithm to efficiently process R k T and R k I queries, respectively. Extensive experiment results demonstrate superior performance of PAT Algorithm and PAI Algorithm. Donghua Yang, Kaiqi Zhang 0001, Hong Gao 0001, Jianzhong Li 0001 |
Discov. Comput. | 4 |
| 2024 | Efficient Betweenness Centrality Computation over Large Heterogeneous Information NetworksabstractBetweenness centrality (BC), a classic measure which quantifies the importance of a vertex to act as a communication "bridge" between other vertices in the network, is widely used in many practical applications. With the advent of large heterogeneous information networks (HINs) which contain multiple types of vertices and edges like movie or bibliographic networks, it is essential to study BC computation on HINs. However, existing works about BC mainly focus on homogeneous networks. In this paper, we are the first to study a specific type of vertices' BC on HINs, e.g., find which vertices with typeAare important bridges to the communication between other vertices also with typeA?We advocate a meta path-based BC framework on HINs and formalize both coarse-grained and fine-grained BC (cBC and fBC) measures under the framework. We propose a generalized basic algorithm which can apply to computing not only cBC and fBC but also their variants in more complex cases. We develop several optimization strategies to speed up cBC or fBC computation by network compression and breadth-first search directed acyclic graph (BFS DAG) sharing. Experiments on several real-world HINs show the significance of cBC and fBC, and the effectiveness of our proposed optimization strategies. Xinrui Wang 0001, Xuemin Lin 0001, Jeffrey Xu Yu, Hong Gao 0001, Xiuzhen Cheng, Dongxiao Yu |
Proc. VLDB Endow. | 5 |
| 2024 | On Efficiently Processing MIT Queries in Trajectory DataabstractMaximizing Influence (Max-Inf) query is a fundamental operation in spatial data management. Given a set of weighted objects, this query aims to find an optimal location from a candidate set to maximize itsinfluence, which is the total weight of its reverse nearest neighbors. Existing work commonly assumes that every object is in a fixed location. In real life, however, there are a wide variety of drive-in services (e.g., food joints, pharmacies, ATMs, etc.) that are widely accessed by mobile users (i.e., trajectories) instead of the fixed ones. In this paper, we first define the Maximizing Influence query over Trajectories, namely, MIT query, which aims to find an optimal location to maximize the total weight of influenced trajectories. We propose a novel index, QB-tree to hierarchically group trajectories with similar activity regions together for subsequent unified processing, and classify trajectories inside the same node into multiple buckets according to their motion patterns. For each bucket, we construct a rectilinear polygon using the trajectories in it to exclude some irrelevant areas in the minimum boundary rectangle. Moreover, we develop a branch-and-bound approach called BBM to efficiently solve the MIT query. The algorithm adaptively partitions the candidates into disjoint regions and prunes the regions without containing optimal results. Then, by exploiting the QB-tree, the upper and lower bounds are efficiently computed with three-level pruning technique. Practically, we also study a variant of the MIT query, called MDT query. We propose novel pruning bounds in cooperation with QB-tree to answer MDT queries efficiently. Finally, extensive experiments on real and synthetic datasets demonstrate that our index and algorithms have high performance in terms of efficiency, scalability, and genericity. Hong Gao 0001, Kaiqi Zhang 0001, Jiachi Wang, Yubo Luo, Zhenqing Wu, Jianzhong Li 0001 |
IEEE Trans. Knowl. Data Eng. | 2 |
| 2023 | SL-TeaE: An Efficient Method for Improving the Precision of Teaching Evaluation
Xianzhi Huang, Lina Chen, Yuzhou Zheng, Hongjie Guo, Fangyao Shen, Hong Gao 0001 |
ADMA (4) | 6 |
| 2023 | CPMFA: A Character Pair-Based Method for Chinese Nested Named Entity Recognition
Xiayan Ji, Lina Chen, Fangyao Shen, Hongjie Guo, Hong Gao 0001 |
ADMA (1) | 5 |
| 2023 | MRSCN: A GNN-based Model for Mining Relationship Strength Changes Between Nodes in Dynamic Networks
Tianbao Wang, Yajun Yang, Hong Gao 0001, Qinghua Hu |
DASFAA (3) | 3 |
| 2023 | Towards Efficient MIT query in Trajectory DataabstractMaximizing Influence (Max-Inf) query is a fundamental operation in spatial data management. Given a set of weighted objects, this query aims to find an optimal location from a candidate set to maximize its influence, which is the total weight of its reverse nearest neighbors. Existing work commonly assumes that every object is in a fixed location. In real life, however, there are a wide variety of drive-in services (e.g., food joints, fuel stations, ATMs, etc.) that are widely accessed by mobile users (i.e., trajectories) instead of the fixed ones. It is urgent and challenging to solve the Max-Inf query in trajectory data (MIT). In this paper, we first define the MIT query which aims to find the optimal location to maximize the total weight of influenced trajectories. We propose a novel index structure, QB-tree to hierarchically group trajectories with similar activity regions together for subsequent unified processing, and classify trajectories inside the same node into multiple buckets according to their motion patterns. For each bucket, we construct a rectilinear polygon using the trajectories in it to exclude some irrelevant areas in the minimum boundary rectangle. Moreover, we develop a branch-and-bound approach called BBM to efficiently solve the MIT query. The algorithm adaptively partitions the candidates into disjoint regions and prunes the regions without containing optimal results. Then, by exploiting the QB-tree, the upper and lower bounds are efficiently computed with three-level pruning technique. Finally, we conduct extensive experiments on real and synthetic datasets to evaluate our index and algorithms, and the experimental results demonstrate that our algorithm has high performance in terms of efficiency, scalability, and genericity. Hong Gao 0001, Kaiqi Zhang 0001, Jiachi Wang, Yubo Luo, Zhenqing Wu, Jianzhong Li 0001 |
ICDE | 2 |
| 2023 | Hierarchical Label Inference Incorporating Attribute Semantics in Attributed NetworksabstractNode attribute label inference is an important problem in attributed networks. Most existing works assume that node labels are at a single level, but in practice, the attribute labels can always be organized in a hierarchical structure according to their semantics. In this paper, we propose a novel hierarchical label inference model for attributed networks. Specifically, we propose a triple attention mechanism to extract fine-grained label semantics from three levels: hierarchical, sibling and global. Next, we propose the semantic fully-connected layer to explicitly exploit label semantics for attribute inference. We also propose semantic label propagation to enhance the interaction between the label semantics and the attributed network, and this interaction enables nodes in the attributed network to realise the proximity assumption at the label semantic level. Finally, we combine the semantic fully-connected layer with semantic label propagation for top-down hierarchical attribute inference. Extensive experiments demonstrate the superiority of our model. Yajun Yang, Qinghua Hu, Xin Wang 0030, Hong Gao 0001 |
ICDM | 5 |
| 2023 | HR-Index: An Effective Index Method for Historical Reachability Queries over Evolving GraphsabstractReachability query is a fundamental problem and has been well studied on static graphs. However, in the real world, the graphs are not static but always evolving over time. In this paper, we study the problem of historical reachability query on evolving graphs. We propose a novel index, named HR-Index, which integrates complete and correct historical reachability information of the evolving graph. A historical reachability query on an evolving graph can be converted into a static reachability query on its HR-Index and thus query efficiency can be improved significantly. We also propose two optimization techniques to reduce the size of HR-Index effectively. We confirm the effectiveness and efficiency of our method through conducting extensive experiments on real-life datasets. Experimental results show both vertex and edge size of HR-Index are far smaller than that of the evolving graphs and our method has at least an order of magnitude improvement in time and space efficiency compared to the state-of-the-art method. Yajun Yang, Xiangju Zhu, Junhu Wang, Xin Wang 0030, Hong Gao 0001 |
Proc. ACM Manag. Data | 6 |
| 2023 | Who Should Deserve Investment? Attractive Individual and Group Search in Dynamic Information NetworksabstractAnalyzing dynamic information networks, which contain evolving objects and links, to meet users various needs has attracted much attention in recent years. For sales companies, recruiting staff who are socialites would help to increase sales volume since such staff often sell more. For universities, employing active collaborators who are productive and well connected to many different scholars over time could bring many benefits to their development. However, no previous work has focused on the discovery of socialites and active collaborators who are worthy of investment in reality. In this paper, we advocate a new concept of attractive individuals to model such special objects. We also introduce the concept of attractive groups to represent groups of well-connected attractive individuals. We analyze the complexity of the attractive individual and group search problems. A time and space efficient algorithm is presented to detect attractive individuals. Furthermore, three algorithms are respectively proposed to find top-k representative attractive groups. Experiments on 6 real-world datasets show high performance of our methods and the significance of attractive individuals and groups in reality. Xinrui Wang 0001, Hong Gao 0001, Zhipeng Cai 0001, Jianzhong Li 0001 |
IEEE Trans. Knowl. Data Eng. | 2 |
| 2023 | MLI: A Multi-level Inference Mechanism for User Attributes in Social NetworksabstractIn the social network, each user has attributes for self-description called user attributes, which are semantically hierarchical. Attribute inference has become an essential way for social platforms to realize user classifications and targeted recommendations. Most existing approaches mainly focus on the flat inference problem neglecting the semantic hierarchy of user attributes, which will cause serious inconsistency in multi-level tasks. In this article, we propose a multi-level model MLI, where information propagation part collects attribute information by mining the global graph structure, and the attribute correction part realizes the mutual correction between different levels of attributes. Further, we put forward the concept of generalized semantic tree, a way of representing the hierarchical structure of user attributes, whose nodes are allowed to have multiple parent nodes unlike the regular tree. Both regular and generalized semantic trees are commonly used in practice, and can be handled by our model. Besides, by making the inference start from sub-networks with sufficient attribute information, we design a “Ripple” algorithm to improve the efficiency and effectiveness of our model. For evaluation purposes, we conduct extensive verification experiments on DBLP datasets. The experimental results show the superior effect of MLI, compared with the state-of-the-art methods. Yajun Yang, Xin Wang 0030, Hong Gao 0001, Qinghua Hu |
ACM Trans. Inf. Syst. | 4 |
| 2022 | Who Should Deserve Investment? Attractive Individual and Group Search in Dynamic Information Networks (Extended Abstract)abstractAnalyzing dynamic information networks, which contain evolving objects and links, has attracted much attention in recent years. For sales companies, recruiting staff who are socialites would help to increase sales volume since such staff often sell more. For universities, employing active collaborators who are productive and well connected to many different scholars over time could bring many benefits to their development. However, no previous work has focused on socialites and active collaborators who are worthy of investment in reality. In this paper, we advocate attractive individuals to model such special objects, and introduce attractive groups to represent groups of well-connected attractive individuals. Then we propose several algorithms to search attractive individuals and groups. Extensive experiments show high performance of our methods and the significance of attractive individuals and groups in reality. Xinrui Wang 0001, Hong Gao 0001, Zhipeng Cai 0001, Jianzhong Li 0001 |
ICDE | 2 |
| 2022 | Maximizing Range Sum in Trajectory DataabstractMaximizing Range Sum (MaxRS) query is a basic operation in computational geometry and database communities. Given a set of weighted objects in 2-dimensional space and a rectangle, MaxRS query aims to find an optimal position of the rectangle to maximize the total weight of covered objects (i.e., Range Sum). All the existing literature for MaxRS query commonly assumes that every object is associated with a unique point. In real applications, however, every object (e.g., GPS-enabled moving vehicle) is related to a trajectory including a sequence of points, which goes beyond this restrictive assumption. How to tackle the problem of MaxRS query in trajectory data (MaxRST) is important and challenging. In this paper, we propose the definition of MaxRST query where a trajectory is covered by a rectangle if at least one of points in the trajectory is enclosed by the rectangle. We propose a novel method to solve MaxRST query by converting it to rectilinear polygon intersection problem. Then, an interval-tree-based partitioning technique is developed to efficiently settle rectilinear polygon intersection problem. To further shorten the response time, we present ($\epsilon, \delta$) -approximate MaxRST query, which returns an approximate answer having the relative error$\epsilon$to the optimal covered weight with probability at least$\delta$. Furthermore, two complementary sampling-based ($\epsilon, \delta$) -approximate MaxRST algorithms are proposed. One performs random sampling with replacements on rectilinear polygons and the sample size is irrelevant to the number of trajectories. The other employs grid shifting technique to reduce sample size yet requires an extra cost for grid construction. The theoretical analysis and experimental results show that our proposed algorithms have high performance in terms of efficiency and accuracy. Kaiqi Zhang 0001, Hong Gao 0001, Xixian Han, Jianzhong Li 0001 |
ICDE | 2 |
| 2022 | ripple2vec: Node Embedding with Ripple Distance of StructuresabstractAbstract Graph is a generic model of various networks in real-world applications. And, graph embedding aims to represent nodes (edges or graphs) as low-dimensional vectors which can be fed into machine learning algorithms for downstream graph analysis tasks. However, existing random walk-based node embedding methods often map some nodes with (dis)similar local structures to (near) far vectors. To overcome this issue, this paper proposes to implement node embedding by constructing a context graph via a new defined ripple distance over ripple vectors, whose components are the hitting times of fully condensed neighborhoods and thus characterize their structures as pure quantities. The distance is able to capture the (dis)similarities of nodes’ local neighborhood structures and satisfies the triangular inequality. The neighbors of each node in the context graph are defined via the ripple distance, which makes the short random walks from a given node over the context graph only visit its similar nodes in the original graph. This property guarantees that the proposed method, named as $$\mathsf {ripple2vec}$$ ripple2vec , is able to map (dis)similar nodes to (far) near vectors. Experimental results on real datasets, where labels are mainly related to nodes’ local structures, show that the results of $$\mathsf {ripple2vec}$$ ripple2vec behave better than those of state-of-the-art methods, in node clustering and node classification, and are competitive to other methods in link prediction. Jizhou Luo, Shouxu Jiang, Hong Gao 0001, Yinuo Xiao |
Data Sci. Eng. | 4 |
| 2022 | Efficient computation of G-Skyline groups on massive data
Xixian Han, Jianzhong Li 0001, Hong Gao 0001 |
Inf. Sci. | 4 |
| 2022 | The Inherent Time Complexity and An Efficient Algorithm for Subsequence Matching ProblemabstractSubsequence matching is an important and fundamental problem on time series data. This paper studies the inherent time complexity of the subsequence matching problem and designs a more efficient algorithm for solving the problem. Firstly, it is proved that the subsequence matching problem is incomputable in time O ( n 1-δ ) even allowing polynomial time preprocessing if the hypothesis SETH is true, where n is the size of the input time series and 0 ≤ δ < 1, i.e., the inherent complexity of the subsequence matching problem is ω ( n 1-δ ). Secondly, an efficient algorithm for subsequence matching problem is proposed. In order to improve the efficiency of the algorithm, we design a new summarization method as well as a novel index for series data. The proposed algorithm supports both Euclidean Distance and DTW distance with or without z -normalization. Experimental results show that the proposed algorithm is up to about 3 ~ 10 times faster than the state of art algorithm on the constrained z -normalized Euclidean Distance and DTW distance, and is up to 7 ~ 12 times faster on Euclidean Distance. Zemin Chao, Hong Gao 0001, Yinan An, Jianzhong Li 0001 |
Proc. VLDB Endow. | 2 |
| 2022 | Leveraging Currency for Repairing Inconsistent and Incomplete DataabstractData quality plays a key role in big data management today. With the explosive growth of data from a variety of sources, the quality of data is faced with multiple problems. Motivated by this, we study the multiple data cleaning on incompleteness and inconsistency with currency reasoning and determination in this paper. We introduce a 4-step framework, named${\sf Imp3C}$, for errors detection and quality improvement in incomplete and inconsistent data without timestamps. We achieve an integrated currency determining method to compute the currency orders among tuples, according to currency constraints. Thus, the inconsistent data and missing values are repaired effectively considering the temporal impact. For both effectiveness and efficiency consideration, we carry out inconsistency repair ahead of incompleteness repair. A currency-related consistency distance metric is defined to measure the similarity between dirty tuples and clean ones more accurately. In addition, currency orders are treated as an important feature in the missing imputation training process. The solution algorithms are introduced in detail with case studies. A thorough experiment on three real-life datasets verifies our method${\sf Imp3C}$improves the performance of data repairing with multiple quality problems.${\sf Imp3C}$outperforms the existing advanced methods, especially in the datasets with complex currency orders. Xiaoou Ding, Hongzhi Wang 0001, Jiaxuan Su, Muxian Wang, Jianzhong Li 0001, Hong Gao 0001 |
IEEE Trans. Knowl. Data Eng. | 6 |
| 2021 | A Multilevel Inference Mechanism for User Attributes over Social Networks
Yajun Yang, Xin Wang 0030, Hong Gao 0001, Qinghua Hu, Dan Yin |
DASFAA (2) | 4 |
| 2021 | Leveraging Currency for Repairing Inconsistent and Incomplete Data (Extended Abstract)abstractWith the growth of data from various sources, data quality is faced with multiple problems. In this paper, we study the multiple data cleaning on incompleteness and inconsistency with currency reasoning and determination. We introduce a 4-step method, named Imp3C, for error detection and repair in incomplete and inconsistent data without timestamps. We propose an integrated currency determining approach to compute currency order among tuples, thus, the dirty data can be repaired effectively considering the temporal impact. Experiments on three real-life datasets verify that Imp3C improves data repairing performance with multiple quality problems, especially in datasets with complex currency orders. Xiaoou Ding, Hongzhi Wang 0001, Jiaxuan Su, Muxian Wang, Jianzhong Li 0001, Hong Gao 0001 |
ICDE | 6 |
| 2021 | Efficient top-k high utility itemset mining on massive data
Xixian Han, Xianmin Liu, Jianzhong Li 0001, Hong Gao 0001 |
Inf. Sci. | 4 |
| 2021 | Leave or not leave? Group members' departure prediction in dynamic information networks
Xinrui Wang 0001, Hong Gao 0001, Zhipeng Cai 0001, Jianzhong Li 0001 |
Inf. Sci. | 2 |
| 2021 | Distributed processing of regular path queries in RDF graphs
Xintong Guo, Hong Gao 0001, Zhaonian Zou |
Knowl. Inf. Syst. | 2 |
| 2020 | Efficient Entity Resolution on Heterogeneous Records (Extended abstract)abstractEntity resolution (ER) is the problem of identifying and merging records that refer to the same real-world entity. In many scenarios, raw records are stored under heterogeneous environment. To leverage such records better, most existing work assume that schema matching and data exchange have been done to convert records under different schemas to those under a predefined schema. However, we observe that schema matching would lose information in some cases, which could be useful or even crucial to ER. To leverage sufficient information from heterogeneous sources, in this paper, we address several challenges of ER on heterogeneous records and show that none of existing similarity metrics or their transformations could be applied to find similar records under heterogeneous settings. Motivated by this, we propose a novel framework to iteratively find records which refer to the same entity as well as an index to generate candidates and accelerate similarity computation. Evaluations on real-world datasets show the effectiveness and efficiency of our methods. Yiming Lin 0002, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
ICDE | 4 |
| 2020 | Auto-Model: Utilizing Research Papers and HPO Techniques to Deal with the CASH problemabstractIn many fields, a mass of algorithms with completely different hyperparameters have been developed to address the same type of problems. Choosing the algorithm and hyperparameter setting correctly can promote the overall performance greatly, but users often fail to do so due to the absence of knowledge. How to help users to effectively and quickly select the suitable algorithm and hyperparameter settings for the given task instance is an important research topic nowadays, which is known as the CASH problem. In this paper, we design the Auto-Model approach, which makes full use of known information in the related research paper and introduces hyperparameter optimization techniques, to solve the CASH problem effectively. Auto-Model tremendously reduces the cost of algorithm implementations and hyperparameter configuration space, and thus capable of dealing with the CASH problem efficiently and easily. To demonstrate the benefit of Auto-Model, we compare it with classical Auto-Weka approach. The experimental results show that our proposed approach can provide superior results and achieves better performance in a short time. Chunnan Wang, Hongzhi Wang 0001, Tianyu Mu, Jianzhong Li 0001, Hong Gao 0001 |
ICDE | 5 |
| 2020 | Learned sketches for frequency estimation
Meifan Zhang, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
Inf. Sci. | 4 |
| 2020 | TAILOR: time-aware facility location recommendation based on massive trajectories
Zhixin Qi, Hongzhi Wang 0001, Chunnan Wang, Jianzhong Li 0001, Hong Gao 0001 |
Knowl. Inf. Syst. | 6 |
| 2020 | SUM-optimal histograms for approximate query processing
Meifan Zhang, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
Knowl. Inf. Syst. | 4 |
| 2020 | Efficient Entity Resolution on Heterogeneous RecordsabstractEntity resolution (ER) is the problem of identifying and merging records that refer to the same real-world entity. In many scenarios, raw records are stored under heterogeneous environment. Specifically, the schemas of records may differ from each other. To leverage such records better, most existing work assume that schema matching and data exchange have been done to convert records under different schemas to those under a predefined schema. However, we observe that schema matching would lose information in some cases, which could be useful or even crucial to ER. To leverage sufficient information from heterogeneous sources, in this paper, we address several challenges of ER on heterogeneous records and show that none of existing similarity metrics or their transformations could be applied to find similar records under heterogeneous settings. Motivated by this, we design the similarity function and propose a novel framework to iteratively find records which refer to the same entity. Regarding efficiency, we build an index to generate candidates and accelerate similarity computation. Evaluations on real-world datasets show the effectiveness and efficiency of our methods. Yiming Lin 0002, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
IEEE Trans. Knowl. Data Eng. | 4 |
| 2020 | Modeling and Computing Probabilistic Skyline on Incomplete DataabstractThe skyline query is important in the database community. In recent years, the researches on incomplete data have been increasingly considered, especially for the skyline query. However, the existing skyline definition on incomplete data cannot provide users with valuable references. In this paper, we propose a novel skyline definition utilizing probabilistic model on incomplete data where each point has a probability to be in the skyline. In particular, it returns K points with the highest skyline probabilities. In addition, we propose incomplete models and estimate probability density functions of missing values on independent, correlated, and anti-correlated distributions, respectively. Meanwhile, it is a big challenge to compute probabilistic skyline on incomplete data. We propose three efficient algorithms SPISkyline, SPCSkyline, and SPASkyline for probabilistic skyline computation on incomplete data complying with independent, correlated, and anti-correlated distributions, respectively. They employ pruning strategy, optimization of the process of probability computation, and sorting technique to improve the efficiency of probabilistic skyline computation on incomplete data. Our experimental results demonstrate that our proposed concept of probabilistic skyline is an effective method to tackle skyline query on incomplete data and our algorithms are tens of times faster than the naive algorithm on both synthetic and real datasets. Kaiqi Zhang 0001, Hong Gao 0001, Xixian Han, Zhipeng Cai 0001, Jianzhong Li 0001 |
IEEE Trans. Knowl. Data Eng. | 2 |
| 2019 | Leon: A Distributed RDF Engine for Multi-query Processing
Xintong Guo, Hong Gao 0001, Zhaonian Zou |
DASFAA (1) | 2 |
| 2019 | Rule-Based Entity Resolution on Database with Hidden Temporal Information (Extended Abstract)abstractIn this paper, we deal with the problem of rule-based entity resolution on imprecise temporal data. We use record matching dependencies and data currency constraints to derive temporal records' information and trend of their attributes' evolvement with elapsing of time. We firstly block records into smaller blocks, and then by exploring data currency constraints. We propose a temporal clustering approach with two steps, i.e., the skeleton clustering and the banding clustering. Experiments show that our method achieves both high accuracy and efficiency with hidden temporal information on datasets without imprecise timestamps. Hongzhi Wang 0001, Xiaoou Ding, Jianzhong Li 0001, Hong Gao 0001 |
ICDE | 4 |
| 2019 | ECOQUG: An Effective Ensemble Community Scoring FunctionabstractA reasonable and effective community scoring function is of great significance since it can measure the community quality of groups we found more properly and help us discover more valuable communities. In this paper, we propose a new community scoring function, ECOQUG. Different from the existing community scoring functions, ECOQUG is designed based on the experimental study and theoretical analysis of groups with different community qualities. ECOQUG is more convincing. In addition, we design a series of experiments to examine the effectiveness and accuracy of ECOQUG and 13 other classic community scoring functions comprehensively. The extensive experimental results show that ECOQUG is effective and better than other community scoring functions. Chunnan Wang, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
ICDE | 5 |
| 2019 | FreshJoin: An Efficient and Adaptive Algorithm for Set Containment JoinabstractAbstract This paper revisits set containment join (SCJ) problem, which uses the subset relationship (i.e., $$\subseteq$$ ⊆ ) as condition to join set-valued attributes of two relations and has many fundamental applications in commercial and scientific fields. Existing in-memory algorithms for SCJ are either signature-based or prefix-tree-based. The former incurs high CPU cost because of the enumeration of signatures, while the latter incurs high space cost because of the storage of prefix trees. This paper proposes a new adaptive parameter-free in-memory algorithm, named as frequency-hashjoin or $${\mathsf {FreshJoin}}$$ FreshJoin in short, to evaluate SCJ efficiently. $${\mathsf {FreshJoin}}$$ FreshJoin builds a flat index on-the-fly to record three kinds of signatures (i.e., two least frequent elements and a hash signature whose length is determined adaptively by the frequencies of elements in the universe set). The index consists of two sparse inverted indices and two arrays which record hash signatures of all sets in each relation. The index is well organized such that $${\mathsf {FreshJoin}}$$ FreshJoin can avoid enumerating hash signatures. The rationality of this design is explained. And, the time and space cost of the proposed algorithm, which provide a rule to choose $${\mathsf {FreshJoin}}$$ FreshJoin from existing algorithms, are analyzed. Experiments on 16 real-life datasets show that $${\mathsf {FreshJoin}}$$ FreshJoin usually reduces more than 50% of space cost while remains as competitive as the state-of-the-art algorithms in running time. Jizhou Luo, Wei Zhang 0017, Shengfei Shi, Hong Gao 0001, Jianzhong Li 0001, Shouxu Jiang |
Data Sci. Eng. | 4 |
| 2019 | Data source selection for information integration in big data era
Yiming Lin 0002, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
Inf. Sci. | 4 |
| 2019 | PRS: efficient range skyline computation on massive data via presorting
Xixian Han, Xue Li 0001, Bailing Wang, Hong Gao 0001 |
Knowl. Inf. Syst. | 4 |
| 2019 | Ranking the big sky: efficient top-k skyline computation on massive data
Xixian Han, Bailing Wang, Jianzhong Li 0001, Hong Gao 0001 |
Knowl. Inf. Syst. | 4 |
| 2019 | Cleanits: A Data Cleaning System for Industrial Time SeriesabstractThe great amount of time series generated by machines has enormous value in intelligent industry. Knowledge can be discovered from high-quality time series, and used for production optimization and anomaly detection in industry. However, the original sensors data always contain many errors. This requires a sophisticated cleaning strategy and a well-designed system for industrial data cleaning. Motivated by this, we introduce Cleanits, a system for industrial time series cleaning. It implements an integrated cleaning strategy for detecting and repairing three kinds of errors in industrial time series. We develop reliable data cleaning algorithms, considering features of both industrial time series and domain knowledge. We demonstrate Cleanits with two real datasets from power plants. The system detects and repairs multiple dirty data precisely, and improves the quality of industrial time series effectively. Cleanits has a friendly interface for users, and result visualization along with logs are available during each cleaning process. Xiaoou Ding, Hongzhi Wang 0001, Jiaxuan Su, Zijue Li, Jianzhong Li 0001, Hong Gao 0001 |
Proc. VLDB Endow. | 6 |
| 2018 | Detecting Top-k Active Inter-Community Jumpers in Dynamic Information Networks
Xinrui Wang 0001, Hong Gao 0001, Tianbai Yue, Jianzhong Li 0001 |
DASFAA (1) | 2 |
| 2018 | Efficient Top-k Dominating Computation on Massive Data (Extended Abstract)abstractTop-k dominating query is an important operation to return a set of interesting points from a potentially huge data space. For any tuple, its domination score is defined as the number of tuples dominated by the tuple. Top-k dominating query returns the k tuples with the highest domination scores. This paper proposes a novel table-scan-based TDTS algorithm to compute the top-k dominating results on massive data efficiently. TDTS presorts table T to generate PT, whose tuples are arranged in the order of round-robin retrieval on the sorted lists. TDTS performs sequential scan on PT to obtain query results. It is proved that TDTS has the characteristic of early termination. This paper devises efficient pruning operation to reduce the number of candidate tuples and the number of assistant tuples significantly. The experimental results show that, TDTS has a markedly superior performance compared with the existing algorithms. Xixian Han, Jianzhong Li 0001, Hong Gao 0001 |
ICDE | 3 |
| 2018 | Parallel algorithms for flexible pattern matching on big graphs
Hongzhi Wang 0001, Ning Li 0003, Jianzhong Li 0001, Hong Gao 0001 |
Inf. Sci. | 4 |
| 2018 | Efficiently processing deterministic approximate aggregation query on massive data
Xixian Han, Bailing Wang, Jianzhong Li 0001, Hong Gao 0001 |
Knowl. Inf. Syst. | 4 |
| 2018 | Rule-Based Entity Resolution on Database with Hidden Temporal InformationabstractIn this paper, we deal with the problem of rule-based entity resolution on imprecise temporal data. Entity resolution (ER) is widely explored in research community, but the problem on temporal data, especially without available timestamps, has not been studied well yet. Because of the elapsing of time, records referring to the same entity observed in different time periods may be different. Besides traditional similarity-based ER approaches, by carefully exploring several data quality rules, e.g., matching dependency and data currency, much information can be obtained to facilitate to cope with this problem. In this paper, we use such rules to derive temporal records' information of time order and trend of their attributes' evolvement with elapsing of time. Specifically, we first block records into smaller blocks, and then by exploring data currency constraints, we propose a temporal clustering approach with two steps, i.e., the skeleton clustering and the banding clustering. Experimental results on both real and synthetic data show that our entity resolution method can achieve both high accuracy and efficiency on datasets with hidden temporal information. Hongzhi Wang 0001, Xiaoou Ding, Jianzhong Li 0001, Hong Gao 0001 |
IEEE Trans. Knowl. Data Eng. | 4 |
| 2017 | CleanCloud: Cleaning Big Data on CloudabstractWe describe CleanCloud, a system for cleaning big data based on Map-Reduce paradigm in cloud. Using Map-Reduce paradigm, the system detects and repairs various data quality problems in big data. We demonstrate the following features of CleanCloud: (a) the support for cleaning multiple data quality problems in big data; (b) a visual tool for watching the status of big data cleaning process and tuning the parameters for data cleaning; (c) the friendly interface for data input and setting as well as cleaned data collection for big data. CleanCloud is a promising system that provides scalable and effect data cleaning mechanism for big data in either files or databases. Hongzhi Wang 0001, Xiaoou Ding, Xiangying Chen, Jianzhong Li 0001, Hong Gao 0001 |
CIKM | 5 |
| 2017 | Probabilistic Skyline on Incomplete DataabstractThe skyline query is important in database community. In recent years, the researches on incomplete data have been increasingly considered, especially for the skyline query. However, the existing skyline definition on incomplete data cannot provide users with valuable references. In this paper, we propose a novel skyline definition utilizing probabilistic model on incomplete data where each point has a probability to be in the skyline. In particular, it returnsK points with the highest skyline probabilities. Meanwhile, it is a big challenge to compute probabilistic skyline on incomplete data. We propose an efficient algorithm PISkyline, which utilizes two pruning strategies to reduce the number of points and adopts two optimizations to accelerate probability computation for each point. Nevertheless, PISkyline is susceptible to the order of input data and there is still a great deal of room for optimization. We develop a point-level sorting technique by adjusting the order of accessing points to further improve the efficiency of PISkyline. Our experimental results demonstrate that our algorithms are tens of times faster than the naive algorithm on both synthetic and real datasets. Kaiqi Zhang 0001, Hong Gao 0001, Xixian Han, Zhipeng Cai 0001, Jianzhong Li 0001 |
CIKM | 2 |
| 2017 | Drawing Density Core-Sets from Incomplete Relational Data
Yongnan Liu, Jianzhong Li 0001, Hong Gao 0001 |
DASFAA (2) | 3 |
| 2017 | Similarity Search Combining Query Relaxation and Diversification
Ruoxi Shi, Hongzhi Wang 0001, Tao Wang 0014, Yutai Hou, Jianzhong Li 0001, Hong Gao 0001 |
DASFAA (2) | 7 |
| 2017 | Efficient Batch Grouping in Relational Datasets
Jianzhong Li 0001, Hong Gao 0001 |
DASFAA (1) | 3 |
| 2017 | RSkycube: Efficient Skycube Computation by Reusing Principle
Kaiqi Zhang 0001, Hong Gao 0001, Xixian Han, Donghua Yang, Zhipeng Cai 0001, Jianzhong Li 0001 |
DASFAA (2) | 2 |
| 2017 | A survey of query result diversification
Kaiping Zheng, Hongzhi Wang 0001, Zhixin Qi, Jianzhong Li 0001, Hong Gao 0001 |
Knowl. Inf. Syst. | 5 |
| 2017 | Extracting Kernel Dataset from Big Sensory Data in Wireless Sensor NetworksabstractThe amount of sensory data manifests an explosive growth due to the increasing popularity of Wireless Sensor Networks (WSNs). The scale of sensory data in many applications has already exceeded several petabytes annually, which is beyond the computation and transmission capabilities of conventional WSNs. On the other hand, the information carried by big sensory data has high redundancy because of strong correlation among sensory data. In this paper, we introduce the novel concept of ϵ-Kernel Dataset, which is only a small data subset and can represent the vast information carried by big sensory data with the information loss rate being less than ϵ, where ϵ can be arbitrarily small. We prove that drawing the minimum ϵ-Kernel Dataset is polynomial time solvable and provide a centralized algorithm with O(n3) time complexity. Furthermore, a distributed algorithm with constant complexity O(1) is designed. It is shown that the result returned by the distributed algorithm can satisfy the ϵ requirement with a near optimal size. Furthermore, two distributed algorithms of maintaining the correlation coefficients among sensor nodes are developed. Finally, the extensive real experiment results and simulation results are presented. The results indicate that all the proposed algorithms have high performance in terms of accuracy and energy efficiency. Siyao Cheng, Zhipeng Cai 0001, Jianzhong Li 0001, Hong Gao 0001 |
IEEE Trans. Knowl. Data Eng. | 4 |
| 2017 | Efficient Top-k Dominating Computation on Massive DataabstractIn many applications, top-k dominating query is an important operation to return k tuples with the highest domination scores in a potentially huge data space. It is analyzed that the existing algorithms have their performance problems when performed on massive data. This paper proposes a novel table-scan-based TDTS algorithm to efficiently compute top-k dominating results. TDTS first presorts the table for early termination. The early termination checking is proposed in this paper, along with the theoretical analysis of scan depth. The pruning operation for tuples is devised in this paper. The theoretical pruning effect shows that the number of tuples maintained in TDTS can be reduced substantially. The extensive experimental results, conducted on synthetic and real-life data sets, show that TDTS outperforms the existing algorithms significantly. Xixian Han, Jianzhong Li 0001, Hong Gao 0001 |
IEEE Trans. Knowl. Data Eng. | 3 |
| 2016 | Fuzzy Keywords Query
Hongzhi Wang 0001, Hong Gao 0001, Jianzhong Li 0001, Shenbin Huang |
APWeb (2) | 3 |
| 2016 | A Chronic Disease Analysis System Based on Dirty Data Mining
Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001, Shenbin Huang |
APWeb (2) | 4 |
| 2016 | Incomplete Data Classification Based on Multiple Views
Hongzhi Wang 0001, Fanshan Meng, Jianzhong Li 0001, Hong Gao 0001 |
APWeb (2) | 5 |
| 2016 | Efficient Influence Maximization in Weighted Independent Cascade Model
Yaxuan Wang, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
DASFAA (2) | 4 |
| 2016 | Crowdsourcing-Enhanced Missing Values Imputation Based on Bayesian Network
Chen Ye 0003, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001, Siyao Cheng |
DASFAA (1) | 4 |
| 2016 | Approximate Iceberg Cube on Heterogeneous Dimensions
Dan Yin, Hong Gao 0001, Zhaonian Zou, Jianzhong Li 0001, Zhipeng Cai 0001 |
DASFAA (2) | 2 |
| 2016 | One-Pass Inconsistency Detection Algorithms for Big Data
Meifan Zhang, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
DASFAA (1) | 4 |
| 2016 | Efficient top-k retrieval on massive dataabstractTop-k query is an important operation to return a set of interesting points from a potentially huge data space. In top-k query, a ranking function is provided to determine the score of each tuple and k tuples with the largest scores are returned. Xixian Han, Jianzhong Li 0001, Hong Gao 0001 |
ICDE | 3 |
| 2016 | Set-based Similarity Search for Time SeriesabstractA fundamental problem of time series is k nearest neighbor (k-NN) query processing. However, existing methods are not fast enough for large dataset. In this paper, we propose a novel approach, STS3, to process k-NN queries by transforming time series to sets and measure the similarity under Jaccard metric. Our approach is more accurate than Dynamic Time Warping(DTW) in our suitable scenarios and it is faster than most of the existing methods, due to the efficient similarity search for sets. Besides, we also developed an index, a pruning and an approximation technique to improve the k-NN query procedure. As shown in the experimental results, all of them could accelerate the query processing effectively. Jinglin Peng, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
SIGMOD Conference | 4 |
| 2016 | Minimum Spanning Tree on Uncertain Graphs
Anzhen Zhang, Zhaonian Zou, Jianzhong Li 0001, Hong Gao 0001 |
WISE (2) | 4 |
| 2016 | Skyline for geo-textual data
Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
GeoInformatica | 4 |
| 2016 | TKAP: Efficiently processing top-k query on massive data by adaptive pruning
Xixian Han, Xianmin Liu, Jianzhong Li 0001, Hong Gao 0001 |
Knowl. Inf. Syst. | 4 |
| 2016 | An efficient pruning strategy for approximate string matching over suffix tree
Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
Knowl. Inf. Syst. | 4 |
| 2016 | Efficient entity resolution based on subgraph cohesion
Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
Knowl. Inf. Syst. | 3 |
| 2016 | Extend tree edit distance for effective object identification
Hongzhi Wang 0001, Yang Wang 0096, Jianzhong Li 0001, Hong Gao 0001 |
Knowl. Inf. Syst. | 6 |
| 2016 | Repairing Data through Regular ExpressionsabstractSince regular expressions are often used to detect errors in sequences such as strings or date, it is natural to use them for data repair. Motivated by this, we propose a data repair method based on regular expression to make the input sequence data obey the given regular expression with minimal revision cost. The proposed method contains two steps, sequence repair and token value repair. For sequence repair, we propose the Regular-expression-based Structural Repair (RSR in short) algorithm. RSR algorithm is a dynamic programming algorithm that utilizes Nondeterministic Finite Automata (NFA) to calculate the edit distance between a prefix of the input string and a partial pattern regular expression with time complexity of O ( nm 2 ) and space complexity of O ( mn ) where m is the edge number of NFA and n is the input string length. We also develop an optimization strategy to achieve higher performance for long strings. For token value repair, we combine the edit-distance-based method and associate rules by a unified argument for the selection of the proper method. Experimental results on both real and synthetic data show that the proposed method could repair the data effectively and efficiently. Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
Proc. VLDB Endow. | 5 |
| 2015 | A Fair Data Market System with Data Quality Evaluation and Repairing Recommendation
Xiaoou Ding, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
APWeb | 5 |
| 2015 | Answering Spatial Approximate Keyword Queries in Disks
Donghua Yang, Yuhong Wei, Hong Gao 0001, Jianzhong Li 0001 |
APWeb | 4 |
| 2015 | TDEP: efficiently processing top-k dominating query on massive data
Xixian Han, Jianzhong Li 0001, Hong Gao 0001 |
Knowl. Inf. Syst. | 3 |
| 2015 | SEPT: an efficient skyline join algorithm on massive data
Xixian Han, Jianzhong Li 0001, Hong Gao 0001 |
Knowl. Inf. Syst. | 3 |
| 2015 | Efficient Top-k Retrieval on Massive DataabstractIn many applications, top-k query is an important operation to return a set of interesting points in a potentially huge data space. It is analyzed in this paper that the existing algorithms cannot process top-k query on massive data efficiently. This paper proposes a novel table-scan-based T2S algorithm to efficiently compute top-k results on massive data. T2S first constructs the presorted table, whose tuples are arranged in the order of the round-robin retrieval on the sorted lists. T2S maintains only fixed number of tuples to compute results. The early termination checking for T2S is presented in this paper, along with the analysis of scan depth. The selective retrieval is devised to skip the tuples in the presorted table which are not top-k results. The theoretical analysis proves that selective retrieval can reduce the number of the retrieved tuples significantly. The construction and incremental-update/batchprocessing methods for the used structures are proposed in this paper. The extensive experimental results, conducted on synthetic and real-life data sets, show that T2S has a significant advantage over the existing algorithms. Xixian Han, Jianzhong Li 0001, Hong Gao 0001 |
IEEE Trans. Knowl. Data Eng. | 3 |
| 2015 | Rule-Based Method for Entity ResolutionabstractThe objective of entity resolution (ER) is to identify records referring to the same real-world entity. Traditional ER approaches identify records based on pairwise similarity comparisons, which assumes that records referring to the same entity are more similar to each other than otherwise. However, this assumption does not always hold in practice and similarity comparisons do not work well when such assumption breaks. We propose a new class of rules which could describe the complex matching conditions between records and entities. Based on this class of rules, we present the rule-based entity resolution problem and develop an on-line approach for ER. In this framework, by applying rules to each record, we identify which entity the record refers to. Additionally, we propose an effective and efficient rule discovery algorithm. We experimentally evaluated our rule-based ER algorithm on real data sets. The experimental results show that both our rule discovery algorithm and rule-based ER algorithm can achieve high performance. Lingli Li, Jianzhong Li 0001, Hong Gao 0001 |
IEEE Trans. Knowl. Data Eng. | 3 |
| 2014 | TruthOrRumor: Truth Judgment from Web
Guangze Liu, Hongzhi Wang 0001, ChengHui Chen, Hong Gao 0001 |
APWeb | 4 |
| 2014 | Cleanix: A Big Data Cleaning ParfaitabstractIn this demo, we present Cleanix, a prototype system for cleaning relational Big Data. Cleanix takes data integrated from multiple data sources and cleans them on a shared-nothing machine cluster. The backend system is built on-top-of an extensible and flexible data-parallel substrate - the Hyracks framework. Cleanix supports various data cleaning tasks such as abnormal value detection and correction, incomplete data filling, de-duplication, and conflict resolution. We demonstrate that Cleanix is a practical tool that supports effective and efficient data cleaning at the large scale. Hongzhi Wang 0001, Yingyi Bu, Jianzhong Li 0001, Hong Gao 0001 |
CIKM | 5 |
| 2014 | Harbinger: An Analyzing and Predicting System for Online Social Network Users' Behavior
Hongzhi Wang 0001, Lucheng Zhong, Jianzhong Li 0001, Hong Gao 0001 |
DASFAA (2) | 5 |
| 2014 | Multi-way Theta-Join Based on CMD Storage Method
Lei Li 0003, Hong Gao 0001, Mingrui Zhu, Zhaonian Zou |
DASFAA (1) | 2 |
| 2014 | Truth Discovery Based on Crowdsourcing
Chen Ye 0003, Hongzhi Wang 0001, Hong Gao 0001, Jianzhong Li 0001, Hui Xie 0003 |
WAIM | 3 |
| 2014 | Efficiently processing (p,ε)-approximate join aggregation on massive data
Xixian Han, Jianzhong Li 0001, Hong Gao 0001 |
Inf. Sci. | 3 |
| 2014 | Approximate joins for XML at label level
Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
Inf. Sci. | 5 |
| 2014 | Finding the Cost-Optimal Path with Time Constraint over Time-Dependent GraphsabstractShortest path query is an important problem and has been well studied in static graphs. However, in practice, the costs of edges in graphs always change over time. We call such graphs as time-dependent graphs. In this paper, we study how to find a cost-optimal path with time constraint in time-dependent graphs. Most existing works regarding the Time-Dependent Shortest Path (TDSP) problem focus on finding a shortest path with the minimum travel time. All these works are based on the following fact: the earliest arrival time at a vertex v can be derived from the earliest arrival time at v 's neighbors. Unfortunately, this fact does not hold for our problem. In this paper, we propose a novel algorithm to compute a cost-optimal path with time constraint in time-dependent graphs. We show that the time and space complexities of our algorithm are O ( kn log n + mk ) and O (( n + m ) k ) respectively. We confirm the effectiveness and efficiency of our algorithm through conducting experiments on real datasets with synthetic cost. Yajun Yang, Hong Gao 0001, Jeffrey Xu Yu, Jianzhong Li 0001 |
Proc. VLDB Endow. | 2 |
| 2013 | ProductSeeker: entity-based product retrieval for e-commerceabstractThe retrieval results of online products information in e-commerce web sites are often difficult for users to use because of different descriptions for the same product. This paper proposes ProductSeeker, a product retrieval system organizing results according to their referring real-world entities for the conveniences of users. In the demonstration, we will present our system providing friendly interface to retrieve fresh product information and refining results according to feedback. Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
SIGIR | 4 |
| 2013 | Entity Resolution on Uncertain Relations
Huabin Feng, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
WAIM | 4 |
| 2013 | CUVIM: Extracting Fresh Information from Social Network
Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
WAIM | 5 |
| 2013 | Imputation for Categorical Attributes with Probabilistic Reasoning
Lian Jin, Hongzhi Wang 0001, Hong Gao 0001 |
WAIM | 3 |
| 2013 | A Data Cleaning Framework Based on User Feedback
Hui Xie 0003, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
WAIM | 4 |
| 2013 | An Efficient Entity Resolution Method for Large RelationsabstractEntity resolution (ER) is to find the data objects referring to the same real-world entity. When ER is performed on relations, the crucial operator is record matching, which is to judge whether two tuples refer to the same real-world entity. Record matching is a longstanding issue. However, with massive and complex data in applications, current methods cannot satisfy the requirements. A Sequence-rule-based record matching (SeReMatching) is presented with the consideration of both which attributes should be used and their importance in record matching. We have changed the Bloom filter and therefore the checking speed is greatly increased. The best performance of the algorithm makes the complexity of entity resolution O (n). And extensive experiments were performed to evaluate our methods. Hongzhi Wang 0001, Hong Gao 0001, Jianzhong Li 0001 |
Int. J. Cooperative Inf. Syst. | 3 |
| 2012 | Finding the optimal path over multi-cost graphsabstractShortest path query is an important problem in graphs and has been well-studied. However, most approaches for shortest path query are based on single-cost (weight) graphs. In this paper, we introduce the definition of multi-cost graph and study a novel query: the optimal path query over multi-cost graphs. We propose a best-first branch and bound search algorithm with two optimizing strategies. Furthermore, we propose a novel index named k-cluster index to make our method more space and time efficient for large graphs. We discuss how to construct and utilize k-cluster index. We confirm the effectiveness and efficiency of our algorithms using real-life datasets in experiments. Yajun Yang, Jeffrey Xu Yu, Hong Gao 0001, Jianzhong Li 0001 |
CIKM | 3 |
| 2012 | Mining frequent subgraphs over uncertain graph databases under probabilistic semantics
Jianzhong Li 0001, Zhaonian Zou, Hong Gao 0001 |
VLDB J. | 3 |
| 2011 | Schema Mapping with Quality Assurance for Data Integration
Xu Bian, Hongzhi Wang 0001, Hong Gao 0001 |
APWeb | 3 |
| 2011 | Context-based entity description rule for entity resolutionabstractIn this paper, we consider the entity resolution(ER) problem, which is to identify objects referring to the same real-world entity. Prior work of ER involves expensive similarity comparison and clustering approaches. Additionally, the quality of entity resolution may be low due to insufficient information. To address these problems, by adopting context information of data objects, we present a novel framework of entity resolution, context-based entity description (CED), to make context information help entity resolution. In our framework, each entity is described by a set of CEDs. During entity resolution, objects are only compared with CEDs to determine its corresponding entity. Additionally, we propose efficient algorithms for CED discovery and CED-based entity resolution. We experimentally evaluated our CED-based ER algorithm on the real DBLP datasets, and the experimental results show that our algorithm can achieve both high precision and recall as well as outperform existing methods. Lingli Li, Jianzhong Li 0001, Hongzhi Wang 0001, Hong Gao 0001 |
CIKM | 4 |
| 2011 | Finding multiple induced disjoint paths in general graphs
Kejia Zhang 0001, Hong Gao 0001, Jianzhong Li 0001 |
Inf. Process. Lett. | 2 |
| 2011 | Efficient Algorithms for Summarizing Graph PatternsabstractWe investigate the problem of summarizing frequent subgraphs by a smaller set of representative patterns. We show that some special graph patterns, called δ-jump patterns in this paper, must be representative patterns. Based on the fact, we devise two algorithms, RP-FP and RP-GD, to mine a representative set that summarizes frequent subgraphs. RP-FP derives a representative set from frequent closed subgraphs, whereas RP-GD mines a representative set from graph databases directly. Three novel heuristic strategies, Last-Succeed-First-Check, Reverse-Path-Trace, and Nephew-Representative-Based-Cover, are proposed to further improve the efficiency of RP-GD. RP-FP can provide a tight ratio bound but has heavy computation cost. RP-GD cannot provide a ratio bound guarantee but is more efficient than RP-FP. We also make use of the similarity between sibling branches in the graph pattern space to devise another much more efficient algorithm, RP-Leap, for mining a representative set that can approximately summarize frequent subgraphs. Our extensive experiments on both real and synthetic data sets verify the summarization quality and efficiency of our algorithms. To further demonstrate the interestingness of representative patterns, we study an application of representative patterns to classification. We demonstrate that the classification accuracy achieved by representative pattern-based model is no less than that achieved by closed graph pattern-based model. Jianzhong Li 0001, Yong Liu 0029, Hong Gao 0001 |
IEEE Trans. Knowl. Data Eng. | 3 |
| 2011 | Dynamic constraints for record matching
Wenfei Fan, Hong Gao 0001, Xibei Jia, Jianzhong Li 0001, Shuai Ma 0001 |
VLDB J. | 2 |
| 2010 | Finding top-k maximal cliques in an uncertain graphabstractExisting studies on graph mining focus on exact graphs that are precise and complete. However, graph data tends to be uncertain in practice due to noise, incompleteness and inaccuracy. This paper investigates the problem of finding top-k maximal cliques in an uncertain graph. A new model of uncertain graphs is presented, and an intuitive measure is introduced to evaluate the significance of vertex sets. An optimized branch-and-bound algorithm is developed to find top-k maximal cliques, which adopts efficient pruning rules, a new searching strategy and effective preprocessing methods. The extensive experimental results show that the proposed algorithm is very efficient on real uncertain graphs, and the top-k maximal cliques are very useful for real applications, e.g. protein complex prediction. Zhaonian Zou, Jianzhong Li 0001, Hong Gao 0001 |
ICDE | 3 |
| 2010 | Discovering frequent subgraphs over uncertain graph databases under probabilistic semanticsabstractFrequent subgraph mining has been extensively studied on certain graph data. However, uncertainties are inherently accompanied with graph data in practice, and there is very few work on mining uncertain graph data. This paper investigates frequent subgraph mining on uncertain graphs under probabilistic semantics. Specifically, a measure called φ-frequent probability is introduced to evaluate the degree of recurrence of subgraphs. Given a set of uncertain graphs and two numbers 0 < φ,τ < 1, the goal is to quickly find all subgraphs with φ-frequent probability at least τ. Due to the NP-hardness of the problem, an approximate mining algorithm is proposed for this problem. Let 0 < δ < 1 be a parameter. The algorithm guarantees to find any frequent subgraph S with probability at least (1 - δ/2)s, where s is the number of edges of S. In addition, it is thoroughly discussed how to set δ to guarantee the overall approximation quality of the algorithm. The extensive experiments on real uncertain graph data verify that the algorithm is efficient and that the mining results have very high quality. Zhaonian Zou, Hong Gao 0001, Jianzhong Li 0001 |
KDD | 2 |
| 2010 | Indexing multi-dimensional data in a cloud systemabstractProviding scalable database services is an essential requirement for extending many existing applications of the Cloud platform. Due to the diversity of applications, database services on the Cloud must support large-scale data analytical jobs and high concurrent OLTP queries. Most existing work focuses on some specific type of applications. To provide an integrated framework, we are designing a new system, epiC, as our solution to next-generation database systems. In epiC, indexes play an important role in improving overall performance. Different types of indexes are built to provide efficient query processing for different applications. Sai Wu, Hong Gao 0001, Jianzhong Li 0001, Beng Chin Ooi |
SIGMOD Conference | 3 |
| 2010 | DCUBE: CUBE on Dirty Databases
Guohua Jiang, Hongzhi Wang 0001, Shouxu Jiang, Jianzhong Li 0001, Hong Gao 0001 |
WAIM | 5 |
| 2010 | EIF: A Framework of Effective Entity Identification
Lingli Li, Hongzhi Wang 0001, Hong Gao 0001, Jianzhong Li 0001 |
WAIM | 3 |
| 2010 | Efficient Duplicate Record Detection Based on Similarity Estimation
Mohan Li, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
WAIM | 4 |
| 2010 | Mining Frequent Subgraph Patterns from Uncertain Graph DataabstractIn many real applications, graph data is subject to uncertainties due to incompleteness and imprecision of data. Mining such uncertain graph data is semantically different from and computationally more challenging than mining conventional exact graph data. This paper investigates the problem of mining uncertain graph data and especially focuses on mining frequent subgraph patterns on an uncertain graph database. A novel model of uncertain graphs is presented, and the frequent subgraph pattern mining problem is formalized by introducing a new measure, called expected support. This problem is proved to be NP-hard. An approximate mining algorithm is proposed to find a set of approximately frequent subgraph patterns by allowing an error tolerance on expected supports of discovered subgraph patterns. The algorithm uses efficient methods to determine whether a subgraph pattern can be output or not and a new pruning method to reduce the complexity of examining subgraph patterns. Analytical and experimental results show that the algorithm is very efficient, accurate, and scalable for large uncertain graph databases. To the best of our knowledge, this paper is the first one to investigate the problem of mining frequent subgraph patterns from uncertain graph data. Zhaonian Zou, Jianzhong Li 0001, Hong Gao 0001 |
IEEE Trans. Knowl. Data Eng. | 3 |
| 2009 | Frequent subgraph pattern mining on uncertain graph dataabstractGraph data are subject to uncertainties in many applications due to incompleteness and imprecision of data. Mining uncertain graph data is semantically different from and computationally more challenging than mining exact graph data. This paper investigates the problem of mining frequent subgraph patterns from uncertain graph data. The frequent subgraph pattern mining problem is formalized by designing a new measure called expected support. An approximate mining algorithm is proposed to find an approximate set of frequent subgraph patterns by allowing an error tolerance on the expected supports of the discovered subgraph patterns. The algorithm uses an efficient approximation algorithm to determine whether a subgraph pattern can be output or not. The analytical and experimental results show that the algorithm is very efficient, accurate and scalable for large uncertain graph databases. Zhaonian Zou, Jianzhong Li 0001, Hong Gao 0001 |
CIKM | 3 |
| 2009 | Efficient Algorithms for Skyline Top-K Keyword Queries on XML Streams
Lingli Li, Hongzhi Wang 0001, Jianzhong Li 0001, Hong Gao 0001 |
DASFAA | 4 |
| 2009 | A novel approach for efficient supergraph query processing on graph databasesabstractIn recent years, large amount of data modeled by graphs, namely graph data, have been collected in various domains. Efficiently processing queries on graph databases has attracted a lot of research attentions. Supergraph query is a kind of new and important queries in practice. A supergraph query, q, on a graph database D is to retrieve all graphs in D such that q is a supergraph of them. Because the number of graphs in databases is large and subgraph isomorphism testing is NP-complete, efficiently processing such queries is a big challenge. This paper first proposes an optimal compact method for organizing graph databases. Common subgraphs of the graphs in a database are stored only once in the compact organization of the database, in order to reduce the overall cost of subgraph isomorphism testings from stored graphs to queries during query processing. Then, an exact algorithm and an approximate algorithm for generating significant feature set with optimal order are proposed to construct indices on graph databases. The optimal order on the feature set is to reduce the number of subgraph isomorphism testings during query processing. Based on the compact organization of graph databases, a novel algorithm of testing subgraph isomorphisms from multiple graphs to one graph is presented. Finally, based on all these techniques, a query processing method is proposed. Analytical and experimental results show that the proposed algorithms outperform the existing similar algorithms by one to two orders of magnitude. 1. Jianzhong Li 0001, Hong Gao 0001, Zhaonian Zou |
EDBT | 3 |
| 2009 | iVA-File: Efficiently Indexing Sparse Wide Tables in Community SystemsabstractIn community web management systems (CWMS), storage structures inspired by universal tables are being used increasingly to manage sparse datasets. Such a sparse wide table (SWT) typically embodies thousands of attributes, with many of them being undefined in each tuple, and low-dimensional structured similarity search on a combination of numerical and text attributes is a common operation. However, many properties of such wide tables and their associated Web 2.0 services render most multi-dimensional indexing structures irrelevant. Recent studies in this area have mainly focused on improving the storage efficiency and efficient deployment of inverted indices; so far no new index has been proposed for indexing SWTs. The inverted index is fast for scanning but not efficient in reducing random accesses to the data file as it captures little information about the content of attribute values. In this paper, we propose the iVA-file that works on the basis of approximate contents and keeps scanning efficiency within a bounded range. We introduce the nG-signature to approximately represent data strings and improve the existing approximate vectors for numerical values. We also propose an efficient query processing strategy for the iVA-file, which is different from strategies used for existing scan-based indices. To enable the use of different metrics of distance between a query and a tuple that may vary from application to application, the iVA-file has been designed to be metric-oblivious and to provide efficient filter-and-refine search based on any rational metric. Extensive experiments on real datasets show that the iVA-file outperforms existing proposals in query efficiency significantly, at the same time, keeps a good update speed. Boduo Li, Mei Hui, Jianzhong Li 0001, Hong Gao 0001 |
ICDE | 4 |
| 2009 | Enabling epsilon-Approximate Querying in Sensor NetworksabstractData approximation is a popular means to support energy-efficient query processing in sensor networks. Conventional data approximation methods require users to specify fixed error bounds a prior to address the trade-off between result accuracy and energy efficiency of queries. We argue that this can be infeasible and inefficient when, as in many real-world scenarios, users are unable to determine in advance what error bounds can lead to affordable cost in query processing. We envision ε- approximate querying (EAQ) to bridge the gap. EAQ is a uniform data access scheme underlying various queries in sensor networks. It allows users or query executors to incrementally 'refine' previously obtained approximate data to reach arbitrary accuracy. EAQ not only grants more flexibility to in-network query processing, but also minimizes energy consumption through communicating data upto a just-sufficient level. To enable the EAQ scheme, we propose a novel data shuffling algorithm. The algorithm converts sensed datasets into special representations called multi-version array (MVA) . From prefixes of MVA , we can recover approximate versions of the entire dataset, where all individual data items have guaranteed error bounds. The EAQ scheme supports efficient and flexible processing of various queries including spatial window query, value range query, and queries with QoS constraints. The effectiveness and efficiency of the EAQ scheme are evaluated in a real sensor network testbed. Yu Liu 0002, Jianzhong Li 0001, Hong Gao 0001, Xiaolin Fang 0001 |
Proc. VLDB Endow. | 3 |
| 2008 | Summarizing Graph PatternsabstractSeveral efficient frequent subgraph mining algorithms have been recently proposed. However, the number of frequent graph patterns generated by these graph mining algorithms may be too large to be effectively explored by users, especially when the support threshold is low. In this paper, we propose to summarize frequent graph patterns by a much smaller number of representative graph patterns. Several novel concepts such as delta-covergraph,jumpvalueanddelta-jumppatternare proposed for efficiently summarizing frequent graph patterns. Based on the fact that all delta-jumppatternsmust be representative graph patterns, we propose two efficient algorithms for summarizing frequent graph patterns, RP-FP and RP-GD. The RP-FP algorithm computes representative graph patterns from a set of closed frequent graph patterns, whereas the RP-GD algorithm directly mines representative graph patterns from graph databases. Experimental results show that RP-FP and RP-GD are able to obtain compact summarization in both real and synthetic graph databases. When the number of closed graph patterns is very large, RP-GD is much more efficient than RP-FP, while achieving comparable summarization quality. Yong Liu 0029, Jianzhong Li 0001, Hong Gao 0001 |
ICDE | 3 |
| 2008 | Hash-base subgraph query processing method for graph-structured XML documentsabstractWhen XML documents are modeled as graphs, many research issues arise. In particular, there are many new challenges in query processing on graph-structured XML documents because traditional query processing techniques for tree-structured XML documents cannot be directly applied. This paper studies the problem of structural queries on graph-structured XML documents. A hash-based structural join algorithm, HGJoin, is first proposed to handle reachability queries on graph-structured XML documents. Then, it is extended to the algorithms to process structural queries in form of bipartite graphs. Finally, based on these algorithms, a strategy to process subgraph queries in form of general DAGs is proposed. Analysis and experiments show that all the algorithms have high performance. It is notable that all the algorithms above can be slightly modified to process structural queries in form of general graphs. Hongzhi Wang 0001, Jianzhong Li 0001, Jizhou Luo, Hong Gao 0001 |
Proc. VLDB Endow. | 4 |
| 2007 | Unsupervised Outlier Detection in Sensor Networks Using Aggregation Tree
Kejia Zhang 0001, Shengfei Shi, Hong Gao 0001, Jianzhong Li 0001 |
ADMA | 3 |
| 2007 | Adaptive Join Query Processing in Data Grids: Exploring Relation Partial Replicas and Load Balancing
Donghua Yang, Jianzhong Li 0001, Hong Gao 0001 |
DASFAA | 3 |
| 2007 | InfiniteDB: a pc-cluster based parallel massive database management systemabstractThis paper describes a PC-cluster based parallel DBMS, InfiniteDB, developed by the authors. InfiniteDB aims at efficiently storing and processing of massive databases in response to the rapidly growing in database size and the need of high performance analyzing of massive databases. It supports the parallelisms of intra-query, inter-query, intra-operation, inter-operation and pipelining. It provides effective strategies for processing massive databases including the multiple data declustering methods, the declustering-aware algorithms for the execution of relational operations and other database operations, and the adaptive query optimization method. It also provides the functions of parallel data warehousing and data mining, the coordinator-wrapper mechanism to support the integration of heterogeneous information resources on the Internet, and the fault tolerant and resilient infrastructures. It has been used in many applications and has proved quite effective for storing and processing massive databases in practice. Jianzhong Li 0001, Hong Gao 0001, Jizhou Luo, Shengfei Shi, Wei Zhang 0017 |
SIGMOD Conference | 2 |
| 2006 | New Algorithm for Computing Cube on Very Large Compressed Data SetsabstractData compression is an effective technique to improve the performance of data warehouses. Since cube operation represents the core of online analytical processing in data warehouses, it is a major challenge to develop efficient algorithms for computing cube on compressed data warehouses. To our knowledge, very few cube computation techniques have been proposed for compressed data warehouses to date in the literature. This paper presents a novel algorithm to compute cubes on compressed data warehouses. The algorithm operates directly on compressed data sets without the need of first decompressing them. The algorithm is applicable to a large class of mapping complete data compression methods. The complexity of the algorithm is analyzed in detail. The analytical and experimental results show that the algorithm is more efficient than all other existing cube algorithms. In addition, a heuristic algorithm to generate an optimal plan for computing cube is also proposed. Weili Wu 0001, Hong Gao 0001, Jianzhong Li 0001 |
IEEE Trans. Knowl. Data Eng. | 2 |
| 2004 | Parallel Hierarchical Data Cube for Range Sum Queries and Dynamic Updates
Jianzhong Li 0001, Hong Gao 0001 |
DEXA | 2 |
| 2003 | Hierarchical Data Cube for Range Queries and Dynamic Updates
Jianzhong Li 0001, Hong Gao 0001 |
ADBIS | 2 |
| 2003 | Xaggregation: Flexible Aggregation of XML Data
Hongzhi Wang 0001, Jianzhong Li 0001, Zhenying He, Hong Gao 0001 |
WAIM | 4 |