EDBT 2026 Demo / reviewers in the wild / expert
Hongtao Liu 0008
dblp:83/6946-8
· DBLP profile ↗
19ranked-venue papers in the field
6as first author
11since 2021 · last 2025
0000-0001-6939-3672ORCID · conflict
Domains — venue-derived; a paper can count in several
Information Retrieval & Web Search · 11 (5 first)Database Systems & Data Management · 4 (1 first)Data Mining & Knowledge Discovery · 2Knowledge Engineering, Semantic Web & Information Systems · 2
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2025 | PEPT: Expert Finding Meets Personalized Pre-TrainingabstractFinding experts is essential in Community Question Answering (CQA) platforms as it enables the effective routing of questions to potential users who can provide relevant answers. The key is to personalized learning expert representations based on their historical answered questions, and accurately matching them with target questions. Recently, the applications of Pre-Trained Language Models (PLMs) have gained significant attraction due to their impressive capability to comprehend textual data, and are widespread used across various domains. There have been some preliminary works exploring the usability of PLMs in expert finding, such as pre-training expert or question representations. However, these models usually learn pure text representations of experts from histories, disregarding personalized and fine-grained expert modeling. For alleviating this, we present a personalized pre-training and fine-tuning paradigm, which could effectively learn expert interest and expertise simultaneously. Specifically, in our pre-training framework, we integrate historical answered questions of one expert with one target question, and regard it as a candidate-aware expert-level input unit. Then, we fuse expert IDs into the pre-training for guiding the model to model personalized expert representations, which can help capture the unique characteristics and expertise of each individual expert. Additionally, in our pre-training task, we design (1) a question-level masked language model task to learn the relatedness between histories, enabling the modeling of question-level expert interest; (2) a vote-oriented task to capture question-level expert expertise by predicting the vote score the expert would receive. Through our pre-training framework and tasks, our approach could holistically learn expert representations including interests and expertise. Our method has been extensively evaluated on six real-world CQA datasets, and the experimental results consistently demonstrate the superiority of our approach over competitive baseline methods. Qiyao Peng 0001, Hongyan Xu 0001, Yinghui Wang 0005, Hongtao Liu 0008, Cuiying Huo, Wenjun Wang 0002 |
ACM Trans. Inf. Syst. | 4 |
| 2024 | Deep expertise and interest personalized transformer for expert finding
Yinghui Wang 0005, Qiyao Peng 0001, Hongtao Liu 0008, Hongyan Xu 0001, Minglai Shao 0001, Wenjun Wang 0002 |
Inf. Process. Manag. | 3 |
| 2024 | Group-Based Personalized News Recommendation with Long- and Short-Term Fine-Grained MatchingabstractPersonalized news recommendation aims to help users find news content they prefer, which has attracted increasing attention recently. There are two core issues in news recommendation: learning news representation and matching candidate news with user interests. In this context, “candidate” indicates potential for interest. Due to the superior ability to understand natural language demonstrated by Pretrained Language Models (PLMs), recent works utilize PLMs (e.g., BERT) to strengthen news modeling, obtaining more accurate user interest matching and achieving notable improvement in news recommendation. However, the existing PLM-based methods are usually incapable of fully exploring the fine-grained (i.e., word-level) relatedness between user behaviors and candidate news due to the heavy computational cost brought by PLMs. In this article, we propose a group-based personalized news recommendation method with long- and short-term matching mechanisms between users and candidate news based on PLMs to learn fine-grained matching efficiently and effectively. In our approach, we design to group user historical clicked news into chunks with quite shorter news sequences according to their clicked timestamps, which could alleviate the computation issues of PLMs. PLMs are applied in each group jointly with the candidate news to capture their word-level interaction, and global group-level matching is learned across different groups. In addition, the group-based mechanism could be naturally adapted for long- and short-term user representation learning, in which we build users’ long preferences from the representations of all groups and treat the last group as short interests, respectively. Finally, we employ a gate network to dynamically unify the group-level, long- and short-term representations, yielding comprehensive user-news matching effectively. Extensive experiments are conducted on two real-world datasets. The results show that our proposed method achieves superior performance in news recommendations. Hongyan Xu 0001, Qiyao Peng 0001, Hongtao Liu 0008, Yueheng Sun, Wenjun Wang 0002 |
ACM Trans. Inf. Syst. | 3 |
| 2023 | Sentiment-aware Review Summarization with Personalized Multi-task Fine-tuningabstractPersonalized review summarization is a challenging task in recommender systems, which aims to generate condensed and readable summaries for product reviews. Recently, some methods propose to adopt the sentiment signals of reviews to enhance the review summarization. However, most previous works only share the semantic features of reviews via preliminary multi-task learning, while ignoring the rich personalized information of users and products, which is crucial to both sentiment identification and comprehensive review summarization. In this paper, we propose a sentiment-aware review summarization method with an elaborately designed multi-task fine-tuning framework to make full use of personalized information of users and products effectively based on Pretrained Language Models (PLMs). We first denote two types of personalized information including IDs and historical summaries to indicate their identification and semantics information respectively. Subsequently, we propose to incorporate the IDs of the user/product into the PLMs-based encoder to learn the personalized representations of input reviews and their historical summaries in a fine-tuning way. Based on this, an auxiliary context-aware review sentiment classification task and a further sentiment-guided personalized review summarization task are jointly learned. Specifically, the sentiment representation of input review is used to identify relevant historical summaries, which are then treated as additional semantic context features to enhance the summary generation process. Extensive experimental results show our approach could generate sentiment-consistent summaries and outperforms many competitive baselines on both review summarization and sentiment classification tasks. Hongyan Xu 0001, Hongtao Liu 0008, Zhepeng Lv, Qing Yang 0033, Wenjun Wang 0002 |
CIKM | 2 |
| 2022 | Efficient Non-sampling Expert FindingabstractExpert finding aims at seeking potential users to answer new questions in Community Question Answering (CQA) websites. Most existing methods focus on designing matching frameworks between questions and experts, and rely on negative sampling technology for model training. However, sampling would lose lots of useful information about experts and questions, and make these sampling-based methods suffer the bias and non-robust issues, which may lead to an insufficient matching performance for expert findings. In this paper, we propose a novel Efficient Non-sampling Expert Finding model, named ENEF, which could learn accurate representations of questions and experts from whole training data. In our approach, we adopt a rather basic question encoder and a simple matching framework, then an efficient whole-data optimization method is elaborately designed to learn the model parameters without negative sampling with rather a low space and time complexity. Extensive experimental results on four real-world CQA datasets demonstrate that our model ENEF could achieve better performance and faster training efficiency than existing state-of-the-art expert finding methods. Hongtao Liu 0008, Zhepeng Lv, Qing Yang 0033, Dongliang Xu, Qiyao Peng 0001 |
CIKM | 1 |
| 2022 | ExpertBert: Pretraining Expert FindingabstractExpert Finding is an important task in Community Question Answering (CQA) platforms, which could help route questions to potential expertise users to answer. The key is to model the question content and experts based on their historical answered questions accurately. Recently Pretrained Language Models (PLMs, e.g., Bert) have shown superior text modeling ability and have been used in expert finding preliminary. However, most PLMs-based models focus on the corpus or document granularity during pretraining, which is inconsistent with the downstream expert modeling and finding task. In this paper, we propose an expert-level pretraining language model named ExpertBert, aiming to model questions, experts as well as question-expert matching effectively in a pretraining manner. In our approach, we aggregate the historical answered questions of an expert as the expert-specific input.Besides, we integrate the target question into the input and design a label-augmented Masked Language Model (MLM) task to further capture the matching pattern between question and experts, which makes the pretraining objectives that more closely resemble the downstream expert finding task. Experimental results and detailed analysis on real-world CQA datasets demonstrate the effectiveness of our ExpertBert. Hongtao Liu 0008, Zhepeng Lv, Qing Yang 0033, Dongliang Xu, Qiyao Peng 0001 |
CIKM | 1 |
| 2022 | Towards Personalized Review Generation with Gated Multi-source Fusion Network
Hongtao Liu 0008, Wenjun Wang 0002, Hongyan Xu 0001, Qiyao Peng 0001, Pengfei Jiao, Yueheng Sun |
DASFAA (3) | 1 |
| 2022 | Towards a Multi-View Attentive Matching for Personalized Expert FindingabstractIn Community Question Answering (CQA) websites, expert finding aims at seeking suitable experts to answer questions. The key is to explore the inherent relevance based on the representations of questions and experts. Existing methods usually learn these features from single view information (e.g., question title), which would be not insufficient to fully learn their representations. In this paper, we propose a personalized expert finding method with a multi-view attentive matching mechanism. We design three modules under the multi-view paradigm, including a question encoder, an intra-view encoder, and an inter-view encoder, which aims to comprehend the comprehensive relationships between experts and questions. In the question encoder, we learn the multi-view question features from its title, body and tag views respectively. In the intra-view encoder, we design an interactive attention network to capture the view-specific relevance between the target question and the historical answered questions of experts for all different views. Furthermore, in the inter-view encoder we employ a personalized attention network to aggregate different view information to learn expert/question representations. In this way, the match of the expert and question could be fully captured from the multi-view information via the intra- and inter-view mechanisms. Experimental results on six datasets demonstrate that the proposed method could achieve better performance than existing state-of-the-art methods. Qiyao Peng 0001, Hongtao Liu 0008, Yinghui Wang 0005, Hongyan Xu 0001, Pengfei Jiao, Minglai Shao 0001, Wenjun Wang 0002 |
WWW | 2 |
| 2021 | Neural Adversarial Review Summarization with Hierarchical Personalized Attention
Hongyan Xu 0001, Hongtao Liu 0008, Wenjun Wang 0002, Pengfei Jiao |
DASFAA (2) | 2 |
| 2021 | Transformer Reasoning Network for Personalized Review SummarizationabstractReview summarization aims to generate condensed text for online product reviews, and has attracted more and more attention in E-commerce platforms. In addition to the input review, the quality of generated summaries is highly related to the characteristics of users and products, e.g., their historical summaries, which could provide useful clues for the target summary generation. However, most previous works ignore the underlying interaction between the given input review and the corresponding historical summaries. Therefore, we aim to explore how to effectively incorporate the history information into the summary generation. In this paper, we propose a novel transformer-based reasoning framework for personalized review summarization. We design an elaborately adapted transformer network containing an encoder and a decoder, to fully infer the important and informative parts among the historical summaries in terms of the input review to generate more comprehensive summaries. In the encoder of our approach, we develop an inter- and intra-attention to involve the history information selectively to learn the personalized representation of the input review. In the decoder part, we propose to incorporate the constructed reasoning memory learning from historical summaries into the original transformer decoder, and design a memory-decoder attention module to retrieve more useful information for the final summary generation. Extensive experiments are conducted and the results show our approach could generate more reasonable summaries for recommendation, and outperform many competitive baseline methods. Hongyan Xu 0001, Hongtao Liu 0008, Pengfei Jiao, Wenjun Wang 0002 |
SIGIR | 2 |
| 2021 | Toward Comprehensive User and Item Representations via Three-tier Attention NetworkabstractProduct reviews can provide rich information about the opinions users have of products. However, it is nontrivial to effectively infer user preference and item characteristics from reviews due to the complicated semantic understanding. Existing methods usually learn features for users and items from reviews in single static fashions and cannot fully capture user preference and item features. In this article, we propose a neural review-based recommendation approach that aims to learn comprehensive representations of users/items under a three-tier attention framework. We design a review encoder to learn review features from words via a word-level attention, an aspect encoder to learn aspect features via a review-level attention, and a user/item encoder to learn the final representations of users/items via an aspect-level attention. In word- and review-level attentions, we adopt the context-aware mechanism to indicate importance of words and reviews dynamically instead of static attention weights. In addition, the attentions in the word and review levels are of multiple paradigms to learn multiple features effectively, which could indicate the diversity of user/item features. Furthermore, we propose a personalized aspect-level attention module in user/item encoder to learn the final comprehensive features. Extensive experiments are conducted and the results in rating prediction validate the effectiveness of our method. Hongtao Liu 0008, Wenjun Wang 0002, Qiyao Peng 0001, Fangzhao Wu, Pengfei Jiao |
ACM Trans. Inf. Syst. | 1 |
| 2020 | Mutual Self Attention Recommendation with Gated Fusion Between Ratings and Reviews
Qiyao Peng 0001, Hongtao Liu 0008, Yang Yu 0030, Hongyan Xu 0001, Weidi Dai, Pengfei Jiao |
DASFAA (3) | 2 |
| 2020 | Neural Unified Review Recommendation with Cross AttentionabstractThere are two main paradigms to exploit review information for recommendation. One is to concatenate all reviews of a user/item into a long document, which may neglect the different usefulness of reviews. The other paradigm is review-level i.e., analyzing each review separately to learn user/item features. In fact, the two paradigms are complementary, and fusing them together has the potential to learn more comprehensive features of users/items. Hence, we propose a unified framework to jointly learn document- and review-level representations of users/items. We design a document encoder to learn document-level features of users/items. Then, we use a review encoder to learn representations of reviews from words, and a user/item encoder to learn review-level features of users/items. Besides, different reviews from the same user may have different importance for different target items due to different item characteristics. We propose a cross attention model for user representation learning whose query vector is the embedding of target item ID, and apply it to the above three encoders to select different informative words and reviews for different target items. Extensive experiments validate the effectiveness of our method. Hongtao Liu 0008, Wenjun Wang 0002, Hongyan Xu 0001, Qiyao Peng 0001, Pengfei Jiao |
SIGIR | 1 |
| 2020 | Variational autoencoder based bipartite network embedding by integrating local and global structure
Pengfei Jiao, Minghu Tang, Hongtao Liu 0008, Chunyu Lu, Huaming Wu |
Inf. Sci. | 3 |
| 2019 | Bipartite Network Embedding via Effective Integration of Explicit and Implicit Relations
Pengfei Jiao, Wenjun Wang 0002, Chunyu Lu, Hongtao Liu 0008, Bo Wang 0011 |
DASFAA (1) | 5 |
| 2019 | NRSA: Neural Recommendation with Summary-Aware Attention
Qiyao Peng 0001, Peiyi Wang, Wenjun Wang 0002, Hongtao Liu 0008, Yueheng Sun, Pengfei Jiao |
KSEM (1) | 4 |
| 2019 | SSNE: Status Signed Network Embedding
Chunyu Lu, Pengfei Jiao, Hongtao Liu 0008, Hongyan Xu 0001, Wenjun Wang 0002 |
PAKDD (3) | 3 |
| 2019 | NRPA: Neural Recommendation with Personalized AttentionabstractExisting review-based recommendation methods usually use the same model to learn the representations of all users/items from reviews posted by users towards items. However, different users have different preference and different items have different characteristics. Thus, the same word or the similar reviews may have different informativeness for different users and items. In this paper we propose a neural recommendation approach with personalized attention to learn personalized representations of users and items from reviews. We use a review encoder to learn representations of reviews from words, and a user/item encoder to learn representations of users or items from reviews. We propose a personalized attention model, and apply it to both review and user/item encoders to select different important words and reviews for different users/items. Experiments on five datasets validate our approach can effectively improve the performance of neural recommendation. Hongtao Liu 0008, Fangzhao Wu, Wenjun Wang 0002, Xianchen Wang, Pengfei Jiao, Chuhan Wu, Xing Xie 0001 |
SIGIR | 1 |
| 2018 | NE-FLGC: Network Embedding Based on Fusing Local (First-Order) and Global (Second-Order) Network Structure with Node Content
Hongyan Xu 0001, Hongtao Liu 0008, Wenjun Wang 0002, Yueheng Sun, Pengfei Jiao |
PAKDD (2) | 2 |