REVIEW 3 major objections 3 minor 1 cited by
Learning to Shop Like Humans: A Review-driven Retrieval-Augmented Recommendation Framework with LLMs
T0 review · 3 major / 3 minor · reviewed 2026-08-05 · deepseek-v4-flash
Pith's one-line read RevBrowse claims that a contrastively trained retriever (PrefRAG) that fetches only the pros and cons of candidate items matching a user's extracted likes and dislikes lets an LLM reranker beat strong sequential-recommendation baselines on
desk verdict Useful retrieval design and clean write-up, but a possible label-leakage in the evaluation pipeline makes the headline results unverified. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
PrefRAG is a dual-tower, contrastively trained retrieval module. It encodes user preferences (Like/Dislike) as queries and item features (Pros/Cons) as answers using the [EOS] embedding of an LLM, scores query-answer pairs by cosine similarity, and is trained with an InfoNCE loss over sliding-window samples: the positive answer is the pros/cons of the last item the user reviewed, and the negatives are pros/cons extracted from other users' reviews of the same item. At serve time, the frozen PrefRAG embeds the user's Like/Dislike and retrieves the top-K Pros/Cons for each candidate item, which are injected into a structured prompt alongside purchase history and a global preference summary; a L
What would settle it
Hold out a set of users, extract their Like/Dislike, and retrieve top-K pros/cons from candidate items' peer reviews; then measure whether those retrieved texts are judged more aligned with the user's preferences than randomly sampled review features, using held-out future reviews or an independent judge. If serve-time retrieval accuracy is at chance, the downstream ranking gains cannot be attributed to preference alignment. A sharper version: for candidate items whose peer reviews strongly contradict the target user's stated likes, a preference-aligned retriever should suppress those features
Extended reading notes
Core claim
The paper's discovery, on its own terms, is that a retrieval-augmented module trained to match a user's stated preferences to item features, rather than to the user's own review text, makes LLM reranking both stronger and more interpretable. PrefRAG treats Like/Dislike as queries and Pros/Cons as answers; contrastive training pulls the user's own evaluation of an item close and pushes other users' evaluations of the same item away, which the paper argues teaches discrimination between preference-aligned and preference-misaligned review content. At inference, PrefRAG retrieves the top-K pros and cons for each candidate item from peer reviews and feeds them into an LLM recommender that ranks c
Load-bearing premise
PrefRAG is trained with positive examples drawn from the target user's own review of an item, but at serve time it retrieves features written by other users about candidate items; the whole approach assumes that contrastively pushing away same-item peer reviews during training still teaches the retriever to select preference-relevant peer reviews for new items.
Editorial extensions
If this is right
- LLM recommenders can handle long review histories without truncation: retrieving top-2 pros/cons per candidate yields the best or near-best accuracy, so the bottleneck is relevance selection, not context size.
- The transparent retrieval gives a built-in audit trail: because the retrieved pros/cons are literally the evidence in the prompt, a wrong recommendation can be traced to the specific review features that steered the model.
- The framework is backbone-agnostic: swapping PrefRAG's and the recommender's LLM among Llama-2, Qwen, and SFR keeps the improvements over LlamaRec, suggesting the retrieval design rather than a particular model family drives the results.
- The ablation shows that global preferences and item-specific retrieved features are complementary: removing either degrades performance and removing both degrades it most, so both should be part of review-driven LLM recommendation systems.
- Sliding-window contrastive training is intended to track shifting tastes: recent reviews dominate the positive samples, so the retrieved features reflect the user's evolving preferences rather than a static summary.
Reading between the lines
- The same PrefRAG retriever could be repurposed as a user-facing review ranking tool: instead of 'most helpful' votes, an e-commerce platform could rank reviews by predicted match to each shopper's stated likes and dislikes, making the browse-then-decide behavior literal.
- The reported experiments do not include an ablation that replaces PrefRAG with an untrained or random retriever; such an experiment would isolate whether the gains come from contrastive preference alignment or simply from exposing the LLM to any review-derived features.
- Because training positives are the target user's own reviews while serve-time candidates come from peer reviews, the cleanest stress test is on idiosyncratic users whose tastes rarely appear in other people's reviews; if their retrieved features are noisy, a review-based fallback would be needed.
- Since the gains are largest on MRR, PrefRAG mainly improves top-of-list ordering; replacing the LRU recall stage with a review-aware candidate generator could compound the benefit.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes RevBrowse, a review-driven retrieval-augmented framework for sequential recommendation with LLMs. It first uses a frozen LLM (Qwen2.5-72B-instruct) to extract structured user preferences (Like/Dislike) and item features (Pros/Cons) from review texts. A dual-tower retriever, PrefRAG, is trained with a contrastive InfoNCE loss to align user preference queries with item feature answers (Eq. 4). At inference, PrefRAG is frozen and retrieves the top-K pros/cons from each candidate item's review pool conditioned on the user's preferences; these features, together with the user history and preference summary, are fed into a LLaMA2-7B recommender tuned with LoRA to rank candidate items. Experiments on four Amazon-2014 datasets (Games, Food, Clothing, Sport) report consistent improvements over CF, review-based, and LLM baselines, with ablations on prompt components, retrieval top-K, retriever backbone, and feature integration strategy, plus a case study illustrating transparency.
Significance. If the reported results are valid, the paper makes a useful contribution: it offers a practical way to inject review-derived item signals into LLM recommenders under context-window constraints, and the PrefRAG retrieval process is transparent and interpretable. The framework is clearly motivated by the browse-then-decide analogy, and the authors provide a fairly comprehensive experimental suite, including multiple datasets, baselines, ablations, and backbone variants. The main value lies in demonstrating that structured, preference-conditioned retrieval of item features can improve LLM-based reranking over static summaries. However, the claimed significance depends on a data-construction audit: the paper does not state whether the user's own held-out review is excluded from the candidate item feature pool, and if it is excluded, the train/serve distribution shift of PrefRAG is not validated. The experimental comparisons also lack statistical support and contain an unresolved evaluation-protocol inconsistency.
major comments (3)
- [§4.2, §4.3] The paper does not state that the target user's held-out review is removed from the candidate item feature pool before retrieval. Section 3 defines R_i as the reviews of all users who interacted with item i; for the ground-truth next item, this includes the target user's own review. Section 4.3 builds pros/cons from the 'historical reviews of item k' for each candidate, with no exclusion rule. Under this description, the user's own held-out review is part of the feature pool for the correct item, so PrefRAG can retrieve the label's own pros/cons, directly inflating all downstream metrics. This also confounds the 'w/o Reviews' ablation (Table 7), since removing the retrieved reviews removes the leaked signal. If the user's own review is excluded instead, then PrefRAG is trained on positives that never occur at inference: the positive answers in §4.2 are the target user's own reviews, whil
- [§5.1.3 vs §4.3] There is an inconsistency in the evaluation protocol. Section 5.1.3 says 'During evaluation, predictions are ranked over the entire item set,' but Section 4.3 says LRU is used to obtain the initial candidate item set, and the recommendation prompt contains only those candidates. If RevBrowse ranks only the LRU candidate pool while baselines rank over the full item set, the reported R@k/N@k/M@k values are not comparable. If baselines also use LRU candidates, the sentence in §5.1.3 is inaccurate. The paper must specify the exact candidate generation procedure and verify that all methods are evaluated under the same protocol. This is load-bearing for the claimed consistent improvements in Tables 5 and 6.
- [Tables 5–7] The paper claims 'consistent and significant improvements' but reports only point estimates from single runs. Several improvements are very small — e.g., Games R@5 0.1219 vs Exp3rt 0.1188, Sport R@5 0.0369 vs 0.0353, Clothing R@5 0.0227 vs 0.0216 — and there are no standard deviations, confidence intervals, or paired significance tests across multiple seeds. The word 'significant' in the abstract and Section 5.2 is therefore unsupported. At minimum, the authors should add variance estimates and statistical tests (e.g., paired bootstrap or paired t-tests over user-level metrics) for the headline comparisons.
minor comments (3)
- [§2.1 / Appendix C] The baseline list contains an apparent duplicate: Exp3rt is cited as [16] in Related Work and as [17] in the baseline descriptions, and ZS-Ranker is listed with the same citation string as Exp3rt. Please reconcile the references and make the baseline descriptions accurate (e.g., LightGCN is a graph-based CF method, not a 'self-attentive sequential recommendation model' as written in Appendix C).
- [Throughout] There are several typos and inconsistent terms: 'dynamically shifts' (Abstract/Introduction), 'retrival' (near Eq. 10), 'Aamzon' in Figure 6 caption, and inconsistent use of 'pros/cons' vs 'Pros/Cons'. A careful language pass is needed.
- [§5.4 / Table 8] Figure 4 and Table 8 report the top-K study, but Figure 4 is not described with axis labels or error bars. Please clarify whether the plotted values are from single runs and make the figure self-contained.
Circularity Check
PrefRAG's retrieved features for the held-out item can be its own training positive: R_i includes the target user's review and Sec. 4.3 never excludes it, so the headline gains may reflect fitted-input retrieval rather than independent prediction.
-
fitted input called prediction
[Sec. 3 (Preliminaries); Sec. 4.2 (Contrastive Learning Training Set Construction, Eq. 4); Sec. 4.3 (LLM-based Recommender, Eqs. 5-10)]
""each candidate item i∈I is associated with a set of reviews R_i written by users who have interacted with that item"; "the last review within the window... we extract its pros and cons to serve as the positive answer a+"; "we denote the sets of pros and cons extracted from the historical reviews of item k as pros_k and cons_k""
By Sec. 3, R_i for the ground-truth next item includes the target user's own review. Sec. 4.2 makes that review's pros/cons the positive answer a+ for PrefRAG. Sec. 4.3 retrieves top-K pros/cons from 'historical reviews of item k' with no stated exclusion of the held-out review. Hence the retrieved features for the true item can be the exact a+ the model was trained to rank highest (Eq. 4): a fitted input, not a prediction. The paper never states the held-out review is excluded from R_i or from PrefRAG's training windows. If it is excluded, a retriever trained to prefer own-review positives over same-item peer negatives is being used to retrieve peer reviews, a distribution shift whose transfer is never validated. Either way the reported gains do not independently demonstrate preference-al
full rationale
The central derivation chain is otherwise self-contained: user/item feature extraction uses frozen LLMs, the recommender is trained on held-out next-token prediction, and comparisons are against external baselines. There are self-citations ([23],[40],[41]) but they are background NLP work and not load-bearing. The only circular step is the PrefRAG evaluation/retrieval construction: by the paper's own definitions, the positive training answer for a user is that user's own review of an item, and the item-side retrieval pool at inference is all reviews of the candidate item, which for the true next item includes that same user's review. The paper does not document excluding the held-out review; if it is present, the retriever's output for the true item is the training positive re-ranked, so the claimed 'retrieval-augmented' gains and the w/o Reviews ablation are not an independent test. If it is absent, the training objective (own review vs. peer reviews of the same item) does not match the inference task (retrieve peer reviews of unseen items), and no transfer evidence is given. This makes the headline claim partially circular/leaky, though not a mathematical derivation-equivalence. No uniqueness theorem or ansatz-smuggling via self-citation is present.
Assumptions & free parameters
free parameters (5)
- top-K (number of retrieved item features) =
2
- sliding window size =
20
- positive-to-negative sample ratio =
1:40
- history length =
20
- learning rate =
1e-4
assumptions (4)
- domain assumption Review text faithfully reflects user preferences and item attributes.
- domain assumption The extraction LLM (Qwen2.5-72B) produces accurate, faithful preference and feature summaries.
- domain assumption The LRU recall model provides a candidate set that contains the ground-truth next item for most test instances.
- ad hoc to paper Contrastive training with positives from the user's own reviews and negatives from other users' reviews of the same item transfers to retrieval over other users' reviews of candidate items.
Cite this review
Pith. "Pith review of Learning to Shop Like Humans: A Review-driven Retrieval-Augmented Recommendation Framework with LLMs." pith.science (2026). https://pith.science/paper/OQTLTLS6
@misc{pith2026250900698,
author = {Pith},
title = {Pith review of: Learning to Shop Like Humans: A Review-driven Retrieval-Augmented Recommendation Framework with LLMs},
year = {2026},
howpublished = {\url{https://pith.science/paper/OQTLTLS6}},
note = {Machine review of arXiv:2509.00698}
}
read the original abstract
Large language models (LLMs) have shown strong potential in recommendation tasks due to their strengths in language understanding, reasoning and knowledge integration. These capabilities are especially beneficial for review-based recommendation, which relies on semantically rich user-generated texts to reveal fine-grained user preferences and item attributes. However, effectively incorporating reviews into LLM-based recommendation remains challenging due to (1) inefficient to dynamically utilize user reviews under LLMs' constrained context windows, and (2) lacking effective mechanisms to prioritize reviews most relevant to the user's current decision context. To address these challenges, we propose RevBrowse, a review-driven recommendation framework inspired by the "browse-then-decide" decision process commonly observed in online user behavior. RevBrowse integrates user reviews into the LLM-based reranking process to enhance its ability to distinguish between candidate items. To improve the relevance and efficiency of review usage, we introduce PrefRAG, a retrieval-augmented module that disentangles user and item representations into structured forms and adaptively retrieves preference-relevant content conditioned on the target item. Extensive experiments on four Amazon review datasets demonstrate that RevBrowse achieves consistent and significant improvements over strong baselines, highlighting its generalizability and effectiveness in modeling dynamic user preferences. Furthermore, since the retrieval-augmented process is transparent, RevBrowse offers a certain level of interpretability by making visible which reviews influence the final recommendation.
Figures
Figures from the paper (6 more)
Forward citations
Cited by 1 Pith paper
-
Autonomous Information Seeking: A Roadmap for Agentic Recommender Systems
Agentic recommender systems are organized by agent role (assisted, as-recommender, as-simulator) crossed with autonomy levels L2–L5, yielding a roadmap of architectures, evaluation limits, and open challenges.
Reference graph
Works this paper leans on
-
[17]
Jieyong Kim, Hyunseo Kim, Hyunjin Cho, SeongKu Kang, Buru Chang, Jinyoung Yeo, and Dongha Lee. 2025. Review-driven Personalized Preference Reasoning with Large Language Models for Recommendation. In Proceedings of the 48th International ACM SIGIR Conference on Research and Development in Information Retrieval, SIGIR 2025, Padua, Italy, July 13-18, 2025 , ...
arXiv 2025
-
[1]
Hong-Kyun Bae, Hae-Ri Jang, Yang-Sae Moon, and Sang-Wook Kim. 2024. Item- Ranking Promotion in Recommender Systems. In Companion Proceedings of the ACM on Web Conference 2024, WWW 2024, Singapore, Singapore, May 13-17, 2024 , Tat-Seng Chua, Chong-Wah Ngo, Roy Ka-Wei Lee, Ravi Kumar, and Hady W. Lauw (Eds.). ACM, 505–508. doi:10.1145/3589335.3651529
-
[2]
Sebastian Borgeaud, Arthur Mensch, Jordan Hoffmann, Trevor Cai, Eliza Ruther- ford, Katie Millican, and et al. George van den Driessche. 2022. Improving Language Models by Retrieving from Trillions of Tokens. In International Con- ference on Machine Learning, ICML 2022, 17-23 July 2022, Baltimore, Maryland, USA (Proceedings of Machine Learning Research, V...
work page 2022
-
[3]
Chong Chen, Min Zhang, Yiqun Liu, and Shaoping Ma. 2018. Neural Attentional Rating Regression with Review-level Explanations. In Proceedings of the 2018 World Wide Web Conference on World Wide Web, WWW 2018, Lyon, France, April 23-27, 2018, Pierre-Antoine Champin, Fabien Gandon, Mounia Lalmas, and Panagiotis G. Ipeirotis (Eds.). ACM, 1583–1592. doi:10.114...
arXiv 2018
- [4]
-
[5]
Zhiyong Cheng, Ying Ding, Xiangnan He, Lei Zhu, Xuemeng Song, and Mohan S. Kankanhalli. 2018. Aˆ3NCF: An Adaptive Aspect Attention Model for Rating Prediction. In Proceedings of the Twenty-Seventh International Joint Conference on Artificial Intelligence, IJCAI 2018, July 13-19, 2018, Stockholm, Sweden , Jérôme Lang (Ed.). ijcai.org, 3748–3754. doi:10.249...
-
[6]
Wenqi Fan, Yujuan Ding, Liangbo Ning, Shijie Wang, Hengyun Li, Dawei Yin, Tat-Seng Chua, and Qing Li. 2024. A Survey on RAG Meeting LLMs: To- wards Retrieval-Augmented Large Language Models. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD 2024, Barcelona, Spain, August 25-29, 2024 , Ricardo Baeza-Yates and Fran...
arXiv 2024
-
[7]
Xinyu Guan, Zhiyong Cheng, Xiangnan He, Yongfeng Zhang, Zhibo Zhu, Qinke Peng, and Tat-Seng Chua. 2019. Attentive Aspect Modeling for Review-Aware Recommendation. ACM Trans. Inf. Syst. 37, 3 (2019), 28:1–28:27. doi:10.1145/ 3309546
work page 2019
Show all 64 references
-
[8]
Kelvin Guu, Kenton Lee, Zora Tung, Panupong Pasupat, and Ming-Wei Chang
- [9]
-
[10]
Xiangnan He, Kuan Deng, Xiang Wang, Yan Li, Yong-Dong Zhang, and Meng Wang. 2020. LightGCN: Simplifying and Powering Graph Convolution Network for Recommendation. In Proceedings of the 43rd International ACM SIGIR con- ference on research and development in Information Retriev...
2020
-
[11]
Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen
Edward J. Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. 2022. LoRA: Low-Rank Adaptation of Large Language Models. In The Tenth International Conference on Learning Representations, ICLR 2022, Virtual Event, April 25-29, 20...
2022
-
[12]
Gautier Izacard and Edouard Grave. 2021. Distilling Knowledge from Reader to Retriever for Question Answering. In 9th International Conference on Learning Representations, ICLR 2021, Virtual Event, Austria, May 3-7, 2021 . OpenReview.net. https://openreview.net/forum?id=NTEz-6wysdb
2021
-
[13]
Gautier Izacard and Edouard Grave. 2021. Leveraging Passage Retrieval with Generative Models for Open Domain Question Answering. In Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics: Main Volume, EACL 2021, Online, Apri...
2021 doi
-
[14]
Gawesh Jawaheer, Peter Weller, and Patty Kostkova. 2014. Modeling User Pref- erences in Recommender Systems: A Classification Framework for Explicit and Implicit User Feedback. ACM Trans. Interact. Intell. Syst. 4, 2 (2014), 8:1–8:26. doi:10.1145/2512208
2014 doi
-
[15]
Wang-Cheng Kang and Julian J. McAuley. 2018. Self-Attentive Sequential Rec- ommendation. In IEEE International Conference on Data Mining, ICDM 2018, Singapore, November 17-20, 2018 . IEEE Computer Society, 197–206. doi:10.1109/ Conference acronym ’XX, June 03–05, 2018, Woodsto...
2018
- [16]
-
[18]
Patrick Lewis, Ethan Perez, Aleksandra Piktus, Fabio Petroni, Vladimir Karpukhin, Naman Goyal, Heinrich Küttler, Mike Lewis, Wen-tau Yih, Tim Rocktäschel, Sebastian Riedel, and Douwe Kiela. 2020. Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks. In Advances in ...
2020
- [19]
-
[20]
Yuhan Li, Xinni Zhang, Linhao Luo, Heng Chang, Yuxiang Ren, Irwin King, and Jia Li. 2025. G-Refer: Graph Retrieval-Augmented Large Language Model for Explainable Recommendation. In Proceedings of the ACM on Web Conference 2025, WWW 2025, Sydney, NSW, Australia, 28 April 2025- ...
2025
-
[21]
Huiting Liu, Yi Chen, Pei-Pei Li, Peng Zhao, and Xindong Wu. 2023. Enhancing review-based user representation on learned social graph for recommendation. Knowl. Based Syst. 266 (2023), 110438. doi:10.1016/J.KNOSYS.2023.110438
2023
- [22]
-
[23]
Nayu Liu, Kaiwen Wei, Yong Yang, Jianhua Tao, Xian Sun, Fanglong Yao, Hongfeng Yu, Li Jin, Zhao Lv, and Cunhang Fan. 2024. Multimodal Cross-Lingual Summarization for Videos: A Revisit in Knowledge Distillation Induced Triple- Stage Training Method. IEEE Trans. Pattern Anal. Ma...
2024
-
[24]
McAuley and Jure Leskovec
Julian J. McAuley and Jure Leskovec. 2013. Hidden factors and hidden topics: understanding rating dimensions with review text. InSeventh ACM Conference on Recommender Systems, RecSys ’13, Hong Kong, China, October 12-16, 2013 , Qiang Yang, Irwin King, Qing Li, Pearl Pu, and Ge...
2013
- [25]
-
[26]
Ori Ram, Yoav Levine, Itay Dalmedigos, Dor Muhlgay, Amnon Shashua, Kevin Leyton-Brown, and Yoav Shoham. 2023. In-Context Retrieval-Augmented Language Models. Trans. Assoc. Comput. Linguistics 11 (2023), 1316–1331. doi:10.1162/TACL_A_00605
2023 doi
-
[27]
Shafiq Rayhan Joty Caiming Xiong Yingbo Zhou Semih Yavuz Rui Meng, Ye Liu
-
[28]
Weijia Shi, Sewon Min, Michihiro Yasunaga, Minjoon Seo, Richard James, Mike Lewis, Luke Zettlemoyer, and Wen-tau Yih. 2024. REPLUG: Retrieval-Augmented Black-Box Language Models. In Proceedings of the 2024 Conference of the North American Chapter of the Association for Computa...
2024
-
[29]
Jie Shuai, Kun Zhang, Le Wu, Peijie Sun, Richang Hong, Meng Wang, and Yong Li
-
[30]
Fei Sun, Jun Liu, Jian Wu, Changhua Pei, Xiao Lin, Wenwu Ou, and Peng Jiang
-
[31]
Huang, Xiaohui Yu, and Bushra Aljbawi
Omer Tal, Yang Liu, Jimmy X. Huang, Xiaohui Yu, and Bushra Aljbawi. 2021. Neural Attention Frameworks for Explainable Recommendation. IEEE Trans. Knowl. Data Eng. 33, 5 (2021), 2137–2150. doi:10.1109/TKDE.2019.2953157
2021
-
[32]
Yunzhi Tan, Min Zhang, Yiqun Liu, and Shaoping Ma. 2016. Rating-Boosted Latent Topics: Understanding Users and Items with Ratings and Reviews. In Proceedings of the Twenty-Fifth International Joint Conference on Artificial Intel- ligence, IJCAI 2016, New York, NY, USA, 9-15 Ju...
2016
-
[33]
Qwen Team. 2024. Qwen2.5: A Party of Foundation Models. https://qwenlm. github.io/blog/qwen2.5/
2024
-
[34]
Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yas- mine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhos- ale, et al. 2023. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288 (2023)
2023 arXiv
- [35]
-
[36]
Aäron van den Oord, Yazhe Li, and Oriol Vinyals. 2018. Representation Learning with Contrastive Predictive Coding. CoRR abs/1807.03748 (2018). arXiv:1807.03748 http://arxiv.org/abs/1807.03748
2018 arXiv
- [37]
-
[38]
Yile Wang, Peng Li, Maosong Sun, and Yang Liu. 2023. Self-Knowledge Guided Retrieval Augmentation for Large Language Models. In Findings of the Associa- tion for Computational Linguistics: EMNLP 2023, Singapore, December 6-10, 2023 , Houda Bouamor, Juan Pino, and Kalika Bali (...
2023 doi
-
[39]
Chuyuan Wei, Ke Duan, Shengda Zhuo, Hongchun Wang, Shuqiang Huang, and Jie Liu. 2025. Enhanced Recommendation Systems with Retrieval-Augmented Large Language Model. J. Artif. Intell. Res. 82 (2025), 1147–1173. doi:10.1613/ JAIR.1.17809
2025
-
[40]
Kaiwen Wei, Xian Sun, Zequn Zhang, Jingyuan Zhang, Zhi Guo, and Li Jin
-
[41]
Kaiwen Wei, Jiang Zhong, Hongzhi Zhang, Fuzheng Zhang, Di Zhang, Li Jin, Yue Yu, and Jingyuan Zhang. 2025. Chain-of-Specificity: Enhancing Task-Specific Constraint Adherence in Large Language Models. In Proceedings of the 31st International Conference on Computational Linguist...
2025
-
[42]
Yibiao Wei, Yang Xu, Lei Zhu, Jingwei Ma, and Chengmei Peng. 2024. Multi-level cross-modal contrastive learning for review-aware recommendation. Expert Syst. Appl. 247 (2024), 123341. doi:10.1016/J.ESWA.2024.123341
2024
-
[43]
Junda Wu, Cheng-Chun Chang, Tong Yu, Zhankui He, Jianing Wang, Yupeng Hou, and Julian J. McAuley. 2024. CoRAL: Collaborative Retrieval-Augmented Large Language Models Improve Long-tail Recommendation. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and ...
2024
-
[44]
Wu-Dong Xi, Ling Huang, Chang-Dong Wang, Yin-Yu Zheng, and Jian-Huang Lai. 2022. Deep Rating and Review Neural Network for Item Recommendation. IEEE Trans. Neural Networks Learn. Syst. 33, 11 (2022), 6726–6736. doi:10.1109/ TNNLS.2021.3083264
2022
- [45]
-
[46]
Mengyuan Yang, Mengying Zhu, Yan Wang, Linxun Chen, Yilei Zhao, Xiuyuan Wang, Bing Han, Xiaolin Zheng, and Jianwei Yin. 2024. Fine-Tuning Large Language Model Based Explainable Recommendation with Explainable Quality Reward. In AAAI Conference on Artificial Intelligence . AAAI...
2024
- [47]
- [48]
-
[49]
Kai Zhang, Hao Qian, Qi Liu, Zhiqiang Zhang, Jun Zhou, Jianhui Ma, and Enhong Chen. 2021. SIFN: A Sentiment-aware Interactive Fusion Network for Review- based Item Recommendation. InCIKM ’21: The 30th ACM International Conference Learning to Shop Like Humans: A Review-driven R...
2021
-
[50]
Lei Zheng, Vahid Noroozi, and Philip S. Yu. 2017. Joint Deep Modeling of Users and Items Using Reviews for Recommendation. In Proceedings of the Tenth ACM International Conference on Web Search and Data Mining, WSDM 2017, Cambridge, United Kingdom, February 6-10, 2017 , Maarte...
2017
-
[51]
Zhi Zheng, Wenshuo Chao, Zhaopeng Qiu, Hengshu Zhu, and Hui Xiong. 2024. Harnessing Large Language Models for Text-Rich Sequential Recommendation. In Proceedings of the ACM on Web Conference 2024, WWW 2024, Singapore, May 13-17, 2024, Tat-Seng Chua, Chong-Wah Ngo, Ravi Kumar, ...
2024
-
[57]
Reflect general likes and dislikes, not specific brands or items
-
[59]
Exclude mentions of delivery time or pricing
-
[60]
Like": [
Be concise and simple. Output format: { "Like": ["..."], "Dislike": ["..."] } Table 9: The Detailed User Preference Extraction Prompt. Item Features Extraction Prompt Template Instruction: Given user reviews of purchased items in JSON format, extract high-level item properties...
-
[61]
Summarize general strengths and weaknesses of the items
-
[62]
Be derived from the content of the reviews
-
[63]
Avoid mentioning specific brands or item names
-
[64]
Exclude any comments related to delivery time or pricing
-
[65]
Pros": [
Be simple, short, and concise. Output format: { "Pros": ["..."], "Cons": ["..."] } Table 10: The Detailed Item Features Extraction Prompt. B Detailed Ablation Study Results We conduct extensive ablation study on the top-K strategies and dif- ferent backbones of PrefRAG cross d...
2018
-
[2019]
BERT4Rec: Sequential Recommendation with Bidirectional Encoder Repre- sentations from Transformer. In Proceedings of the 28th ACM International Con- ference on Information and Knowledge Management, CIKM 2019, Beijing, China, November 3-7, 2019, Wenwu Zhu, Dacheng Tao, Xueqi Ch...
2019
-
[2020]
CoRR abs/2002.08909 (2020)
REALM: Retrieval-Augmented Language Model Pre-Training. CoRR abs/2002.08909 (2020). arXiv:2002.08909 https://arxiv.org/abs/2002.08909
2002 arXiv
-
[2021]
Trigger is Not Sufficient: Exploiting Frame-aware Knowledge for Im- plicit Event Argument Extraction. In Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing, ACL/IJCN...
2021 doi
-
[2022]
A Review-aware Graph Contrastive Learning Framework for Recommen- dation. In SIGIR ’22: The 45th International ACM SIGIR Conference on Research and Development in Information Retrieval, Madrid, Spain, July 11 - 15, 2022 , Enrique Amigó, Pablo Castells, Julio Gonzalo, Ben Carte...
2022
-
[2024]
Salesforce AI Research Blog
SFR-Embedding-Mistral:Enhance Text Retrieval with Transfer Learning. Salesforce AI Research Blog. https://www.salesforce.com/blog/sfr-embedding/
Reviewed August 5, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.