← Back to Paper List

LLM-Rec: Personalized Recommendation via Prompting Large Language Models

Hanjia Lyu, Song Jiang, Hanqing Zeng, Yinglong Xia, Qifan Wang, Si Zhang, Ren Chen, Christopher Leung, Jiajie Tang, Jiebo Luo
University of Rochester, University of California, Los Angeles, Meta AI
arXiv (2023)
Recommendation P13N

📝 Paper Summary

Text-based Recommendation Data Augmentation with LLMs
LLM-Rec improves text-based recommendation by using Large Language Models to generate enriched item descriptions—incorporating user engagement data—allowing simple MLP models to outperform complex content-based architectures.
Core Problem
Text-based recommendation systems struggle with incomplete or generic item descriptions that fail to explicitly capture attributes relevant to specific user preferences.
Why it matters:
  • Original item descriptions often lack crucial details (e.g., tone, specific dietary restrictions) needed for accurate personalization
  • Generic descriptions are not tailored to specific user groups, leading to misalignment between item characteristics and user needs
  • Performance of recommendation models is heavily bottlenecked by the quality and richness of the input text
Concrete Example: A user follows a vegan diet. A recipe description lists ingredients but lacks the explicit tag 'vegan'. A standard recommender misses this match due to insufficient text. LLM-Rec infers 'vegan' from the ingredients via prompting, enabling the system to recommend the recipe.
Key Novelty
Prompt-based Description Enrichment
  • Uses LLMs as a data augmentation tool to paraphrase, tag, and infer emotions from item descriptions before they enter the recommendation model
  • Introduces 'Engagement-guided Prompting', which includes descriptions of neighbor items (items the user also engaged with) in the prompt, guiding the LLM to identify attractive commonalities
Evaluation Highlights
  • +21.72% improvement in NDCG@10 on the Recipe dataset using GPT-3 augmented text compared to the standard MLP baseline
  • Simple MLP models using LLM-Rec augmented text outperform complex state-of-the-art content-based models like EDCN and DCN-V2
  • Llama-2-7B achieves comparable performance to GPT-3 (text-davinci-003), demonstrating the effectiveness of open-source models for this task
Breakthrough Assessment
7/10
Offers a significant practical improvement by demonstrating that better input data (via LLMs) allows simpler models to beat complex architectures. The engagement-guided prompting is a clever, domain-agnostic innovation.
×