REVIEW 5 major objections 4 minor 1 cited by
Generative Representational Learning of Foundation Models for Recommendation
T0 review · 5 major / 4 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read RecFound claims to be the first recommendation foundation model to train three embedding tasks and ten generative tasks in one shared backbone, reporting the best average rank on both task branches—ahead of larger LLMs and finetuned…
desk verdict A real systems contribution with a new benchmark, but the SOTA claim needs entity-leakage analysis and error bars before I'd trust the numbers. 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
Three modules carry the argument. (1) Task-wise Mixture of Low-Rank Experts (TMoLE): each attention projection is augmented with $N=6$ parallel low-rank adapters of rank $r=16$, partitioned into two embedding experts, two generative experts, and two shared experts; a shared MLP router maps a learned task embedding to a gating vector $v_i = \mathrm{Softmax}(\mathrm{Mask}(\mathrm{MLP}(e_i)))$ that zeroes out experts irrelevant to the sample's task, and the projection output is $o = W_0 x + \sum_{j=1}^{N} v_i A_j B_j x$. The task mask is what lets related tasks share knowledge while unrelated tasks keep separate pathways. (2) Step-wise Convergence-oriented Sample Scheduler (S2Sched): at each step it fits a linear regression to the last $L=64$ validation losses per task to get normalized slopes, computes inter-task and intra-task non-convergence rates and a balancing weight $\beta_b(t)$ shared within embedding or generative task groups, and reallocates the batch budget $n^{(b)}_i(t) = \lfloor B^{(b)} \omega_{i,b}(t) \rfloor$ toward the slower-converging tasks, without touching loss weights. (3) Model Merge: TIES-Merging over low-rank experts across checkpoints to resolve conflicting parameter updates. The embedding branch is trained with InfoNCE on mean-pooled last-layer representations and the generative branch with token-level cross-entropy, both on the same backbone.
What would settle it
Measure entity overlap across task boundaries: for each pair of tasks, count how many user IDs, item IDs, or review texts occur in one task's training samples and the other task's test samples. If, for instance, an item that appears in a U2I or I2I training sample also appears as the ground-truth next item in an SR test sample (or in its candidate set), re-run the comparison on a strictly entity-disjoint re-split; if RecFound's margins shrink or invert, the state-of-the-art claim rests on leakage rather than multi-task transfer.
Extended reading notes
Core claim
The paper's central claim is that RecFound achieves the best average performance on both branches of its own benchmark: average rank 1.30 across the ten generative tasks and 1.33 across the three embedding tasks, ahead of finetuned unified baselines (GritLM, eCeLLM) and of far larger untuned models (Qwen2.5-32B-Instruct, Mixtral-8x7B). Ablations show that each of the three modules contributes: removing S2Sched drops the average generative score from 0.703 to 0.679 and the average embedding score from 0.775 to 0.762, and removing TMoLE drops them to 0.678 and 0.759; the model-merge step adds a small further gain. The authors also observe that the router learns task structure by itself, assigning similar routing distributions to related tasks and divergent ones to unrelated tasks, and that the scheduler's per-task sample ratios rise and fall alternately, which they interpret as protection against forgetting.
Load-bearing premise
The load-bearing premise is that the RecFound dataset's train/validation/test split is leakage-free across tasks: the same user or item, drawn from the shared source corpora, must never appear in one task's training data and another task's test data; the paper states only that it split the dataset into training, validation, and testing sets and never shows that overlapping entities are partitioned consistently.
Editorial extensions
If this is right
- A single trained model can serve both the retrieval (embedding) and user-facing text (generative) stages of a recommendation pipeline, removing the need to maintain separate embedding and generation models.
- Task-grouped routing over low-rank experts is sufficient to reconcile knowledge sharing and conflict across 13 recommendation tasks in a 7B backbone, at parameter-efficient cost.
- Adaptively reallocating sample budgets by validation-loss slope outperforms both uniform sampling and direct loss reweighting when tasks use incomparable loss functions (InfoNCE versus cross-entropy).
- The three modules are each load-bearing: ablations that remove S2Sched and TMoLE independently degrade both branches, so the state-of-the-art result is attributed to the combination rather than to any single component.
Reading between the lines
- A direct test the authors did not run: re-split the dataset so each user and item appears in exactly one of train/validation/test across all 13 tasks, since all tasks are carved from the same five source corpora and the paper never shows that overlapping entities are partitioned consistently. If RecFound's margins shrink on that split, part of the reported gains would be entity memorization rather
- The TMoLE-plus-S2Sched recipe is not recommendation-specific: any multi-task LLM setup with incommensurable losses and uneven convergence (search-plus-QA, retrieval-augmented generation) could reuse the same task-masked expert grouping and slope-based sample reallocation.
- The router keys on a fixed task-ID embedding table, so the framework cannot absorb new tasks without retraining; the authors' own limitation note (sensitivity to task data imbalance, no continual task expansion) points at where the design would need to grow—for example, deriving the mask from instruction text or adding experts dynamically.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. RecFound proposes a unified generative-representational framework for recommendation foundation models. The paper contributes a new benchmark dataset covering 13 tasks (3 embedding and 10 generative) assembled from Amazon Reviews, MovieLens, Shopping Queries, and related sources; a Task-wise Mixture of Low-rank Experts (TMoLE) module to separate and share knowledge across tasks; a Step-wise Convergence-Oriented Sample Scheduler (S2Sched) that adjusts per-task sampling ratios from validation loss slopes; and a Model Merge module based on TIES-Merging to balance checkpoint specialization. Experiments compare RecFound against general-purpose LLMs, GritLM, eCeLLM, and an embedding-only baseline, reporting improved average ranks on both generative and embedding tasks, with ablations supporting the three proposed components. The authors state they will release code, data, and checkpoints.
Significance. If the claims hold, RecFound is a useful step toward recommendation foundation models that handle both embedding and generative tasks in one backbone, and the released dataset could become a reference benchmark for the community. The paper's strengths are its broad task coverage, the explicit attempt to handle knowledge conflict and convergence imbalance in multi-task training, and the promised public release of code, data, and checkpoints. The significance is currently tempered, however, because the SOTA claims rest entirely on the authors' own new benchmark, the train/test split is not shown to be entity-disjoint across tasks, and the main tables contain an unresolved numerical inconsistency. The central ideas are plausible, but the empirical evidence needs to be made internally consistent and leakage-free before the claims can be accepted.
major comments (5)
- [§3, Tables 2 and 3] The RecFound dataset is split into training, validation, and testing sets without any stated user- or item-disjoint partitioning, even though all 13 tasks are derived from overlapping sources (Amazon Reviews, MovieLens, Shopping Queries). Because the same user or item can appear in the training data of one task and the test data of another task, the shared backbone can memorize entities (item titles, user sequences) seen in other tasks' training splits, which is especially acute for retrieval-oriented tasks such as U2I, I2I, and SR. The paper should report cross-task entity-overlap statistics and re-run the main comparison on splits where no test entity appears in any task's training set, or otherwise justify that such leakage cannot affect the reported SOTA gains.
- [§5.2 vs Appendix C, Tables 3 and 6] The same configuration 'RecFound' reports inconsistent numbers in Table 3 and Table 6. Table 3 gives Item Emb 0.824, Query Emb 0.988, User Emb 0.570, while Table 6 gives 0.823, 0.993, 0.510 for the same model; the embedding average 0.775 in Table 4 matches Table 6, not Table 3. This discrepancy affects the main results and the ablation comparison, so it must be resolved before the SOTA claim can be assessed.
- [§4.3, Eqs. (3)-(6)] The sign convention in the non-convergence estimator is unclear and appears inconsistent with the stated intent. If α_i(t) is the validation loss slope, then a task that is still improving has negative α, while a task whose loss is rising (for example due to overfitting) has positive α. Eq. (3) maps positive α to negative γ, so the statement that 'higher γ indicates less convergence' does not hold under the usual sign convention, and Eq. (6)'s -β γ_inter term would tend to up-weight tasks with negative slopes. The authors should define the normalized slope precisely, state what positive and negative α mean, and show explicitly that the scheduler up-weights genuinely non-converged tasks. In addition, the Softmax_t in Eq. (5) is not defined: the index set over which the softmax is computed is missing.
- [§5.2, Tables 2, 3, 5, 6] All reported metrics are single point estimates without error bars or significance tests. Several headline differences are small (e.g., AVE 0.344 vs 0.341, AG 0.853 vs 0.843, SA 0.533 vs 0.532 in Table 2), so without variance estimates or significance tests it is not possible to determine whether RecFound's SOTA claim is statistically meaningful. Please add multiple seeds, confidence intervals, or significance tests for the main comparisons and the ablations.
- [§4.4] The Model Merge module is not specified at the implementation level. The text says TIES-Merging is applied 'over the learned low-rank experts across different checkpoints,' but it does not state how many checkpoints are merged, at which training steps they are selected, whether the base backbone weights are also merged, or how the merged experts interact with the trained router. Without these details, the 'w/o M.M.' ablation and the main RecFound results cannot be fully reproduced.
minor comments (4)
- [§4.4, §5.2, §4.3.2] There are several typos: 'perfromance' in §4.4, 'S2Shed' in §5.2, and 'noramlized' in §4.3.2.
- [Table 2] In the QR column, eCeLLM and RecFound both report F1 = 0.973, but only RecFound is bolded; if ties are allowed, both should be marked, and the text should not describe RecFound as best on that task without qualification.
- [Eq. (1) and surrounding text] The statement that Mask(·) suppresses 'irrelevant task dimensions' by assigning them −∞ is loose; it is the logits before the softmax that are set to −∞, not dimensions of the routing distribution itself.
- [§5.1] The description of S2Sched says 'we uniformly sample 128 validation data instances' but does not clarify whether this sample is drawn per task or per task type; please specify.
Circularity Check
No significant circularity: RecFound is an empirical benchmark paper whose SOTA claims rest on held-out test evaluation, not on fitted inputs, definitional equivalences, or a self-citation chain.
full rationale
This is an empirical systems paper; there is no derivation chain whose conclusion is built into its premises. The core claims are that RecFound obtains state-of-the-art results on its constructed dataset, that TMoLE handles knowledge sharing and conflict, and that S2Sched balances convergence across tasks. Each module is defined by equations (Eqs. 1-6) whose inputs are task embeddings, routing masks, and validation-loss slopes; the reported test metrics come from the testing split described in Section 3 and Tables 2-3, and no parameter is fitted to the test labels and then reported as a prediction. The dataset is constructed by the authors and used to evaluate their own method, which is a standard benchmark-construction setting; it weakens external comparability with independently established benchmarks but is not circular reasoning. Self-citations to prior SJTU/Huawei work (e.g., [18, 29, 31, 55, 59-62]) appear in related-work context and do not carry the central SOTA claim. The limitation section's admission of sensitivity to task-specific data imbalance and lack of continual task expansion is a robustness caveat, not evidence of circularity. A possible entity overlap between training and test across the thirteen tasks (since all tasks derive from Amazon Reviews, MovieLens, and Shopping Queries) is a data-leakage risk that should be investigated, but it is an evaluation validity concern rather than a circular reduction of the kind this pass flags.
Assumptions & free parameters
free parameters (6)
- S2Sched temperature tau =
10
- History window L =
64
- Warmup ratio ς =
10%
- Number of experts per projection =
N=6, with 2 embedding, 2 generative, 2 shared
- LoRA rank and alpha =
r=16, alpha=64, dropout=0.1
- Validation sample size for loss estimation =
128
assumptions (5)
- domain assumption The RecFound dataset, assembled from public sources, is a coherent and representative benchmark for recommendation foundation models.
- ad hoc to paper Validation loss slope over the last L steps is a reliable measure of task convergence and can guide sample scheduling.
- domain assumption No cross-task entity leakage occurs between training and test splits of the combined dataset.
- domain assumption InfoNCE loss for embedding tasks and cross-entropy loss for generative tasks can be jointly optimized on a shared decoder-only backbone without destructive interference.
- standard math Standard mathematical operations such as softmax normalization and linear regression behave as expected.
Cite this review
Pith. "Pith review of Generative Representational Learning of Foundation Models for Recommendation." pith.science (2026). https://pith.science/paper/GGDHLROK
@misc{pith2026250611999,
author = {Pith},
title = {Pith review of: Generative Representational Learning of Foundation Models for Recommendation},
year = {2026},
howpublished = {\url{https://pith.science/paper/GGDHLROK}},
note = {Machine review of arXiv:2506.11999}
}
read the original abstract
Developing a single foundation model with the capability to excel across diverse tasks has been a long-standing objective in the field of artificial intelligence. As the wave of general-purpose foundation models sweeps across various domains, their influence has significantly extended to the field of recommendation systems. While recent efforts have explored recommendation foundation models for various generative tasks, they often overlook crucial embedding tasks and struggle with the complexities of multi-task learning, including knowledge sharing & conflict resolution, and convergence speed inconsistencies. To address these limitations, we introduce RecFound, a generative representational learning framework for recommendation foundation models. We construct the first comprehensive dataset for recommendation foundation models covering both generative and embedding tasks across diverse scenarios. Based on this dataset, we propose a novel multi-task training scheme featuring a Task-wise Mixture of Low-rank Experts (TMoLE) to handle knowledge sharing & conflict, a Step-wise Convergence-oriented Sample Scheduler (S2Sched) to address inconsistent convergence, and a Model Merge module to balance the performance across tasks. Experiments demonstrate that RecFound achieves state-of-the-art performance across various recommendation tasks, outperforming existing baselines.
Figures
Forward citations
Cited by 1 Pith paper
-
Large Foundation Model for Ads Recommendation
Tencent's LFM4Ads transfers user, item, and user-item cross representations from a pre-trained foundation model into downstream ad models via feature, module, and model-level mechanisms, reporting a 2.45% platform-wid...
Reference graph
Works this paper leans on
-
[1]
On the opportunities and risks of foundation models
Rishi Bommasani, Drew A Hudson, Eleanor Adlam, Atticus von Werra, Zachary Mahoney, Aran Neeraj, Eric Roberts, Stephen Casais, Roger Mouawad, Joel Batten, et al. On the opportunities and risks of foundation models. arXiv preprint arXiv:2108.07258, 2021
arXiv 2021
-
[2]
Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, and et al
Tom B. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, and et al. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020
arXiv 2005
-
[3]
Deep variational embedding representation on neural collaborative filtering for recommender systems
Li Chen et al. Deep variational embedding representation on neural collaborative filtering for recommender systems. Applied Sciences, 12(9):4168, 2022
work page 2022
-
[4]
Bert: Pre-training of deep bidirectional transformers for language understanding
Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. In NAACL-HLT, pages 4171–4186, 2019
2019
-
[5]
L. Dong, Y . Shi, and T. Liu. Neural review generation for personalized recommendations. In CIKM, 2017
work page 2017
-
[6]
Sequence-to-sequence learning for review generation and recommendation
Lifu Dong, Tianbao Zhang, Siwei Xu, Yun Li, Shengqiang Liu, Jun Guo, Yi Zhu, and Kewei Wang. Sequence-to-sequence learning for review generation and recommendation. In Pro- ceedings of the 40th International ACM SIGIR Conference on Research and Development in Information Retrieval, pages 1109–1112, 2017
work page 2017
-
[7]
Loramoe: Alleviate world knowledge forgetting in large language models via moe-style plugin, 2024
Shihan Dou, Enyu Zhou, Yan Liu, Songyang Gao, Jun Zhao, Wei Shen, Yuhao Zhou, Zhiheng Xi, Xiao Wang, Xiaoran Fan, Shiliang Pu, Jiang Zhu, Rui Zheng, Tao Gui, Qi Zhang, and Xuanjing Huang. Loramoe: Alleviate world knowledge forgetting in large language models via moe-style plugin, 2024
work page 2024
-
[8]
Coba: Conver- gence balancer for multitask finetuning of large language models, 2024
Zi Gong, Hang Yu, Cong Liao, Bingchang Liu, Chaoyu Chen, and Jianguo Li. Coba: Conver- gence balancer for multitask finetuning of large language models, 2024
work page 2024
Show all 69 references
-
[9]
The llama 3 herd of models
Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, et al. The llama 3 herd of models. arXiv e-prints, pages arXiv–2407, 2024
2024
-
[10]
Amazonqa: A review-based question answering task
Mansi Gupta, Nitish Kulkarni, Raghuveer Chanda, Anirudha Rayasam, and Zachary C Lipton. Amazonqa: A review-based question answering task. arXiv preprint arXiv:1908.04364, 2019
1908 arXiv
-
[11]
Maxwell Harper and Joseph A
F. Maxwell Harper and Joseph A. Konstan. The movielens datasets: History and context. ACM Trans. Interact. Intell. Syst., 5(4), December 2015
2015
-
[12]
Ups and downs: Modeling the visual evolution of fashion trends with one-class collaborative filtering
Ruining He and Julian McAuley. Ups and downs: Modeling the visual evolution of fashion trends with one-class collaborative filtering. In proceedings of the 25th international conference on world wide web, pages 507–517, 2016
2016
-
[13]
Session-based recommendations with recurrent neural networks
Balázs Hidasi, Alexandros Karatzoglou, Dalius Baltrunas, and Dániel Tikk. Session-based recommendations with recurrent neural networks. In International Conference on Learning Representations, 2015
2015
-
[14]
Bridging language and items for retrieval and recommendation
Yupeng Hou, Jiacheng Li, Zhankui He, An Yan, Xiusi Chen, and Julian McAuley. Bridging language and items for retrieval and recommendation. arXiv preprint arXiv:2403.03952, 2024
2024 arXiv
-
[15]
Towards universal sequence representation learning for recommender systems
Yupeng Hou, Shanlei Mu, Wayne Xin Zhao, Yaliang Li, Bolin Ding, and Ji-Rong Wen. Towards universal sequence representation learning for recommender systems. In Proceedings of the 28th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, pages 585–593, 2022
2022
-
[16]
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. Lora: Low-rank adaptation of large language models, 2021
2021
-
[17]
Foun- dation models for recommender systems: A survey and new perspectives
Chengkai Huang, Tong Yu, Kaige Xie, Shuai Zhang, Lina Yao, and Julian McAuley. Foun- dation models for recommender systems: A survey and new perspectives. arXiv preprint arXiv:2402.11143, 2024. 10
2024 arXiv
-
[18]
A comprehensive survey on retrieval methods in recommender systems
Junjie Huang, Jizheng Chen, Jianghao Lin, Jiarui Qin, Ziming Feng, Weinan Zhang, and Yong Yu. A comprehensive survey on retrieval methods in recommender systems. arXiv preprint arXiv:2407.21022, 2024
2024
-
[19]
Albert Q. Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lample, Lucile Saulnier, Lélio Renard Lavaud, Marie-Anne Lachaux, Pierre Stock, Teven Le Scao, Thibaut Lavril, Thomas ...
2023
-
[20]
Albert Q. Jiang, Alexandre Sablayrolles, Antoine Roux, Arthur Mensch, Blanche Savary, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Emma Bou Hanna, Florian Bressand, Gianna Lengyel, Guillaume Bour, Guillaume Lample, Lélio Renard Lavaud, Lucile Saulnier, Marie-Anne...
2024
-
[21]
Unsupervised tag recommendation for popular and cold products
Anand Konjengbam, Nagendra Kumar, and Manish Singh. Unsupervised tag recommendation for popular and cold products. Journal of Intelligent Information Systems, 54:545–566, 2020
2020
-
[22]
Evaluation of entity resolution approaches on real-world match problems
Hanna Köpcke, Andreas Thor, and Erhard Rahm. Evaluation of entity resolution approaches on real-world match problems. Proceedings of the VLDB Endowment, 3(1-2):484–493, 2010
2010
-
[23]
Beyond distillation: Task-level mixture-of-experts for efficient inference, 2021
Sneha Kudugunta, Yanping Huang, Ankur Bapna, Maxim Krikun, Dmitry Lepikhin, Minh- Thang Luong, and Orhan Firat. Beyond distillation: Task-level mixture-of-experts for efficient inference, 2021
2021
-
[24]
Supervised transfer learning for product information question answering
Tuan Manh Lai, Trung Bui, Nedim Lipka, and Sheng Li. Supervised transfer learning for product information question answering. arXiv preprint arXiv:1901.02539, 2019
1901 arXiv
-
[25]
Unigen: A unified generative framework for retrieval and question answering with large language models
Xiaoxi Li, Yujia Zhou, and Zhicheng Dou. Unigen: A unified generative framework for retrieval and question answering with large language models. 2023. arXiv:2312.11036
2023 arXiv
-
[26]
Ecomgpt: Instruction-tuning large language models with chain-of-task tasks for e-commerce
Yangning Li, Shirong Ma, Xiaobin Wang, Shen Huang, Chengyue Jiang, Hai-Tao Zheng, Pengjun Xie, Fei Huang, and Yong Jiang. Ecomgpt: Instruction-tuning large language models with chain-of-task tasks for e-commerce. In Proceedings of the AAAI Conference on Artificial Intelligence...
-
[27]
Towards general text embeddings with multi-stage contrastive learning
Zehan Li, Xin Zhang, Yanzhao Zhang, Dingkun Long, Pengjun Xie, and Meishan Zhang. Towards general text embeddings with multi-stage contrastive learning. arXiv preprint arXiv:2308.03281, 2023
2023 arXiv
-
[28]
Variational autoencoders for collaborative filtering
Dawen Liang, Rahul Krishnan, Matthew D Hoffman, and Tony Jebara. Variational autoencoders for collaborative filtering. In Proceedings of the 2018 World Wide Web Conference , pages 689–697, 2018
2018
-
[29]
Clickprompt: Ctr models are strong prompt generators for adapting language models to ctr prediction
Jianghao Lin, Bo Chen, Hangyu Wang, Yunjia Xi, Yanru Qu, Xinyi Dai, Kangning Zhang, Ruiming Tang, Yong Yu, and Weinan Zhang. Clickprompt: Ctr models are strong prompt generators for adapting language models to ctr prediction. In Proceedings of the ACM Web Conference 2024, page...
2024
-
[30]
How can recommender systems benefit from large language models: A survey
Jianghao Lin, Xinyi Dai, Yunjia Xi, Weiwen Liu, Bo Chen, Hao Zhang, Yong Liu, Chuhan Wu, Xiangyang Li, Chenxu Zhu, et al. How can recommender systems benefit from large language models: A survey. ACM Transactions on Information Systems, 43(2):1–47, 2025
2025
-
[31]
Rella: Retrieval-enhanced large language models for lifelong sequential behavior comprehension in recommendation
Jianghao Lin, Rong Shan, Chenxu Zhu, Kounianhua Du, Bo Chen, Shigang Quan, Ruiming Tang, Yong Yu, and Weinan Zhang. Rella: Retrieval-enhanced large language models for lifelong sequential behavior comprehension in recommendation. In Proceedings of the ACM Web Conference 2024, ...
2024
-
[32]
Focal loss for dense object detection
Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Dollár. Focal loss for dense object detection. In Proceedings of the IEEE international conference on computer vision , pages 2980–2988, 2017. 11
2017
-
[33]
Fim: A fine-grained and multi-aspect recommendation model based on large language model
Haoxi Liu, Yunjun Zhang, Xiaochen Yu, Xinxing Wang, Peng Cao, Jian Zhang, Yu Chen, and Haitao Huang. Fim: A fine-grained and multi-aspect recommendation model based on large language model. arXiv preprint arXiv:2308.04571, 2023
2023 arXiv
-
[34]
Dora: Weight-decomposed low-rank adaptation, 2024
Shih-Yang Liu, Chien-Yi Wang, Hongxu Yin, Pavlo Molchanov, Yu-Chiang Frank Wang, Kwang-Ting Cheng, and Min-Hung Chen. Dora: Weight-decomposed low-rank adaptation, 2024
2024
-
[35]
Roberta: A robustly optimized bert pretraining approach
Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Li, Artem Kochanov, Omer Mahoney, Piotr Dollar, Veselin Stoyanov, et al. Roberta: A robustly optimized bert pretraining approach. arXiv preprint arXiv:1907.11692, 2019
1907 arXiv
-
[36]
Embedding in recommender systems: A survey
Yuxin Liu et al. Embedding in recommender systems: A survey. arXiv preprint arXiv:2310.18608, 2023
2023
-
[37]
Decoupled weight decay regularization
Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101, 2017
2017 arXiv
-
[38]
Moelora: Contrastive learning guided mixture of experts on parameter-efficient fine-tuning for large language models, 2024
Tongxu Luo, Jiahe Lei, Fangyu Lei, Weihao Liu, Shizhu He, Jun Zhao, and Kang Liu. Moelora: Contrastive learning guided mixture of experts on parameter-efficient fine-tuning for large language models, 2024
2024
-
[39]
MuDoCo: Corpus for multidomain coreference resolution and referring expression generation
Scott Martin, Shivani Poddar, and Kartikeya Upasani. MuDoCo: Corpus for multidomain coreference resolution and referring expression generation. In Nicoletta Calzolari, Frédéric Béchet, Philippe Blache, Khalid Choukri, Christopher Cieri, Thierry Declerck, Sara Goggi, Hitoshi Is...
2020
-
[40]
Image-based recommendations on styles and substitutes
Julian McAuley, Christopher Targett, Qinfeng Shi, and Anton Van Den Hengel. Image-based recommendations on styles and substitutes. In Proceedings of the 38th international ACM SIGIR conference on research and development in information retrieval, pages 43–52, 2015
2015
-
[41]
Sfr-embedding-mistral: Enhance text retrieval with transfer learning
Rui Meng, Ye Liu, Shafiq Rayhan Joty, Caiming Xiong, Yingbo Zhou, and Semih Yavuz. Sfr-embedding-mistral: Enhance text retrieval with transfer learning. Salesforce AI Research Blog, 2024
2024
-
[42]
Efficient estimation of word representations in vector space
Tomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. Efficient estimation of word representations in vector space. In ICLR Workshop, 2013
2013
-
[43]
Generative representational instruction tuning, 2025
Niklas Muennighoff, Hongjin Su, Liang Wang, Nan Yang, Furu Wei, Tao Yu, Amanpreet Singh, and Douwe Kiela. Generative representational instruction tuning, 2025
2025
-
[44]
ecellm: Generalizing large language models for e-commerce from large-scale, high-quality instruction data
Bo Peng, Xinyi Ling, Ziru Chen, Huan Sun, and Xia Ning. ecellm: Generalizing large language models for e-commerce from large-scale, high-quality instruction data. In Proceedings of the 41st International Conference on Machine Learning. PMLR
-
[45]
Jeffrey Pennington, Richard Socher, and Christopher D. Manning. Glove: Global vectors for word representation. In EMNLP, pages 1532–1543, 2014
2014
-
[46]
Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Ken- ton Lee, and Luke Zettlemoyer
Matthew E. Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Ken- ton Lee, and Luke Zettlemoyer. Deep contextualized word representations. arXiv preprint arXiv:1802.05365, 2018
2018 arXiv
-
[47]
Improving language understanding by generative pre-training
Alec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language understanding by generative pre-training. OpenAI Blog, 2018
2018
-
[48]
Language models are unsupervised multitask learners
Alec Radford, Jeff Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language models are unsupervised multitask learners. OpenAI Technical Report, 2019
2019
-
[49]
Benchmark datasets for entity resolution
Rahm, Erhard. Benchmark datasets for entity resolution. https://dbs.uni-leipzig.de/ research/projects/benchmark-datasets-for-entity-resolution , 2010. 12
2010
-
[50]
Shopping queries dataset: A large-scale esci benchmark for improving product search
Chandan K Reddy, Lluís Màrquez, Fran Valero, Nikhil Rao, Hugo Zaragoza, Sambaran Bandy- opadhyay, Arnab Biswas, Anlu Xing, and Karthik Subbian. Shopping queries dataset: A large-scale esci benchmark for improving product search. arXiv preprint arXiv:2206.06588, 2022
2022 arXiv
-
[51]
Sentence-bert: Sentence embeddings using siamese bert- networks
Nils Reimers and Iryna Gurevych. Sentence-bert: Sentence embeddings using siamese bert- networks. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing, pages 3982–3992, 2019
2019
-
[52]
Large language models are zero-shot recommenders
Shijie Shen, Yunjia Ma, Jian Retrieval Zhang, Zhuoyi Zhang, Zihan Wang, Liangkun Li, Shuyu Deng, Yunfan Zhang, Jiaxing Zhang, Shaohan Jiang, et al. Large language models are zero-shot recommenders. arXiv preprint arXiv:2301.00794, 2023
2023 arXiv
-
[53]
Llama-e: Empowering e-commerce authoring with object-interleaved instruction following, 2024
Kaize Shi, Xueyao Sun, Dingxian Wang, Yinlin Fu, Guandong Xu, and Qing Li. Llama-e: Empowering e-commerce authoring with object-interleaved instruction following, 2024
2024
-
[54]
Quality metrics in recommender systems: Do we calculate metrics consistently? In Proceedings of the 15th ACM conference on recommender systems, pages 708–713, 2021
Yan-Martin Tamm, Rinchin Damdinov, and Alexey Vasilev. Quality metrics in recommender systems: Do we calculate metrics consistently? In Proceedings of the 15th ACM conference on recommender systems, pages 708–713, 2021
2021
-
[55]
Flip: Fine-grained alignment between id-based models and pretrained lan- guage models for ctr prediction
Hangyu Wang, Jianghao Lin, Xiangyang Li, Bo Chen, Chenxu Zhu, Ruiming Tang, Weinan Zhang, and Yong Yu. Flip: Fine-grained alignment between id-based models and pretrained lan- guage models for ctr prediction. In Proceedings of the 18th ACM Conference on Recommender Systems, pa...
2024
-
[56]
Irgan: A minimax game for unifying generative and discriminative information retrieval models
Jun Wang, Lantao Yu, Xiang Zhang, Yunhai Gong, Yingguo Xu, Bo Wang, Shi Zhang, Zhongfei Zhang, Yongfneg Li, and Chen Haifeng. Irgan: A minimax game for unifying generative and discriminative information retrieval models. In Proceedings of the 40th International ACM SIGIR Confe...
2017
-
[57]
Unirec: Unified and fine-grained recommendation with large language model
Xinxing Wang, Haoxi Liu, Nan Xu, Xiaochen Yu, Ruiming Wu, Yunjun Zhang, Jian Zhang, Haitao Huang, and Yu Chen. Unirec: Unified and fine-grained recommendation with large language model. arXiv preprint arXiv:2401.14614, 2024
2024 arXiv
-
[58]
Robust training objectives improve embedding-based retrieval in industrial recommendation systems
Yan Wu et al. Robust training objectives improve embedding-based retrieval in industrial recommendation systems. arXiv preprint arXiv:2409.14682, 2023
2023 arXiv
-
[59]
Towards open-world recommendation with knowledge augmentation from large language models
Yunjia Xi, Weiwen Liu, Jianghao Lin, Xiaoling Cai, Hong Zhu, Jieming Zhu, Bo Chen, Ruiming Tang, Weinan Zhang, and Yong Yu. Towards open-world recommendation with knowledge augmentation from large language models. In Proceedings of the 18th ACM Conference on Recommender System...
2024
-
[60]
Memocrs: Memory-enhanced sequential conversational recommender systems with large language models
Yunjia Xi, Weiwen Liu, Jianghao Lin, Bo Chen, Ruiming Tang, Weinan Zhang, and Yong Yu. Memocrs: Memory-enhanced sequential conversational recommender systems with large language models. In Proceedings of the 33rd ACM International Conference on Information and Knowledge Manage...
2024
-
[61]
Efficient and deployable knowledge infusion for open-world recommendations via large language models
Yunjia Xi, Weiwen Liu, Jianghao Lin, Muyan Weng, Xiaoling Cai, Hong Zhu, Jieming Zhu, Bo Chen, Ruiming Tang, Yong Yu, et al. Efficient and deployable knowledge infusion for open-world recommendations via large language models. ACM Transactions on Recommender Systems, 2024
2024
-
[62]
A decoding acceleration framework for industrial deployable llm-based recommender systems
Yunjia Xi, Hangyu Wang, Bo Chen, Jianghao Lin, Menghui Zhu, Weiwen Liu, Ruiming Tang, Weinan Zhang, and Yong Yu. A decoding acceleration framework for industrial deployable llm-based recommender systems. arXiv preprint arXiv:2408.05676, 2024
2024 arXiv
-
[63]
C-pack: Packaged resources to advance general chinese embedding, 2023
Shitao Xiao, Zheng Liu, Peitian Zhang, and Niklas Muennighoff. C-pack: Packaged resources to advance general chinese embedding, 2023
2023
-
[64]
Scaling up open tagging from tens to thousands: Comprehension empowered attribute value extraction from product title
Huimin Xu, Wenting Wang, Xin Mao, Xinyu Jiang, and Man Lan. Scaling up open tagging from tens to thousands: Comprehension empowered attribute value extraction from product title. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pages ...
2019
-
[65]
Ties-merging: Resolving interference when merging models
Prateek Yadav, Derek Tam, Leshem Choshen, Colin A Raffel, and Mohit Bansal. Ties-merging: Resolving interference when merging models. Advances in Neural Information Processing Systems, 36:7093–7115, 2023
2023
-
[66]
An Yang, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chengyuan Li, Dayiheng Liu, Fei Huang, Haoran Wei, et al. Qwen2. 5 technical report. arXiv preprint arXiv:2412.15115, 2024
2024 arXiv
-
[67]
X. Yang, Y . Zhang, and B. Li. Behavior-driven item description generation. In WWW, 2018
2018
-
[68]
Llasa: Large language and e-commerce shopping assistant, 2024
Shuo Zhang, Boci Peng, Xinping Zhao, Boren Hu, Yun Zhu, Yanjia Zeng, and Xuming Hu. Llasa: Large language and e-commerce shopping assistant, 2024
2024
-
[69]
[INST]". For Llama-3-8B-Instruct and Qwen-2.5-Instruct series, the prompt is wrapped with
Gaojie Zhou, Yupeng Xu, Wayne Xin Ding, Ying Wang, Zijian Zhang, Longxing Wang, Tianyu Yao, Yujie Zhu, Jiaqi Song, Zhengyu Bi, et al. Large language models for recommendation: A survey. arXiv preprint arXiv:2401.12397, 2024. 14 A Broader Impact As a unified generative represen...
1995 arXiv
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.