Pith. sign in

REVIEW 4 major objections 5 minor 55 references

Large Language Model driven Policy Exploration for Recommender Systems

T0 review · 4 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read Using an LLM's item preferences to pre-train a recommender policy improves both cold-start quality and long-term returns once the policy is adapted online.

desk verdict A sensible warm-start recipe for RL recommenders, but the paper doesn't isolate whether the LLM label source is what makes it work. read the letter →

arxiv 2501.13816 v1 pith:SJMMFR5R submitted 2025-01-23 cs.IR

classification cs.IR
keywords recommendersystemsreinforcementlearninglargelanguagemodelspolicypre-trainingonlineadaptationcold-startexplorationactor-critic
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper seeks to establish that a large language model can stand in for human users during the risky early phase of an online recommender, and that policies pre-trained on that stand-in do better than policies trained from scratch once they go live. The authors prompt an LLM with a user's interaction history and ten candidate items, ask it to choose the next item, and convert each choice into a reward of 1 or 0. Those signals train an actor-critic recommendation policy offline, producing a policy that yields much better initial recommendations than randomly initialized online RL baselines. They then ship the policy online in two ways: fine-tuning it on real feedback, or blending it with a fresh learnable policy whose influence grows over time. Experiments across three simulated environments report that the adaptive blend achieves the highest long-term cumulative returns while converging faster and more stably than A2C, DQN, or policy-gradient baselines.

What carries the argument

The load-bearing mechanism is LLM-based preference distillation used as an offline reward and action generator. Given a user state encoded by SASRec, the actor samples k candidate actions, the LLM is prompted to pick one or 'None', the picked action receives reward 1, and this reward feeds the actor-critic update. The second key mechanism is the adaptive online blend: A-iALP_ap acts according to (1-alpha)pi_theta + alpha pi_beta, with the pretrained policy pi_theta frozen and the learnable policy pi_beta eventually taking over; this preserves pretrained behavior early while allowing the agent to escape any bad preferences the LLM encoded.

What would settle it

Measure agreement between the LLM's top-1 item choice and the actual next item in a held-out slice of the LFM or Industry interaction logs; if agreement is at or below random-item chance, then the reward signal in Equation (3) carries no user-preference information and the claimed pre-training advantage should disappear.

Watch

Extended reading notes

Core claim

The paper's central discovery is that preference signals distilled from an LLM are a viable offline pre-training signal for RL-based recommendation, and that the resulting policy can be transferred online without the usual cold-start penalty. Concretely, the authors construct prompts that ask the LLM to choose among ten candidate items given the user's history; a chosen item gets reward 1, 'None' gets 0, and these state-action-reward triples train an A2C actor-critic whose state encoder is SASRec. The resulting iALP policy produces markedly better initial sequences than randomly initialized DQN, PG, or A2C. To move online, A-iALP_ft fine-tunes the same network on simulated user rewards, while A-iALP_ap freezes the pretrained policy and learns a new policy alongside it, mixing the two with a weight alpha that shifts from 0 to 1 as training progresses. Across LFM, Industry, and Coat, A-iALP_ap reports the highest cumulative returns, and both adaptive variants converge faster and more stably than training from scratch.

Load-bearing premise

The load-bearing premise is that an LLM prompted with item attributes and a user's history picks the items the user would actually pick, so its 1/0 choices can serve as a trustworthy pre-training reward.

Editorial extensions

If this is right

  • LLM-pretrained policies can be dropped into an online recommender to cut the initial poor-recommendation phase, addressing a main reason online RL recommenders are rarely deployed.
  • Fine-tuning the LLM-pretrained policy on real feedback already improves over offline training alone, so online adaptation is complementary to LLM distillation.
  • The adaptive blend scheme avoids catastrophic forgetting of pretrained behavior when the pretrained policy's preferences mismatch the real environment.
  • A-iALP outperforms directly querying the LLM online, since the learned policy continues improving while the LLM's choices stay static and expensive.
  • Under all tested exploration strategies, the pretrained start gives faster convergence and higher stable returns than A2C.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If LLM preferences are good enough, this recipe could extend to other interactive domains with textual item attributes but no obvious reward model, such as dialogue or tutoring systems.
  • The paper fine-tunes the LLM only on response format, not on user preferences; a testable extension is to fine-tune on real feedback when available, which might fix the failure mode visible in the Coat environment where iALP alone underperforms from-scratch A2C.
  • Because the simulated environments share data with the reward models used for evaluation, a harder test is to evaluate against held-out user behavior or a different platform's reward model; the paper does not show how the gains transfer.
  • The alpha schedule of A-iALP_ap is scenario-dependent; making alpha adaptive to the online policy's measured performance, rather than a fixed time schedule, is a natural next step.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. This paper proposes iALP, a policy for recommender systems pretrained offline using rewards and actions distilled from an LLM prompted with user interaction histories and item attributes. It then introduces two online adaptation strategies: A-iALP_ft, which fine-tunes the pretrained policy with simulated online feedback, and A-iALP_ap, which blends a frozen pretrained policy with a learnable online policy using a time-varying weight alpha. Experiments on three simulated environments (LFM, Industry, Coat) compare against DQN, PG, A2C, and frozen iALP in terms of Return, Length, and Average Reward, with claims of substantial improvements in initial and long-term performance.

Significance. The core idea of using LLM judgments as an offline pretraining signal to improve cold-start and long-term recommendation is practically relevant and the adaptive alpha-blending mechanism is a sensible way to transition from LLM-derived behavior to environment-driven behavior. The paper gives a clear formulation of the pretraining and online phases, and the three-environment evaluation is broader than many prior works. However, the empirical support for the central causal claim is incomplete: the LLM preference signal is never validated against real user behavior or the reward models, there is no non-LLM pretraining control, and the reported margins lack error bars or significance tests. If these gaps are addressed, the method could be a useful contribution; as it stands, the evidence is suggestive rather than conclusive.

major comments (4)
  1. [§4.2.1, §5.1, Table 5] The central claim that LLM-distilled preferences cause the observed improvements is not supported because there is no ablation isolating the label source. The pretraining phase in Eqs. (2)-(3) and (6)-(10) uses LLM choices as both action labels and rewards, and Section 5.4 states that the LoRA fine-tuning on 1000 samples only learns the response format, not user preferences. The paper never checks whether LLM judgments agree with held-out user interactions or with the reward models used for evaluation. The authors' own Table 5 makes the attribution doubtful: frozen iALP is worse than every online baseline in all three environments (e.g., LFM 11.2 vs A2C 28.1; Industry 25.3 vs 46.3; Coat 31.2 vs 81.7). The gains of A-iALP_ap could therefore come from the pretrained state encoder, the pretrained initialization of the online policy, or the alpha-blending schedule, rather than from the semantic content of LLM preferences. A control with a non-LLM pretraining signal (e.g., random labels, popularity-based labels, or reward-model labels) is needed to attribute the improvement to the LLM.
  2. [§5.2, Table 3] The evaluation is entirely against simulated reward models trained on the same public datasets used to build the recommendation scenarios. No calibration or agreement analysis is reported between these reward models and actual user behavior, and no validation of the LLM's preference judgments against the reward model is provided. Consequently, the reported Returns are internal consistency checks within a simulator, not measures of real-world user satisfaction. In addition, Table 5 reports single numbers without variance across seeds, confidence intervals, or significance tests; margins such as 33.1 vs 28.1 on LFM or 51.8 vs 46.3 on Industry could be within run-to-run noise. At minimum, multiple random seeds with standard deviations and a significance test are needed for the headline claims.
  3. [§4.2.3, Eq. (14), Algorithm 2] The RQ1 comparison at epoch 0 is not a meaningful competition: iALP is a fully pretrained policy, while DQN, PG, and A2C are randomly initialized at epoch 0. The statement that iALP 'significantly outperforms' these baselines is true by construction and is not accompanied by any statistical test. A more informative comparison would report the number of online steps required for each baseline to reach the initial return of iALP, or would compare all methods from the same initialization schedule. The current framing overstates the contribution of the LLM signal.
  4. [§4.2.3, Eq. (14), Algorithm 2] The adaptive scheme A-iALP_ap depends on a weight alpha that is stated to increase to 1 as training proceeds, but the exact schedule is never specified. Section 4.2.3 says only that the initial value depends on the scenario, and Algorithm 2 does not list alpha as a tunable parameter or provide its values for LFM, Industry, or Coat. Since alpha controls the relative contribution of the frozen pretrained policy versus the learnable policy, the reported results are not reproducible without this information, and the sensitivity of the method to the alpha schedule is unknown.
minor comments (5)
  1. [§1, §2.1] The policy parameter is denoted as psi in Eq. (1) and as theta in Section 4.1.2; the notation should be made consistent throughout.
  2. [§4.2.1, §5.1] There are several typos and inconsistent abbreviations: 'A-iALT_ap' appears in the introduction, 'iAPT' appears in the contributions, and 'A-iALP_ap' is sometimes written as 'A-iALP_ap'. These should be corrected for clarity.
  3. [§5.4, §6.3] The description of the reward models is incomplete: for Coat, the text says 'Matrix Factorization (DeepFM)', which conflates two distinct model families, and for LFM/Industry the reward model is said to follow 'a sequential recommender method' from [24] without specifying the architecture, training objective, or hyperparameters.
  4. [§6.4] The LLMOnline baseline used for RQ3 is not fully specified: it is unclear whether it uses the same Mistral 7B model, the same LoRA format tuning, the same prompt template, and the same candidate sampling procedure as iALP. Without this information, the comparison in Figures 8 and 9 is difficult to interpret.
  5. [§6.4] The exploration-strategy experiments are reported only for LFM and Industry (Figures 10 and 11); no results are given for Coat, despite the paper claiming 'three simulated environments'. The absence of Coat in RQ1, RQ2, and RQ4 should be acknowledged or addressed.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the empirical return comparisons are independent of the method's definitions.

full rationale

The paper's derivation chain is empirical rather than definitional. The pre-training phase (Section 4.1) uses Eq. (6), Eq. (8), and Eq. (10) to fit the actor and critic to LLM-selected actions and LLM-defined rewards, so iALP's epoch-0 behavior is indeed a re-expression of the LLM's choices. However, this is not a hidden circularity: the paper does not present that epoch-0 comparison as a derived prediction, and its central claim concerns A-iALP after online adaptation, which is evaluated in Tables 4-5 against external baselines (DQN, PG, A2C) using reward models trained from public interaction data. The adaptive losses (Eqs. 12-15) and Algorithm 2 are standard offline-to-online fine-tuning; the combining weight alpha in Eq. (14) is a scenario-dependent schedule, not a fitted parameter that is later renamed as a result. The one self-citation, reference [39], supports the motivational premise that LLMs can capture user objectives; it is a published, externally checkable paper and is not the load-bearing evidence for the empirical comparisons. The absence of a non-LLM pretraining control is a real experimental-design weakness and limits causal attribution to LLM preferences, but it does not make any equation or reported number equal to its input by construction. No specific circular step of the kinds enumerated was found, so the score is 0.

Assumptions & free parameters 5 free parameters · 4 assumptions · 0 invented entities

No new physical or conceptual entities are introduced. The LLM preference signal and the policy mixture are algorithmic components built from existing techniques, not invented entities requiring independent evidence.

free parameters (5)
  • alpha schedule = unspecified
    Eq. (14) defines the mixture weight alpha between the pretrained policy pi_theta and the learnable policy pi_beta. The paper states the initial value 'depends on the specific recommendation scenario' and that alpha increases to 1, but no schedule or numerical values are given, making it a hand-tuned parameter per dataset.
  • candidate action count k = 10
    The prompt samples k=10 candidate actions from the actor before the LLM selects one (Table 1). This choice affects whether the LLM's preferred item is in the candidate set and is not justified or swept in an ablation.
  • LLM format-tuning sample count = 1000
    Section 5.4 states the LLM is tuned with LoRA on 1000 randomly sampled interactions to learn the template prompt format. The size and selection of this tuning set may affect the quality of preference distillation and is not analyzed.
  • pretraining epochs = 100
    Section 5.4 trains iALP for 100 epochs. No ablation studies the effect of this budget on downstream performance.
  • online training steps = 50k
    Section 5.4: all RL methods are trained with 50k online steps. The fixed budget may favor methods that converge faster, such as the pretrained-initialized variants.
assumptions (4)
  • domain assumption LLM can predict user preferences from item attribute text
    The prompt in Table 1 asks the LLM to judge which candidate item a user will prefer based on item attributes and interaction history. This is assumed to be a faithful preference signal, but the LLM is only format-tuned, not preference-aligned to real users (Sections 4.1.1 and 5.4).
  • domain assumption Simulated reward models faithfully represent user feedback
    The environments are built from DeepFM or a sequential recommender trained on the same public datasets (Section 4.2.1). The paper assumes these reward models capture the user behavior needed to evaluate online policies.
  • domain assumption SASRec state encoder is a valid representation for RL recommender states
    Section 4.1.2 uses SASRec as the state encoder G, following prior RL-based RS work. Its adequacy is not ablated in this paper.
  • standard math Actor-critic with TD Q-loss is an appropriate learning rule
    Standard A2C update rule from Konda and Tsitsiklis [16]; the paper applies it without modification.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Large Language Model driven Policy Exploration for Recommender Systems." pith.science (2026). https://pith.science/paper/SJMMFR5R

@misc{pith2026250113816,
  author       = {Pith},
  title        = {Pith review of: Large Language Model driven Policy Exploration for Recommender Systems},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/SJMMFR5R}},
  note         = {Machine review of arXiv:2501.13816}
}
abstract

Recent advancements in Recommender Systems (RS) have incorporated Reinforcement Learning (RL), framing the recommendation as a Markov Decision Process (MDP). However, offline RL policies trained on static user data are vulnerable to distribution shift when deployed in dynamic online environments. Additionally, excessive focus on exploiting short-term relevant items can hinder exploration, leading to suboptimal recommendations and negatively impacting long-term user gains. Online RL-based RS also face challenges in production deployment, due to the risks of exposing users to untrained or unstable policies. Large Language Models (LLMs) offer a promising solution to mimic user objectives and preferences for pre-training policies offline to enhance the initial recommendations in online settings. Effectively managing distribution shift and balancing exploration are crucial for improving RL-based RS, especially when leveraging LLM-based pre-training. To address these challenges, we propose an Interaction-Augmented Learned Policy (iALP) that utilizes user preferences distilled from an LLM. Our approach involves prompting the LLM with user states to extract item preferences, learning rewards based on feedback, and updating the RL policy using an actor-critic framework. Furthermore, to deploy iALP in an online scenario, we introduce an adaptive variant, A-iALP, that implements a simple fine-tuning strategy (A-iALP$_{ft}$), and an adaptive approach (A-iALP$_{ap}$) designed to mitigate issues with compromised policies and limited exploration. Experiments across three simulated environments demonstrate that A-iALP introduces substantial performance improvements

Figures

Figures reproduced from arXiv: 2501.13816 by the authors.

Figure 1
Figure 1. Process of online RL for recommendation. [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Generate user preference, e.g., action and reward, [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Illustration of different adaptation schemes of iALP-to-online. [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (5 more)
Figure 7
Figure 7. Figure 7: Learning curves of return (left) and length (right) [PITH_FULL_IMAGE:figures/full_fig_p007_7.png]
Figure 6
Figure 6. Figure 6: Learning curves of return (left) and length (right) [PITH_FULL_IMAGE:figures/full_fig_p007_6.png]
Figure 8
Figure 8. Figure 8: Comparison of return (left) and length (right) be [PITH_FULL_IMAGE:figures/full_fig_p008_8.png]
Figure 9
Figure 9. Figure 9: Comparison of return (left) and length (right) be [PITH_FULL_IMAGE:figures/full_fig_p008_9.png]
Figure 10
Figure 10. Figure 10: Performance comparison between A-iALP and the [PITH_FULL_IMAGE:figures/full_fig_p008_10.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

55 extracted references · 18 canonical work pages

  1. [1]

    Keqin Bao, Jizhi Zhang, Yang Zhang, Wenjie Wang, Fuli Feng, and Xiangnan He

  2. [2]

    Jin Chen, Zheng Liu, Xu Huang, Chenwang Wu, Qi Liu, Gangwei Jiang, Yuanhao Pu, Yuxuan Lei, Xiaolong Chen, Xingmei Wang, et al. 2023. When large language models meet personalization: Perspectives of challenges and opportunities. arXiv preprint arXiv:2307.16376 (2023)

  3. [3]

    Yingpeng Du, Di Luo, Rui Yan, Hongzhi Liu, Yang Song, Hengshu Zhu, and Jie Zhang. 2023. Enhancing job recommendation through llm-based generative adversarial networks. arXiv preprint arXiv:2307.10747 (2023)

  4. [4]

    Wenqi Fan, Zihuai Zhao, Jiatong Li, Yunqing Liu, Xiaowei Mei, Yiqi Wang, Jiliang Tang, and Qing Li. 2023. Recommender systems in the era of large language models (llms). arXiv preprint arXiv:2307.02046 (2023)

  5. [5]

    Amir massoud Farahmand, Rémi Munos, and Csaba Szepesvári. 2010. Error propagation for Approximate Policy and Value Iteration. In Proceedings of the 23rd International Conference on Neural Information Processing Systems - Volume 1 (Vancouver, British Columbia, Canada) (NIPS’10). Curran Associates Inc., Red Hook, NY, USA, 568–576

  6. [6]

    Junchen Fu, Fajie Yuan, Yu Song, Zheng Yuan, Mingyue Cheng, Shenghui Cheng, Jiaqi Zhang, Jie Wang, and Yunzhu Pan. 2024. Exploring adapter-based transfer learning for recommender systems: Empirical studies and practical insights. In Proceedings of the 17th ACM International Conference on Web Search and Data Mining. 208–217

  7. [7]

    Shijie Geng, Shuchang Liu, Zuohui Fu, Yingqiang Ge, and Yongfeng Zhang. 2022. Recommendation as language processing (rlp): A unified pretrain, personalized prompt & predict paradigm (p5). In Proceedings of the 16th ACM Conference on Recommender Systems. 299–315

  8. [8]

    Dalin Guo, Sofia Ira Ktena, Pranay Kumar Myana, Ferenc Huszar, Wenzhe Shi, Alykhan Tejani, Michael Kneier, and Sourav Das. 2020. Deep bayesian bandits: Exploring in online personalized recommendations. In Proceedings of the 14th ACM Conference on Recommender Systems . 456–461

Show all 55 references
  1. [9]

    Huifeng Guo, Ruiming Tang, Yunming Ye, Zhenguo Li, and Xiuqiang He. 2017. DeepFM: a factorization-machine based neural network for CTR prediction.arXiv preprint arXiv:1703.04247 (2017)

  2. [10]

    Zhankui He, Zhouhang Xie, Rahul Jha, Harald Steck, Dawen Liang, Yesu Feng, Bodhisattwa Prasad Majumder, Nathan Kallus, and Julian McAuley. 2023. Large language models as zero-shot conversational recommenders. InProceedings of the 32nd ACM international conference on informatio...

  3. [11]

    Balázs Hidasi, Alexandros Karatzoglou, Linas Baltrunas, and Domonkos Tikk

  4. [12]

    Yupeng Hou, Shanlei Mu, Wayne Xin Zhao, Yaliang Li, Bolin Ding, and Ji-Rong Wen. 2022. Towards universal sequence representation learning for recommender systems. In Proceedings of the 28th ACM SIGKDD Conference on Knowledge Dis- covery and Data Mining . 585–593

  5. [13]

    Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. 2021. Lora: Low-rank adaptation of large language models. arXiv preprint arXiv:2106.09685 (2021)

  6. [14]

    Albert Q Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, De- vendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lample, Lucile Saulnier, et al . 2023. Mistral 7B. arXiv preprint arXiv:2310.06825 (2023)

  7. [15]

    Wang-Cheng Kang and Julian McAuley. 2018. Self-attentive sequential recom- mendation. In 2018 IEEE international conference on data mining (ICDM) . IEEE, 197–206

  8. [16]

    Vijay Konda and John Tsitsiklis. 1999. Actor-critic algorithms.Advances in neural information processing systems 12 (1999)

  9. [17]

    Volodymyr Kuleshov and Doina Precup. 2014. Algorithms for multi-armed bandit problems. arXiv preprint arXiv:1402.6028 (2014)

  10. [18]

    Aviral Kumar, Justin Fu, George Tucker, and Sergey Levine. 2019. Stabilizing off-policy Q-learning via bootstrapping error reduction . Curran Associates Inc., Red Hook, NY, USA

  11. [19]

    Minae Kwon, Sang Michael Xie, Kalesha Bullard, and Dorsa Sadigh. 2023. Re- ward Design with Language Models. In The Eleventh International Conference on Learning Representations. https://openreview.net/forum?id=10uNUgI5Kl

  12. [20]

    Seunghyun Lee, Younggyo Seo, Kimin Lee, Pieter Abbeel, and Jinwoo Shin. 2021. Offline-to-Online Reinforcement Learning via Balanced Replay and Pessimistic Q-Ensemble. In Annual Conference on Robot Learning

  13. [21]

    Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. 2015. Continuous control with deep reinforcement learning. arXiv preprint arXiv:1509.02971 (2015)

  14. [22]

    Jianghao Lin, Xinyi Dai, Yunjia Xi, Weiwen Liu, Bo Chen, Xiangyang Li, Chenxu Zhu, Huifeng Guo, Yong Yu, Ruiming Tang, et al . 2023. How Can Recom- mender Systems Benefit from Large Language Models: A Survey. arXiv preprint arXiv:2306.05817 (2023)

  15. [23]

    Pengfei Liu, Weizhe Yuan, Jinlan Fu, Zhengbao Jiang, Hiroaki Hayashi, and Graham Neubig. 2023. Pre-train, prompt, and predict: A systematic survey of prompting methods in natural language processing. Comput. Surveys 55, 9 (2023), 1–35

  16. [24]

    Shuchang Liu, Qingpeng Cai, Bowen Sun, Yuhao Wang, Ji Jiang, Dong Zheng, Peng Jiang, Kun Gai, Xiangyu Zhao, and Yongfeng Zhang. 2023. Exploration and regularization of the latent action space in recommendation. In Proceedings of the ACM Web Conference 2023. 833–844

  17. [25]

    Bonan Min, Hayley Ross, Elior Sulem, Amir Pouran Ben Veyseh, Thien Huu Nguyen, Oscar Sainz, Eneko Agirre, Ilana Heintz, and Dan Roth. 2023. Recent advances in natural language processing via large pre-trained language models: A survey. Comput. Surveys 56, 2 (2023), 1–40

  18. [26]

    Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin Riedmiller. 2013. Playing atari with deep reinforcement learning. arXiv preprint arXiv:1312.5602 (2013)

  19. [27]

    Jianmo Ni, Jiacheng Li, and Julian McAuley. 2019. Justifying recommendations using distantly-labeled reviews and fine-grained aspects. In Proceedings of the 2019 conference on empirical methods in natural language processing and the 9th international joint conference on natura...

  20. [28]

    Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Carroll Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, et al. 2022. Training language models to follow instructions with human feedback. Advances in Neural Information Processing Systems 35...

  21. [29]

    Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J Liu. 2020. Exploring the limits of transfer learning with a unified text-to-text transformer. The Journal of Machine Learning Research 21, 1 (2020), 5485–5551

  22. [30]

    Shashank Rajput, Nikhil Mehta, Anima Singh, Raghunandan H Keshavan, Trung Vu, Lukasz Heldt, Lichan Hong, Yi Tay, Vinh Q Tran, Jonah Samost, et al. 2023. Recommender Systems with Generative Retrieval.arXiv preprint arXiv:2305.05065 (2023)

  23. [31]

    Zhaochun Ren, Na Huang, Yidan Wang, Pengjie Ren, Jun Ma, Jiahuan Lei, Xinlei Shi, Hengliang Luo, Joemon Jose, and Xin Xin. 2023. Contrastive State Augmen- tations for Reinforcement Learning-Based Recommender Systems. In Proceedings of the 46th International ACM SIGIR Conferenc...

  24. [32]

    Shideh Rezaeifar, Robert Dadashi, Nino Vieillard, Léonard Hussenot, Olivier Bachem, Olivier Pietquin, and Matthieu Geist. 2022. Offline Reinforcement Learning as Anti-exploration. In AAAI Conference on Artificial Intelligence

  25. [33]

    Markus Schedl. 2016. The lfm-1b dataset for music retrieval and recommendation. In Proceedings of the 2016 ACM on international conference on multimedia retrieval . 103–110

  26. [34]

    Tobias Schnabel, Adith Swaminathan, Ashudeep Singh, Navin Chandak, and Thorsten Joachims. 2016. Recommendations as treatments: Debiasing learning and evaluation. In international conference on machine learning . PMLR, 1670– 1679

  27. [35]

    Younggyo Seo, Lili Chen, Jinwoo Shin, Honglak Lee, Pieter Abbeel, and Kimin Lee

  28. [36]

    Wentao Shi, Xiangnan He, Yang Zhang, Chongming Gao, Xinyue Li, Jizhi Zhang, Qifan Wang, and Fuli Feng. 2024. Large Language Models are Learnable Planners for Long-Term Recommendation. In Proceedings of the 47th International ACM SIGIR Conference on Research and Development in ...

  29. [37]

    Jiaxi Tang and Ke Wang. 2018. Personalized top-n sequential recommenda- tion via convolutional sequence embedding. In Proceedings of the eleventh ACM international conference on web search and data mining . 565–573

  30. [38]

    Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timothée Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, et al. 2023. Llama: Open and efficient foundation language models. arXiv preprint arXiv:2302.13971 (2023)

  31. [39]

    Jie Wang, Alexandros Karatzoglou, Ioannis Arapakis, and Joemon M Jose. 2024. Reinforcement Learning-based Recommender Systems with Large Language Models for State Reward and Action Modeling. In Proceedings of the 47th In- ternational ACM SIGIR Conference on Research and Develo...

  32. [40]

    Jie Wang, Alexandros Karatzoglou, Ioannis Arapakis, Xin Xin, Xuri Ge, and Joemon M Jose. 2024. Sparks of Surprise: Multi-objective Recommendations with Hierarchical Decision Transformers for Diversity, Novelty, and Serendipity. In Proceedings of the 33rd ACM International Conf...

  33. [41]

    Jie Wang, Fajie Yuan, Mingyue Cheng, Joemon M Jose, Chenyun Yu, Beibei Kong, Xiangnan He, Zhijin Wang, Bo Hu, and Zang Li. 2022. Transrec: Learning transferable recommendation from mixture-of-modality feedback. arXiv preprint arXiv:2206.06190 (2022)

  34. [42]

    Pengfei Wang, Yu Fan, Long Xia, Wayne Xin Zhao, ShaoZhang Niu, and Jimmy Huang. 2020. KERL: A knowledge-guided reinforcement learning model for WSDM ’25, March 10–14, 2025, Hannover, Germany Jie Wang, Alexandros Karatzoglou, Ioannis Arapakis, and Joemon M. Jose sequential reco...

  35. [43]

    Ronald J Williams. 1992. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine learning 8 (1992), 229–256

  36. [44]

    Xin Xin, Alexandros Karatzoglou, Ioannis Arapakis, and Joemon M Jose. 2020. Self-supervised reinforcement learning for recommender systems. In Proceedings of the 43rd International ACM SIGIR conference on research and development in Information Retrieval. 931–940

  37. [45]

    Xin Xin, Alexandros Karatzoglou, Ioannis Arapakis, and Joemon M Jose. 2022. Supervised advantage actor-critic for recommender systems. In Proceedings of the Fifteenth ACM International Conference on Web Search and Data Mining . 1186– 1196

  38. [46]

    Xin Xin, Tiago Pimentel, Alexandros Karatzoglou, Pengjie Ren, Konstantina Christakopoulou, and Zhaochun Ren. 2022. Rethinking Reinforcement Learning for Recommendation: A Prompt Perspective. In Proceedings of the 45th Inter- national ACM SIGIR Conference on Research and Develo...

  39. [47]

    Yuanqing Yu, Chongming Gao, Jiawei Chen, Heng Tang, Yuefeng Sun, Qian Chen, Weizhi Ma, and Min Zhang. 2024. EasyRL4Rec: A User-Friendly Code Library for Reinforcement Learning Based Recommender Systems. arXiv preprint arXiv:2402.15164 (2024)

  40. [48]

    Fajie Yuan, Alexandros Karatzoglou, Ioannis Arapakis, Joemon M Jose, and Xi- angnan He. 2019. A simple convolutional generative network for next item recommendation. In Proceedings of the twelfth ACM international conference on web search and data mining . 582–590

  41. [49]

    Gangyi Zhang. 2023. User-Centric Conversational Recommendation: Adapting the Need of User with Large Language Models. In Proceedings of the 17th ACM Conference on Recommender Systems . 1349–1354

  42. [50]

    Wayne Xin Zhao, Kun Zhou, Junyi Li, Tianyi Tang, Xiaolei Wang, Yupeng Hou, Yingqian Min, Beichen Zhang, Junjie Zhang, Zican Dong, et al. 2023. A survey of large language models. arXiv preprint arXiv:2303.18223 (2023)

  43. [51]

    Xiangyu Zhao, Liang Zhang, Zhuoye Ding, Long Xia, Jiliang Tang, and Dawei Yin

  44. [2015]

    arXiv preprint arXiv:1511.06939 (2015)

    Session-based recommendations with recurrent neural networks. arXiv preprint arXiv:1511.06939 (2015)

  45. [2018]

    In Proceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining

    Recommendations with negative feedback via pairwise deep reinforcement learning. In Proceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining . 1040–1048

  46. [2021]

    In International Conference on Machine Learning

    State entropy maximization with random encoders for efficient exploration. In International Conference on Machine Learning . PMLR, 9443–9454

  47. [2023]

    arXiv preprint arXiv:2305.00447 (2023)

    Tallrec: An effective and efficient tuning framework to align large language model with recommendation. arXiv preprint arXiv:2305.00447 (2023)

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.