Qing Liu 0001

dblp:53/4481-1 · DBLP profile ↗
← Back
26ranked-venue papers in the field
3as first author
10since 2021 · last 2026
0000-0001-7895-9551ORCID · conflict

Domains — venue-derived; a paper can count in several

Database Systems & Data Management · 12 (1 first)Information Retrieval & Web Search · 8 (2 first)Knowledge Engineering, Semantic Web & Information Systems · 4Data Mining & Knowledge Discovery · 2
YearPublicationVenuePosition
2026 MemoTime: Memory-Augmented Temporal Knowledge Graph Enhanced Large Language Model Reasoning
abstract
Large Language Models (LLMs) have achieved impressive reasoning abilities, but struggle with temporal understanding, especially when questions involve multiple entities, compound operators, and evolving event sequences. Temporal Knowledge Graphs (TKGs), which capture vast amounts of temporal facts in a structured format, offer a reliable source for temporal reasoning. However, existing TKG-based LLM reasoning methods still struggle with four major challenges: maintaining temporal faithfulness in multi-hop reasoning, achieving multi-entity temporal synchronization, adapting retrieval to diverse temporal operators, and reusing prior reasoning experience for stability and efficiency. To address these issues, we propose MemoTime, a memory-augmented temporal knowledge graph framework that enhances LLM reasoning through structured grounding, recursive reasoning, and continual experience learning. MemoTime decomposes complex temporal questions into a hierarchical Tree of Time, enabling operator-aware reasoning that enforces monotonic timestamps and co-constrains multiple entities under unified temporal bounds. A dynamic evidence retrieval layer adaptively selects operator-specific retrieval strategies, while a self-evolving experience memory stores verified reasoning traces, toolkit decisions, and sub-question embeddings for cross-type reuse. Comprehensive experiments on multiple temporal QA benchmarks show that MemoTime achieves overall state-of-the-art results, outperforming the strong baseline by up to 24.0%. Furthermore, MemoTime enables smaller models (e.g., Qwen3-4B) to achieve reasoning performance comparable to that of GPT-4-Turbo.
Xingyu Tan 0001, Xiaoyang Wang 0002, Qing Liu 0001, Xiwei Xu 0001, Xin Yuan 0004, Liming Zhu 0001, Wenjie Zhang 0001
WWW3
2026 PRoH: Dynamic Planning and Reasoning over Knowledge Hypergraphs for Retrieval-Augmented Generation
Xiangjun Zai, Xingyu Tan 0001, Xiaoyang Wang 0002, Qing Liu 0001, Xiwei Xu 0001, Wenjie Zhang 0001
WWW4
2025 Rule-Validated Negative Sampling for Temporal Knowledge Graphs
Naimeng Yao, Qing Liu 0001, Quan Bai 0001
PAKDD (4)2
2025 Paths-over-Graph: Knowledge Graph Empowered Large Language Model Reasoning
abstract
Large Language Models (LLMs) have achieved impressive results in various tasks but struggle with hallucination problems and lack of relevant knowledge, especially in deep complex reasoning and knowledge-intensive tasks.Knowledge Graphs (KGs), which capture vast amounts of facts in a structured format, offer a reliable source of knowledge for reasoning.However, existing KG-based LLM reasoning methods face challenges like handling multi-hop reasoning, multi-entity questions, and effectively utilizing graph structures.To address these issues, we propose Paths-over-Graph (PoG), a novel method that enhances LLM reasoning by integrating knowledge reasoning paths from KGs, improving the interpretability and faithfulness of LLM outputs.PoG tackles multi-hop and multi-entity questions through a three-phase dynamic multi-hop path exploration, which combines the inherent knowledge of LLMs with factual knowledge from KGs.In order to improve the efficiency, PoG prunes irrelevant information from the graph exploration first and introduces efficient three-step pruning techniques that incorporate graph structures, LLM prompting, and a pre-trained language model (e.g., SBERT) to effectively narrow down the explored candidate paths.This ensures all reasoning paths contain highly relevant information captured from KGs, making the reasoning faithful and interpretable in problem-solving.PoG innovatively utilizes graph structure to prune the irrelevant noise and represents the first method to implement multi-entity deep path detection on KGs for LLM reasoning tasks.Comprehensive experiments on five benchmark KGQA datasets demonstrate PoG outperforms the stateof-the-art method ToG across GPT-3.5-Turbo and GPT-4, achieving an average accuracy improvement of 18.9%.Notably, PoG with GPT-3.5-Turbosurpasses ToG with GPT-4 by up to 23.9%.
Xingyu Tan 0001, Xiaoyang Wang 0002, Qing Liu 0001, Xiwei Xu 0001, Xin Yuan 0004, Wenjie Zhang 0001
WWW3
2024 Simpler is More: Efficient Top-K Nearest Neighbors Search on Large Road Networks
abstract
Top- k Nearest Neighbors ( k NN) problem on road network has numerous applications on location-based services. As direct search using the Dijkstra's algorithm results in a large search space, a plethora of complex-index-based approaches have been proposed to speedup the query processing. However, even with the current state-of-the-art approach, long query processing delays persist, along with significant space overhead and prohibitively long indexing time. In this paper, we depart from the complex index designs prevalent in existing literature and propose a simple index named KNN-Index. With KNN-Index, we can answer a k NN query optimally and progressively with small and size-bounded index. To improve the index construction performance, we propose a bidirectional construction algorithm which can effectively share the common computation during the construction. Theoretical analysis and experimental results on real road networks demonstrate the superiority of KNN-Index over the state-of-the-art approach in query processing performance, index size, and index construction efficiency.
Long Yuan 0001, Wenjie Zhang 0001, Zi Chen 0003, Xuemin Lin 0001, Qing Liu 0001
Proc. VLDB Endow.6
2024 A Lightweight, Effective, and Efficient Model for Label Aggregation in Crowdsourcing
abstract
Due to the presence of noise in crowdsourced labels, label aggregation (LA) has become a standard procedure for post-processing these labels. LA methods estimate true labels from crowdsourced labels by modeling worker quality. However, most existing LA methods are iterative in nature. They require multiple passes through all crowdsourced labels, jointly and iteratively updating true labels and worker qualities until a termination condition is met. As a result, these methods are burdened with high space and time complexities, which restrict their applicability in scenarios where scalability and online aggregation are essential. Furthermore, defining a suitable termination condition for iterative algorithms can be challenging. In this article, we view LA as a dynamic system and represent it as a Dynamic Bayesian Network. From this dynamic model, we derive two lightweight and scalable algorithms: LAonepassand LAtwopass. These algorithms can efficiently and effectively estimate worker qualities and true labels by traversing all labels at most twice, thereby eliminating the need for explicit termination conditions and multiple traversals over the crowdsourced labels. Due to their dynamic nature, the proposed algorithms are also capable of performing label aggregation online. We provide theoretical proof of the convergence property of the proposed algorithms and bound the error of the estimated worker qualities. Furthermore, we analyze the space and time complexities of our proposed algorithms, demonstrating their equivalence to those of majority voting. Through experiments conducted on 20 real-world datasets, we demonstrate that our proposed algorithms can effectively and efficiently aggregate labels in both offline and online settings, even though they traverse all labels at most twice. The code is on https://github.com/yyang318/LA_onepass .
Yi Yang 0036, Zhong-Qiu Zhao, Gong-Qing Wu, Xingrui Zhuo, Qing Liu 0001, Quan Bai 0001, Weihua Li 0007
ACM Trans. Knowl. Discov. Data5
2023 Towards Efficient Shortest Path Counting on Billion-Scale Graphs
abstract
Shortest path counting computes the number of shortest paths between two vertices on a graph, which can be used in the applications such as social network search and POI (Point of Interest) recommendation. The state-of-the-art approach leverages index to speed up the query processing. However, this approach incurs not only significant space overheads but also prohibitive indexing time, which makes it inapplicable to handle such queries on large graphs. Motivated by this, in this paper, we aim to propose a new solution to scale up the shortest path counting. To achieve this goal, we first propose a novel size-tunable indexing framework, which allows users to tune the index space consumption based on their requirements for query processing efficiency and available memory. Based on the size-tunable indexing framework, we devise a new parallel paradigm to accelerate index construction. We conduct experiments on 15 real graphs and the experimental results demonstrate that our new approach significantly outperforms the state-of-the-art approach regarding the index space cost and index construction cost, and is able to handle billion-scale graphs that the state-of-the-art approach cannot process with less than 5 milliseconds query processing time on all test cases.
Long Yuan 0001, Zi Chen 0003, Wenjie Zhang 0001, Xuemin Lin 0001, Qing Liu 0001
ICDE6
2023 Entity-Relation Distribution-Aware Negative Sampling for Knowledge Graph Embedding
Naimeng Yao, Qing Liu 0001, Yi Yang 0036, Weihua Li 0007, Quan Bai 0001
ISWC2
2022 Bitcoin Transaction Confirmation Time Prediction: A Classification View
Limeng Zhang, Rui Zhou 0001, Qing Liu 0001, Jiajie Xu 0001, Chengfei Liu
WISE3
2021 Transaction Confirmation Time Estimation in the Bitcoin Blockchain
Limeng Zhang, Rui Zhou 0001, Qing Liu 0001, Jiajie Xu 0001, Chengfei Liu
WISE (1)3
2020 Dual incremental fuzzy schemes for frequent itemsets discovery in streaming numeric data
Hui Zheng 0001, Peng Li 0011, Qing Liu 0001, Jinjun Chen, Guang-Li Huang, Junfeng Wu 0010, Jing He 0004
Inf. Sci.3
2019 Automated Class Correction and Enrichment in the Semantic Web
Molood Barati, Quan Bai 0001, Qing Liu 0001
J. Web Semant.3
2018 On the Discovery of Continuous Truth: A Semi-supervised Approach with Partial Ground Truths
Yi Yang 0036, Quan Bai 0001, Qing Liu 0001
WISE (1)3
2016 Semantic Similarity of Workflow Traces with Various Granularities
Qing Liu 0001, Quan Bai 0001, Yi Yang 0036
WISE (1)1
2013 CTrace: semantic comparison of multi-granularity process traces
abstract
A process trace describes the processes taken in a workflow to generate a particular result. Given many process traces, each with a large amount of very low level information, it is a challenge to make process traces meaningful to different users. It is more challenging to compare two complex process traces generated by heterogenous systems and have different levels of granularity. We present CTrace, a system that (1) lets users explore the conceptual abstraction of large process traces with different levels of granularity, and (2) provides semantic comparison among traces in which both the structural and the semantic similarity are considered. The above functions are underpinned by a novel notion of multi-granularity process trace and efficient multi-granularity similarity comparison algorithms.
Qing Liu 0001, Kerry L. Taylor, Xiang Zhao 0002, Geoffrey Squire, Xuemin Lin 0001, Corne Kloppers, Richard Miller
SIGMOD Conference1
2013 A Partition-Based Approach to Structure Similarity Search
abstract
Graphs are widely used to model complex data in many applications, such as bioinformatics, chemistry, social networks, pattern recognition, etc. A fundamental and critical query primitive is to efficiently search similar structures in a large collection of graphs. This paper studies the graph similarity queries with edit distance constraints. Existing solutions to the problem utilize fixed-size overlapping substructures to generate candidates, and thus become susceptible to large vertex degrees or large distance thresholds. In this paper, we present a partition-based approach to tackle the problem. By dividing data graphs into variable-size non-overlapping partitions, the edit distance constraint is converted to a graph containment constraint for candidate generation. We develop efficient query processing algorithms based on the new paradigm. A candidate pruning technique and an improved graph edit distance algorithm are also developed to further boost the performance. In addition, a cost-aware graph partitioning technique is devised to optimize the index. Extensive experiments demonstrate our approach significantly outperforms existing approaches.
Xiang Zhao 0002, Chuan Xiao 0001, Xuemin Lin 0001, Qing Liu 0001, Wenjie Zhang 0001
Proc. VLDB Endow.4
2011 A Semantic Portal for Next Generation Monitoring Systems
Jinguang Zheng, Linyun Fu, Evan W. Patton, Timothy Lebo, Li Ding 0001, Qing Liu 0001, Joanne S. Luciano, Deborah L. McGuinness
ISWC (2)7
2009 Detecting Projected Outliers in High-Dimensional Data Streams
Ji Zhang 0001, Qigang Gao, Hai H. Wang, Qing Liu 0001, Kai Xu 0003
DEXA4
2008 A Hybrid Prediction Model for Moving Objects
abstract
Existing prediction methods in moving objects databases cannot forecast locations accurately if the query time is far away from the current time. Even for near future prediction, most techniques assume the trajectory of an object's movements can be represented by some mathematical formulas of motion functions based on its recent movements. However, an object's movements are more complicated than what the mathematical formulas can represent. Prediction based on an object's trajectory patterns is a powerful way and has been investigated by several work. But their main interest is how to discover the patterns. In this paper, we present a novel prediction approach, namely The Hybrid Prediction Model, which estimates an object's future locations based on its pattern information as well as existing motion functions using the object's recent movements. Specifically, an object's trajectory patterns which have ad-hoc forms for prediction are discovered and then indexed by a novel access method for efficient query processing. In addition, two query processing techniques that can provide accurate results for both near and distant time predictive queries are presented. Our extensive experiments demonstrate that proposed techniques are more accurate and efficient than existing forecasting schemes.
Hoyoung Jeung, Qing Liu 0001, Heng Tao Shen, Xiaofang Zhou 0001
ICDE2
2008 A multi-resolution surface distance model for k-NN query processing
Xiaofang Zhou 0001, Heng Tao Shen, Qing Liu 0001, Kai Xu 0003, Xuemin Lin 0001
VLDB J.4
2007 Error minimization in approximate range aggregates
Xuemin Lin 0001, Qing Zhang 0001, Yidong Yuan, Qing Liu 0001
Data Knowl. Eng.4
2006 Summarizing level-two topological relations in large spatial datasets
abstract
Summarizing topological relations is fundamental to many spatial applications including spatial query optimization. In this article, we present several novel techniques to effectively construct cell density based spatial histograms for range (window) summarizations restricted to the four most important level-two topological relations: contains, contained, overlap, and disjoint. We first present a novel framework to construct a multiscale Euler histogram in 2D space with the guarantee of the exact summarization results for aligned windows in constant time. To minimize the storage space in such a multiscale Euler histogram, an approximate algorithm with the approximate ratio 19/12 is presented, while the problem is shown NP-hard generally. To conform to a limited storage space where a multiscale histogram may be allowed to have only k Euler histograms, an effective algorithm is presented to construct multiscale histograms to achieve high accuracy in approximately summarizing aligned windows. Then, we present a new approximate algorithm to query an Euler histogram that cannot guarantee the exact answers; it runs in constant time. We also investigate the problem of nonaligned windows and the problem of effectively partitioning the data space to support nonaligned window queries. Finally, we extend our techniques to 3D space. Our extensive experiments against both synthetic and real world datasets demonstrate that the approximate multiscale histogram techniques may improve the accuracy of the existing techniques by several orders of magnitude while retaining the cost efficiency, and the exact multiscale histogram technique requires only a storage space linearly proportional to the number of cells for many popular real datasets.
Xuemin Lin 0001, Qing Liu 0001, Yidong Yuan, Xiaofang Zhou 0001, Hongjun Lu
ACM Trans. Database Syst.2
2006 Towards multidimensional subspace skyline analysis
abstract
The skyline operator is important for multicriteria decision-making applications. Although many recent studies developed efficient methods to compute skyline objects in a given space, none of them considers skylines in multiple subspaces simultaneously. More importantly, the fundamental problem on the semantics of skylines remains open: Why and in which subspaces is (or is not) an object in the skyline? Practically, users may also be interested in the skylines in any subspaces. Then, what is the relationship between the skylines in the subspaces and those in the super-spaces? How can we effectively analyze the subspace skylines? Can we efficiently compute skylines in various subspaces and answer various analytical queries?In this article, we tackle the problem of multidimensional subspace skyline computation and analysis. We explore skylines in subspaces. First, we propose the concept of Skycube, which consists of skylines of all possible nonempty subspaces of a given full space. Once a Skycube is materialized, any subspace skyline queries can be answered online. However, Skycube cannot fully address the semantic concerns and may contain redundant information. To tackle the problem, we introduce a novel notion of skyline group which essentially is a group of objects that coincide in the skylines of some subspaces. We identify the decisive subspaces that qualify skyline groups in the subspace skylines. The new notions concisely capture the semantics and the structures of skylines in various subspaces. Multidimensional roll-up and drill-down analysis is introduced. We also develop efficient algorithms to compute Skycube, skyline groups and their decisive subspaces. A systematic performance study using both real data sets and synthetic data sets is reported to evaluate our approach.
Jian Pei 0001, Yidong Yuan, Xuemin Lin 0001, Martin Ester, Qing Liu 0001, Wei Wang 0011, Yufei Tao 0001, Jeffrey Xu Yu, Qing Zhang 0001
ACM Trans. Database Syst.6
2005 Summarizing Spatial Relations - A Hybrid Histogram
Qing Liu 0001, Xuemin Lin 0001, Yidong Yuan
APWeb1
2005 Efficient Computation of the Skyline Cube
Yidong Yuan, Xuemin Lin 0001, Qing Liu 0001, Wei Wang 0011, Jeffrey Xu Yu, Qing Zhang 0001
VLDB3
2003 Multiscale Histograms: Summarizing Topological Relations in Large Spatial Datasets
Xuemin Lin 0001, Qing Liu 0001, Yidong Yuan, Xiaofang Zhou 0001
VLDB2