EDBT 2026 Demo / reviewers in the wild / expert
Zihao Li 0005
dblp:175/8858-5
· DBLP profile ↗
15ranked-venue papers in the field
8as first author
15since 2021 · last 2026
0000-0002-1802-4284ORCID · conflict
Domains — venue-derived; a paper can count in several
Information Retrieval & Web Search · 11 (7 first)Data Mining & Knowledge Discovery · 4 (1 first)
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2026 | Multi-Interest Recommendation: A SurveyabstractExisting recommendation methods struggle to model users’ multifaceted preferences due to the diversity and volatility of user behavior, as well as the inherent uncertainty and ambiguity of item themes in practical scenarios. Multi-interest recommendation addresses this challenge by explicitly extracting multiple interest representations from users’ historical interactions, enabling fine-grained preference modeling and more accurate recommendations. It has attracted considerable attention in recommendation research. However, current recommendation surveys have either delved into specific recommendation tasks and downstream applications or focused on approaches that model users and items as single representations with cutting-edge techniques, overlooking users’ diverse preferences and the multifaceted aspects of items. In this work, we systematically review the progress, solutions, challenges, and future directions of multi-interest recommendation by answering the following three questions: (1) Why is multi-interest modeling significantly important for recommendation? (2) What aspects are focused on by multi-interest modeling in recommendation? and (3) How can multi-interest modeling be applied, along with the technical details of the representative modules? We hope that this survey establishes a fundamental framework and delivers a preliminary overview for researchers interested in this field and committed to further exploration. The implementation of multi-interest recommendation summarized in this survey is maintained at https://github.com/WHUIR/Multi-Interest-Recommendation-A-Survey . Zihao Li 0005, Lixin Zou, Aixin Sun, Chenliang Li 0005 |
ACM Trans. Inf. Syst. | 1 |
| 2026 | Corrigendum: One Model for All: Large Language Models Are Domain-Agnostic Recommendation SystemsabstractThis is a corrigendum for the article “One Model for All: Large Language Models are Domain-Agnostic Recommendation Systems” published in ACM Trans. Inf. Syst . 43, 5, Article 118 (July 2025), 27 pages. Zuoli Tang, Zhaoxin Huan, Zihao Li 0005, Chilin Fu, Jun Zhou 0011, Lixin Zou, Chenliang Li 0005 |
ACM Trans. Inf. Syst. | 3 |
| 2025 | SarRec: Statistically-guaranteed Augmented Retrieval for RecommendationabstractRecently, Large Language Models with Retrieval-Augmented Generation (RAG) have recently emerged as a powerful paradigm for sequential recommendation. However, existing methods typically retrieve items for each user without any principled mechanism for guaranteeing the reliability of generated recommendations, limiting their trustworthiness. To address this, we introduce SarRec : Statistically-guaranteed Augmented Retrieval for Recommendations, a framework that uses a simple retrieval step to provide relevant context and delivers calibrated, uncertainty-aware predictions with formal statistical guarantees. Specifically, SarRec first constructs the user's context set, utilizing a lightweight differentiable retrieval mechanism for identifying relevant context, and then calibrates the LLM's outputs by adapting the conformal prediction mechanism. We further provide a theoretical analysis that establishes an upper bound on the expected risk of recommendation performance metrics. Extensive experiments on multiple datasets from different domains validate the effectiveness of our framework. Nitin Bisht, Zihao Li 0005, Guandong Xu, Xianzhi Wang 0001 |
CIKM | 3 |
| 2025 | Reembedding and Reweighting are Needed for Tail Item Sequential RecommendationabstractApplying large vision models (LVMs) and large language models (LLMs) for item embedding is becoming cutting-edge for sequential recommendation, given their success in broad applications. Despite their advantages over traditional approaches, these models suffer more significant performance degradation on tail items against conventional ID-based solutions, which are largely overlooked by recent research. In this paper, we substantiate the above challenges as (1) all-in ground-truth, i.e., the standard cross-entropy (CE) loss focuses solely on the target items while treating all non-ground-truth equally, causing insufficient optimization for tail items, and (2) knowledge transfer tax, i.e., the knowledge encapsulated in LLMs and LVMs dominates the optimization process due to insufficient training for tail items. We propose Rewarding and reembedding, a simple yet efficient method to address the above challenges. Specifically, we reinitialize tail item embedding via a Gaussian distribution to alleviate knowledge transfer tax; besides, a rewarding function is incorporated in the CE loss, which adaptively adjusts item rewards during training to encourage the model to pay more attention to tail items rather than exclusively optimizing for ground-truth. Overall, our method enables a more nuanced optimization and is mathematically comparable to the direct preference optimization (DPO) in LLMs. Our extensive experiments on three public datasets show our method outperforms fourteen baselines in overall performance and improves the performance on tail items by a large margin. Our code is available at https://github.com/Yuhanleeee/R2Rec. Zihao Li 0005, Yakun Chen, Xianzhi Wang 0001 |
WWW | 1 |
| 2025 | Large language models are few-shot multivariate time series classifiersabstractAbstract Large Language Models (LLMs) are widely applied in time series analysis. Yet, their utility in few-shot classification—a scenario with limited training data—remains unexplored. We aim to leverage the pre-trained knowledge in LLMs to overcome the data scarcity problem within multivariate time series. To this end, we propose LLMFew, an LLM-enhanced framework, to investigate the feasibility and capacity of LLMs for few-shot multivariate time series classification (MTSC). We first introduce a Patch-wise Temporal Convolution Encoder (PTCEnc) to align time series data with the textual embedding input of LLMs. Then, we fine-tune the pre-trained LLM decoder with Low-rank Adaptations (LoRA) to enable effective representation learning from time series data. Experimental results show our model consistently outperforms state-of-the-art baselines by a large margin, achieving 125.2% and 50.2% improvement in classification accuracy on Handwriting and EthanolConcentration datasets, respectively. Our results also show LLM-based methods achieve comparable performance to traditional models across various datasets in few-shot MTSC, paving the way for applying LLMs in practical scenarios where labeled data are limited. Our code is available at https://github.com/junekchen/llm-fewshot-mtsc . Yakun Chen, Zihao Li 0005, Chao Yang 0024, Xianzhi Wang 0001, Guandong Xu |
Data Min. Knowl. Discov. | 2 |
| 2025 | Efficient and explainable sequential recommendation with language model
Zihao Li 0005, Lixin Zou, Chao Ma 0008, Chenliang Li 0005 |
Inf. Process. Manag. | 1 |
| 2025 | One Model for All: Large Language Models Are Domain-Agnostic Recommendation SystemsabstractSequential recommendation systems aim to predict users’ next likely interaction based on their history. However, these systems face data sparsity and cold-start problems. Utilizing data from other domains, known as multi-domain methods, is useful for alleviating these problems. However, traditional multi-domain methods rely on meaningless ID-based item representation, which makes it difficult to align items with similar meanings from different domains, yielding sup-optimal knowledge transfer. This article introduces LLM-Rec , a framework that utilizes pre-trained Large Language Models (LLMs) for domain-agnostic recommendation. Specifically, we mix user’s behaviors from multiple domains and concatenate item titles into a sentence, then use LLMs for generating user and item representations. By mixing behaviors across different domains, we can exploit the knowledge encoded in LLMs to bridge the semantic across over multi-domain behaviors, thus obtaining semantically rich representations and improving performance in all domains. Furthermore, we explore the underlying reasons why LLMs are effective and investigate whether LLMs can understand the semantic correlations as the recommendation model, and if advanced techniques like scaling laws in NLP also work in recommendations. We conduct extensive experiments with LLMs ranging from 40 M to 6.7 B to answer the above questions and to verify the effectiveness of LLM-Rec in multi-domain recommendation. The source code is available at https://github.com/WHUIR/LLMRec . Zuoli Tang, Zhaoxin Huan, Zihao Li 0005, Chilin Fu, Jun Zhou 0011, Lixin Zou, Chenliang Li 0005 |
ACM Trans. Inf. Syst. | 3 |
| 2024 | Spectral and Geometric Spaces Representation Regularization for Multi-Modal Sequential RecommendationabstractRecent works demonstrate the effectiveness of multi-modal information for sequential recommendation. However, the computational cost and representation degeneration fail to be focused specifically and addressed adequately in multi-modality recommendation. To this end, we first identify and formalize three properties i.e., diversity, compactness, and consistency from the geometric space and spectrum perspective. Building upon this foundation, we devise tailored loss functions to regularize the above three properties for representation optimization. Theoretical underpinnings and experimental results demonstrate the efficacy of an enhanced item representation in ameliorating degeneration. Furthermore, we propose an efficient and expandable image-centered method, named E2 ImgRec, to mitigate the immense cost of computation. Concretely, we substitute the linear projection operations in the self-attention module and feed-forward network layer with two learnable rescaling vectors or efficient recommendation, then leverage cross-attention for multi-modality information fusion. Extensive experiments on three public datasets illustrate our method outperforms representative ID-based solutions and multi-modal based state-of-the-arts with only up to 39.9% in memory usage and 4.3× acceleration in training time. The code for replication is available at https://github.com/WHUIR/E2ImgRec. Zihao Li 0005, Xuekong Xu, Zuoli Tang, Lixin Zou, Qian Wang 0002, Chenliang Li 0005 |
CIKM | 1 |
| 2024 | TEXT CAN BE FAIR: Mitigating Popularity Bias with PLMs by Learning Relative PreferenceabstractRecently, the item textual information has been exploited with pre-trained language models (PLMs) to enrich the representations of tail items. The underlying idea is to align the hot items and tail items in terms of the external semantic knowledge covered by the PLM. However, it is non-trivial to eliminate the popularity bias by exploiting the textual semantics. One major obstacle is that the model supervision still counts on the sparse yet binary user behaviors. In the preliminary investigation, we discover that text-based recommendations also suffer from the popularity bias. Zuoli Tang, Zhaoxin Huan, Zihao Li 0005, Shirui Hu, Jun Zhou 0011, Lixin Zou, Chenliang Li 0005 |
CIKM | 3 |
| 2024 | Unified Visual Preference Learning for User Intent UnderstandingabstractIn the world of E-Commerce, the core task is to understand the personalized preference from various kinds of heterogeneous information, such as textual reviews, item images and historical behaviors. In current systems, these heterogeneous information are mainly exploited to generate better item or user representations. For example, in scenario of visual search, the importance of modeling query image has been widely acknowledged. But, these existing solutions focus on improving the representation quality of the query image, overlooking the personalized visual preference of the user. Note that the visual features affect the user's decision significantly, e.g., the user could be more likely to click the items with her preferred design. Hence, it is fruitful to exploit the visual preference to deliver better capacity for personalization. Yihua Wen, Si Chen 0010, Yu Tian 0008, Wanxian Guan, Pengjie Wang 0002, Hongbo Deng, Jian Xu 0015, Bo Zheng 0007, Zihao Li 0005, Lixin Zou, Chenliang Li 0005 |
WSDM | 9 |
| 2024 | Disentangle interest trend and diversity for sequential recommendation
Zihao Li 0005, Yunfan Xie, Wei Zhang 0098, Pengfei Wang 0009, Lixin Zou, Fei Li 0021, Xiangyang Luo 0001, Chenliang Li 0005 |
Inf. Process. Manag. | 1 |
| 2024 | DiffuRec: A Diffusion Model for Sequential RecommendationabstractMainstream solutions to sequential recommendation represent items with fixed vectors. These vectors have limited capability in capturing items’ latent aspects and users’ diverse preferences. As a new generative paradigm, diffusion models have achieved excellent performance in areas like computer vision and natural language processing. To our understanding, its unique merit in representation generation well fits the problem setting of sequential recommendation. In this article, we make the very first attempt to adapt the diffusion model to sequential recommendation and propose DiffuRec for item representation construction and uncertainty injection. Rather than modeling item representations as fixed vectors, we represent them as distributions in DiffuRec , which reflect a user’s multiple interests and an item’s various aspects adaptively. In the diffusion phase, DiffuRec corrupts the target item embedding into a Gaussian distribution via noise adding, which is further applied for sequential item distribution representation generation and uncertainty injection. Afterward, the item representation is fed into an approximator for target item representation reconstruction. In the reverse phase, based on a user’s historical interaction behaviors, we reverse a Gaussian noise into the target item representation, then apply a rounding operation for target item prediction. Experiments over four datasets show that DiffuRec outperforms strong baselines by a large margin. 1 Zihao Li 0005, Aixin Sun, Chenliang Li 0005 |
ACM Trans. Inf. Syst. | 1 |
| 2023 | Exploring the Effectiveness of Positional Embedding on Transformer-Based Architectures for Multivariate Time Series Classification
Chao Yang 0024, Yakun Chen, Zihao Li 0005, Xianzhi Wang 0001 |
ADMA (1) | 3 |
| 2023 | Exploiting Explicit and Implicit Item relationships for Session-based RecommendationabstractThe session-based recommendation aims to predict users' immediate next actions based on their short-term behaviors reflected by past and ongoing sessions. Graph neural networks (GNNs) recently dominated the related studies, yet their performance heavily relies on graph structures, which are often predefined, task-specific, and designed heuristically. Furthermore, existing graph-based methods either neglect implicit correlations among items or consider explicit and implicit relationships altogether in the same graphs. We propose to decouple explicit and implicit relationships among items. As such, we can capture the prior knowledge encapsulated in explicit dependencies and learned implicit correlations among items simultaneously in a flexible and more interpretable manner for effective recommendations. We design a dual graph neural network that leverages the feature representations extracted by two GNNs: a graph neural network with a single gate (SG-GNN) and an adaptive graph neural network (A-GNN). The former models explicit dependencies among items. The latter employs a self-learning strategy to capture implicit correlations among items. Our experiments on four real-world datasets show our model outperforms state-of-the-art methods by a large margin, achieving 18.46% and 70.72% improvement in [email protected], and 49.10% and 115.29% improvement in [email protected] on Diginetica and LastFM datasets. Zihao Li 0005, Xianzhi Wang 0001, Chao Yang 0024, Lina Yao 0001, Julian J. McAuley, Guandong Xu |
WSDM | 1 |
| 2022 | Graph Neural Network with Self-attention and Multi-task Learning for Credit Default Risk Prediction
Zihao Li 0005, Xianzhi Wang 0001, Lina Yao 0001, Yakun Chen, Guandong Xu, Ee-Peng Lim |
WISE | 1 |