IRAIAug 19, 2024

Customizing Language Models with Instance-wise LoRA for Sequential Recommendation

arXiv:2408.10159v457 citationsh-index: 24Has Code
Originality Incremental advance
AI Analysis

This work addresses negative transfer in sequential recommendation for users by customizing LLM fine-tuning, though it is incremental as it builds on existing LoRA and MoE frameworks.

The paper tackles the problem of negative transfer in sequential recommendation systems when using uniform LoRA fine-tuning across diverse user behaviors, proposing Instance-wise LoRA (iLoRA) which integrates LoRA with Mixture of Experts and a sequence-guided gate function to achieve an average 11.4% improvement in hit ratio over basic LoRA with minimal parameter increase.

Sequential recommendation systems predict the next interaction item based on users' past interactions, aligning recommendations with individual preferences. Leveraging the strengths of Large Language Models (LLMs) in knowledge comprehension and reasoning, recent approaches are eager to apply LLMs to sequential recommendation. A common paradigm is converting user behavior sequences into instruction data, and fine-tuning the LLM with parameter-efficient fine-tuning (PEFT) methods like Low-Rank Adaption (LoRA). However, the uniform application of LoRA across diverse user behaviors is insufficient to capture individual variability, resulting in negative transfer between disparate sequences. To address these challenges, we propose Instance-wise LoRA (iLoRA). We innovatively treat the sequential recommendation task as a form of multi-task learning, integrating LoRA with the Mixture of Experts (MoE) framework. This approach encourages different experts to capture various aspects of user behavior. Additionally, we introduce a sequence representation guided gate function that generates customized expert participation weights for each user sequence, which allows dynamic parameter adjustment for instance-wise recommendations. In sequential recommendation, iLoRA achieves an average relative improvement of 11.4\% over basic LoRA in the hit ratio metric, with less than a 1\% relative increase in trainable parameters. Extensive experiments on three benchmark datasets demonstrate the effectiveness of iLoRA, highlighting its superior performance compared to existing methods in mitigating negative transfer and improving recommendation accuracy. Our data and code are available at https://github.com/AkaliKong/iLoRA.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes