VLDB 2026 Research / reviewers in the wild / expert
Xinyu Lin 0001
dblp:32/3970-1
· DBLP profile ↗
19ranked-venue papers in the field
6as first author
19since 2021 · last 2026
0000-0002-6931-3182ORCID · conflict
Domains — venue-derived; a paper can count in several
Information Retrieval & Web Search · 16 (5 first)Data Mining & Knowledge Discovery · 3 (1 first)
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2026 | Verifiable Reasoning for LLM-based Generative RecommendationabstractReasoning in Large Language Models (LLMs) has recently shown strong potential in enhancing generative recommendation through deep understanding of complex user preference. Existing approaches follow a reason-then-recommend paradigm, where LLMs perform step-by-step reasoning before item generation. However, this paradigm inevitably suffers from reasoning degradation (i.e., homogeneous or error-accumulated reasoning) due to the lack of intermediate verification, thus undermining the recommendation. To bridge this gap, we propose a novel reason-verify-recommend paradigm, which interleaves reasoning with verification to provide reliable feedback, guiding the reasoning process toward more faithful user preference understanding. To enable effective verification, we establish two key principles for verifier design: 1) reliability ensures accurate evaluation of reasoning correctness and informative guidance generation; and 2) multi-dimensionality emphasizes comprehensive verification across multi-dimensional user preferences. Accordingly, we propose an effective implementation called VRec. It employs a mixture of verifiers to ensure multi-dimensionality, while leveraging a proxy prediction objective to pursue reliability. Experiments on four real-world datasets demonstrate that VRec substantially enhances recommendation effectiveness and scalability without compromising efficiency. Xinyu Lin 0001, Hanqing Zeng, Hanchao Yu, Yinglong Xia, Jiang Zhang 0003, Aashu Singh, Wenjie Wang 0007, Fuli Feng, Tat-Seng Chua, Qifan Wang 0001 |
SIGIR | 1 |
| 2026 | AlpsBench: An LLM Personalization Benchmark for Real-Dialogue Memorization and Preference AlignmentabstractAs Large Language Models (LLMs) evolve into lifelong AI assistants, LLM personalization has become a critical frontier. However, progress is currently bottlenecked by the absence of a gold-standard evaluation benchmark. Existing benchmarks either overlook personalized information management that is critical for personalization or rely heavily on synthetic dialogues, which exhibit an inherent distribution gap from real-world dialogue. To bridge this gap, we introduce AlpsBench, An LLM PerSonalization benchmark derived from real-world human-LLM dialogues. AlpsBench comprises 2,500 long-term interaction sequences curated from WildChat, paired with human-verified structured memories that encapsulate both explicit and implicit personalization signals. We define four pivotal tasks - personalized information extraction, updating, retrieval, and utilization - and establish protocols to evaluate the entire lifecycle of memory management. Our benchmarking of frontier LLMs and memory-centric systems reveals that: (i) models struggle to reliably extract latent user traits; (ii) memory updating faces a performance ceiling even in the strongest models; (iii) retrieval accuracy declines sharply in the presence of large distractor pools; and (iv) while explicit memory mechanisms improve recall, they do not inherently guarantee more preference-aligned or emotionally resonant responses. AlpsBench aims to provide a comprehensive framework. Jianfei Xiao, Chengbing Wang, Wuqiang Zheng, Xinyu Lin 0001, Kaining Liu, Hongxun Ding, Yang Zhang 0072, Wenjie Wang 0007, Fuli Feng, Xiangnan He 0001 |
SIGIR | 5 |
| 2026 | LLM Personalization: Foundations, Breakthroughs, and FrontiersabstractLarge Language Models (LLMs) have achieved rapid progress and are increasingly deployed in real-world applications such as digital assistants, education, healthcare, and recommendation. This deployment has driven growing interest in LLM personalization, which seeks to align model behavior with individual preferences and evolving contexts. Despite the rapid development of this area, existing research remains scattered, and a systematic tutorial dedicated to LLM personalization is still lacking. This tutorial presents a unified technical framework for LLM personalization, organized around five core dimensions: user memory, personalization architecture, alignment and post-training, inference-time adaptation, and deployment. We show how these components transform LLMs from generic response generators into user-adaptive systems, enabling structured user representation, memory integration, personalized optimization objectives, and context-aware reasoning throughout the model lifecycle. We further discuss key challenges, including lifelong learning, preference drift, privacy-preserving adaptation, trustworthiness, and evaluation under dynamic user distributions. By consolidating recent advances, this tutorial aims to equip participants with a comprehensive and principled understanding of LLM personalization and to inspire continued innovation in this rapidly evolving field. Xiaoyan Zhao 0005, Xinyu Lin 0001, Chengbing Wang, Zeyu Zhang 0007, Bohao Wang 0001, Yang Zhang 0072, Wenjie Wang 0007, Fuli Feng |
SIGIR | 2 |
| 2026 | Unifying Diversity and Fairness in Re-ranking via Economic Growth Theory
Zhaofeng Li 0010, Chen Xu 0010, Xinyu Lin 0001, Wenjie Wang 0007, Xiaokui Xiao |
WWW | 3 |
| 2026 | Bringing Reasoning to Generative Recommendation Through the Lens of Cascaded Ranking
Xinyu Lin 0001, Wenjie Wang 0007, Chen Xu 0010, Fuli Feng, Qifan Wang 0001, Tat-Seng Chua |
WWW | 1 |
| 2025 | Incremental Learning for LLM-based Tokenization and RecommendationabstractLarge Language Models for Recommendation (LLM4Rec) have shown great potential. Many LLM4Rec approaches technically leverage a learnable tokenizer to assign item identifiers and then enable a Recommender LLM (RecLLM) to process tokenized items and user interactions for recommendation. However, a key challenge in their real-world deployment is the need for continuous retraining over time to accommodate new items and evolving user interests. While existing retraining methods can be applied to RecLLMs, learnable tokenizers introduce additional retraining challenges. We conduct a comprehensive investigation into the joint retraining of RecLLMs and learnable tokenizers, identifying key issues such as identifier collision and identifier shifts across periods. To address these, we propose Reformer, an incremental learning framework to fine-tune RecLLMs and learnable tokenizers at each period. Reformer employs a dynamic codebook to mitigate identifier collision by appending new codes and enforcing a diversity-oriented code assignment constraint. Additionally, Reformer adopts an identifier freezing strategy to ensure the invariance of previously assigned item identifiers across retraining periods. We instantiate Reformer on two representative RecLLMs and conduct extensive experiments on three real-world datasets. Substantial results demonstrate its superior retraining performance, facilitating the real-world deployment of LLM4Rec. Haihan Shi, Xinyu Lin 0001, Wenjie Wang 0007, Wentao Shi 0002, Junwei Pan, Jie Jiang 0015, Fuli Feng |
CIKM | 2 |
| 2025 | EARN: Efficient Inference Acceleration for LLM-based Generative Recommendation by Register TokensabstractLarge Language Model-based generative recommendation (LLMRec) has achieved notable success, but it suffers from high inference latency due to massive computational overhead and memory pressure of KV Cache. Existing KV Cache reduction methods face critical limitations: cache compression offers marginal acceleration given recommendation tasks' short decoding steps, while prompt compression risks discarding vital interaction history. Through systematic analysis of attention patterns in LLMRec, we uncover two pivotal insights: 1) layer-wise attention sparsity inversion where early layers retain dense informative patterns while later layers exhibit high redundancy, and 2) dual attention sinks phenomenon where attention scores concentrate on both head and tail tokens of input sequences. Motivated by these insights, we propose EARN, an efficient inference framework that leverages the early layers to compress information into register tokens placed at the input sequence boundaries, then focuses solely on these tokens in the subsequent layers. Extensive experiments on three datasets, two LLMRec methods and two LLM architectures demonstrate EARN's superiority, achieving up to 3.79x speedup and 80.8% KV Cache reduction with better accuracy than the general finetuning approach. Our work bridges the efficiency-effectiveness gap in LLMRec, offering practical deployment advantages for industrial scenarios. Chaoqun Yang 0002, Xinyu Lin 0001, Wenjie Wang 0007, Yongqi Li 0001, Xianjing Han, Tat-Seng Chua |
KDD (2) | 2 |
| 2025 | Collaboration of Large Language Models and Small Recommendation Models for Device-Cloud RecommendationabstractLarge Language Models (LLMs) for Recommendation (LLM4Rec) is a promising research direction that has demonstrated exceptional performance in this field. However, its inability to capture real-time user preferences greatly limits the practical application of LLM4Rec because (i) LLMs are costly to train and infer frequently, and (ii) LLMs struggle to access real-time data (its large number of parameters poses an obstacle to deployment on devices). Fortunately, small recommendation models (SRMs) can effectively supplement these shortcomings of LLM4Rec diagrams by consuming minimal resources for frequent training and inference, and by conveniently accessing real-time data on devices. Zheqi Lv, Tianyu Zhan, Wenjie Wang 0007, Xinyu Lin 0001, Shengyu Zhang 0001, Wenqiao Zhang, Jiwei Li 0001, Kun Kuang 0001, Fei Wu 0001 |
KDD (1) | 4 |
| 2025 | Heterogeneous User Modeling for LLM-based Recommendation
Honghui Bao, Wenjie Wang 0007, Xinyu Lin 0001, Fengbin Zhu, Fuli Feng, Tat-Seng Chua |
RecSys | 3 |
| 2025 | Navigating Large Language Models for Recommendation: From Architecture to Learning Paradigms and DeploymentabstractLarge Language Models (LLMs) are reshaping the landscape of recommender systems, giving rise to the emerging field of LLM4Rec that attracts both academia and industry. Unlike earlier approaches that simply borrowed model architectures or learning paradigms from language models, recent advances have led to a dedicated and evolving technical stack for LLM4Rec, spanning architecture design, pre-training and post-training strategies, inference techniques, and real-world deployment. This tutorial offers a systematic and in-depth overview of LLM4Rec through the lens of this technical stack. We will examine how LLMs are being adapted to recommendation tasks across different stages, empowering them with capabilities such reasoning, planning, and in-context learning. Moreover, we will highlight practical challenges including complex user modeling, trustworthiness, and evaluation. Distilling insights from recent research and identifying open problems, this tutorial aims to equip participants with a comprehensive understanding of LLM4Rec and inspire continued innovation in this rapidly evolving field. Xinyu Lin 0001, Keqin Bao, Jizhi Zhang, Yang Zhang 0072, Wenjie Wang 0007, Fuli Feng |
SIGIR | 1 |
| 2025 | Order-agnostic Identifier for Large Language Model-based Generative RecommendationabstractLeveraging Large Language Models (LLMs) for generative recommendation has attracted significant research interest, where item tokenization is a critical step. It involves assigning item identifiers for LLMs to encode user history and generate the next item. Existing approaches leverage either token-sequence identifiers, representing items as discrete token sequences, or single-token identifiers, using ID or semantic embeddings. Token-sequence identifiers face issues such as the local optima problem in beam search and low generation efficiency due to step-by-step generation. In contrast, single-token identifiers fail to capture rich semantics or encode Collaborative Filtering (CF) information, resulting in suboptimal performance. Xinyu Lin 0001, Haihan Shi, Wenjie Wang 0007, Fuli Feng, Qifan Wang 0001, See-Kiong Ng, Tat-Seng Chua |
SIGIR | 1 |
| 2024 | Learnable Item Tokenization for Generative RecommendationabstractUtilizing powerful Large Language Models (LLMs) for generative recommendation has attracted much attention. Nevertheless, a crucial challenge is transforming recommendation data into the language space of LLMs through effective item tokenization. Current approaches, such as ID, textual, and codebook-based identifiers, exhibit shortcomings in encoding semantic information, incorporating collaborative signals, or handling code assignment bias. To address these limitations, we propose LETTER (a LEarnable Tokenizer for generaTivE Recommendation), which integrates hierarchical semantics, collaborative signals, and code assignment diversity to satisfy the essential requirements of identifiers. LETTER incorporates Residual Quantized VAE for semantic regularization, a contrastive alignment loss for collaborative regularization, and a diversity loss to mitigate code assignment bias. We instantiate LETTER on two models and propose a ranking-guided generation loss to augment their ranking ability theoretically. Experiments on three datasets validate the superiority of LETTER, advancing the state-of-the-art in the field of LLM-based generative recommendation. Wenjie Wang 0007, Honghui Bao, Xinyu Lin 0001, Jizhi Zhang, Yongqi Li 0001, Fuli Feng, See-Kiong Ng, Tat-Seng Chua |
CIKM | 3 |
| 2024 | Bridging Items and Language: A Transition Paradigm for Large Language Model-Based RecommendationabstractHarnessing Large Language Models (LLMs) for recommendation is rapidly emerging, which relies on two fundamental steps to bridge the recommendation item space and the language space: 1) item indexing utilizes identifiers to represent items in the language space, and 2) generation grounding associates LLMs' generated token sequences to in-corpus items. However, previous methods exhibit inherent limitations in the two steps. Existing ID-based identifiers (e.g., numeric IDs) and description-based identifiers (e.g., titles) either lose semantics or lack adequate distinctiveness. Moreover, prior generation grounding methods might generate invalid identifiers, thus misaligning with in-corpus items. To address these issues, we propose a novel Transition paradigm for LLM-based Recommender (named TransRec) to bridge items and language. Specifically, TransRec presents multi-facet identifiers, which simultaneously incorporate ID, title, and attribute for item indexing to pursue both distinctiveness and semantics. Additionally, we introduce a specialized data structure for TransRec to ensure generating valid identifiers only and utilize substring indexing to encourage LLMs to generate from any position of identifiers. Lastly, TransRec presents an aggregated grounding module to leverage generated multi-facet identifiers to rank in-corpus items efficiently. We instantiate TransRec on two backbone models, BART-large and LLaMA-7B. Xinyu Lin 0001, Wenjie Wang 0007, Yongqi Li 0001, Fuli Feng, See-Kiong Ng, Tat-Seng Chua |
KDD | 1 |
| 2024 | Large Language Models for Recommendation: Past, Present, and FutureabstractLarge language models (LLMs) have significantly influenced recommender systems, spurring interest across academia and industry in leveraging LLMs for recommendation tasks. This includes using LLMs for generative item retrieval and ranking, and developing versatile LLMs for various recommendation tasks, potentially leading to a paradigm shift in the field of recommender systems. This tutorial aims to demystify the Large Language Model for Recommendation (LLM4Rec) by reviewing its evolution and delving into cutting-edge research. We will explore how LLMs enhance recommender systems in terms of architecture, learning paradigms, and functionalities such as conversational abilities, generalization, planning, and content generation. The tutorial will shed light on the challenges and open problems in this burgeoning field, including trustworthiness, efficiency, online training, and evaluation of LLM4Rec. We will conclude by summarizing key learnings from existing studies and outlining potential avenues for future research, with the goal of equipping the audience with a comprehensive understanding of LLM4Rec and inspiring further exploration in this transformative domain. Keqin Bao, Jizhi Zhang, Xinyu Lin 0001, Yang Zhang 0072, Wenjie Wang 0007, Fuli Feng |
SIGIR | 3 |
| 2024 | Data-efficient Fine-tuning for LLM-based RecommendationabstractLeveraging Large Language Models (LLMs) for recommendation has recently garnered considerable attention, where fine-tuning plays a key role in LLMs' adaptation. However, the cost of fine-tuning LLMs on rapidly expanding recommendation data limits their practical application. To address this challenge, few-shot fine-tuning offers a promising approach to quickly adapt LLMs to new recommendation data. We propose the task of data pruning for efficient LLM-based recommendation, aimed at identifying representative samples tailored for LLMs' few-shot fine-tuning. While coreset selection is closely related to the proposed task, existing coreset selection methods often rely on suboptimal heuristic metrics or entail costly optimization on large-scale recommendation data. Xinyu Lin 0001, Wenjie Wang 0007, Yongqi Li 0001, Shuo Yang 0006, Fuli Feng, Yinwei Wei, Tat-Seng Chua |
SIGIR | 1 |
| 2024 | Causal Disentangled Recommendation against User Preference ShiftsabstractRecommender systems easily face the issue of user preference shifts. User representations will become out-of-date and lead to inappropriate recommendations if user preference has shifted over time. To solve the issue, existing work focuses on learning robust representations or predicting the shifting pattern. There lacks a comprehensive view to discover the underlying reasons for user preference shifts. To understand the preference shift, we abstract a causal graph to describe the generation procedure of user interaction sequences. Assuming user preference is stable within a short period, we abstract the interaction sequence as a set of chronological environments. From the causal graph, we find that the changes of some unobserved factors (e.g., becoming pregnant) cause preference shifts between environments. Besides, the fine-grained user preference over item categories sparsely affects the interactions with different items. Inspired by the causal graph, our key considerations to handle preference shifts lie in modeling the interaction generation procedure by: (1) capturing the preference shifts across environments for accurate preference prediction and (2) disentangling the sparse influence from user preference to interactions for accurate effect estimation of preference. To this end, we propose a Causal Disentangled Recommendation (CDR) framework, which captures preference shifts via a temporal variational autoencoder and learns the sparse influence from multiple environments. Specifically, an encoder is adopted to infer the unobserved factors from user interactions while a decoder is to model the interaction generation process. Besides, we introduce two learnable matrices to disentangle the sparse influence from user preference to interactions. Last, we devise a multi-objective loss to optimize CDR. Extensive experiments on three datasets show the superiority of CDR in enhancing the generalization ability under user preference shifts. Wenjie Wang 0007, Xinyu Lin 0001, Liuhui Wang, Fuli Feng, Yunshan Ma 0002, Tat-Seng Chua |
ACM Trans. Inf. Syst. | 2 |
| 2023 | Popularity-aware Distributionally Robust Optimization for Recommendation SystemabstractCollaborative Filtering (CF) has been widely applied for personalized recommendations in various industrial applications. However, due to the training strategy of Empirical Risk Minimization, CF models tend to favor popular items, resulting in inferior performance on sparse users and items. To enhance the CF representation learning of sparse users and items without sacrificing the performance of popular items, we propose a novel Popularity- aware Distributionally Robust Optimization (PDRO) framework. In particular, PDRO emphasizes the optimization of sparse users/items, while incorporating item popularity to preserve the performance of popular items through two modules. First, an implicit module develops a new popularity-aware DRO objective, paying more attention to items that will potentially become popular over time. Second, an explicit module that directly predicts the popularity of items to help the estimation of user-item matching scores. We apply PDRO to a micro-video recommendation scenario and implement it on two representative backend models. Extensive experiments on a real-world industrial dataset, as well as two public benchmark datasets, validate the efficacy of our proposed PDRO. Additionally, we perform an offline A/B test on the industrial dataset, further demonstrating the superiority of PDRO in real-world application scenarios. Jujia Zhao, Wenjie Wang 0007, Xinyu Lin 0001, Leigang Qu, Jizhi Zhang, Tat-Seng Chua |
CIKM | 3 |
| 2023 | Diffusion Recommender ModelabstractGenerative models such as Generative Adversarial Networks (GANs) and Variational Auto-Encoders (VAEs) are widely utilized to model the generative process of user interactions. However, they suffer from intrinsic limitations such as the instability of GANs and the restricted representation ability of VAEs. Such limitations hinder the accurate modeling of the complex user interaction generation procedure, such as noisy interactions caused by various interference factors. In light of the impressive advantages of Diffusion Models (DMs) over traditional generative models in image synthesis, we propose a novel Diffusion Recommender Model (named DiffRec) to learn the generative process in a denoising manner. To retain personalized information in user interactions, DiffRec reduces the added noises and avoids corrupting users' interactions into pure noises like in image synthesis. In addition, we extend traditional DMs to tackle the unique challenges in recommendation: high resource costs for large-scale item prediction and temporal shifts of user preference. To this end, we propose two extensions of DiffRec: L-DiffRec clusters items for dimension compression and conducts the diffusion processes in the latent space; and T-DiffRec reweights user interactions based on the interaction timestamps to encode temporal information. We conduct extensive experiments on three datasets under multiple settings (e.g., clean training, noisy training, and temporal training). The empirical results validate the superiority of DiffRec with two extensions over competitive baselines. Wenjie Wang 0007, Yiyan Xu, Fuli Feng, Xinyu Lin 0001, Xiangnan He 0001, Tat-Seng Chua |
SIGIR | 4 |
| 2022 | Causal Representation Learning for Out-of-Distribution RecommendationabstractModern recommender systems learn user representations from historical interactions, which suffer from the problem of user feature shifts, such as an income increase. Historical interactions will inject out-of-date information into the representation in conflict with the latest user feature, leading to improper recommendations. In this work, we consider the Out-Of-Distribution (OOD) recommendation problem in an OOD environment with user feature shifts. To pursue high fidelity, we set additional objectives for representation learning as: 1) strong OOD generalization and 2) fast OOD adaptation. Wenjie Wang 0007, Xinyu Lin 0001, Fuli Feng, Xiangnan He 0001, Tat-Seng Chua |
WWW | 2 |