Pith. sign in

REVIEW 3 major objections 5 minor 52 references

When Transformers Meet Recommenders: Integrating Self-Attentive Sequential Recommendation with Fine-Tuned LLMs

T0 review · 3 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read A three-part hybrid—SASRec encoder, mapping layer, and LoRA-tuned LLM—reports consistent gains over baselines on cold-start and warm-start recommendation.

desk verdict The central claim of consistent improvement is contradicted by the paper's own Table 2 and warm-start section, so the paper as submitted should be rejected rather than sent to referees. read the letter →

arxiv 2507.05733 v1 pith:XDYA2PIS submitted 2025-07-08 cs.IR cs.AI

classification cs.IRcs.AI
keywords sequentialrecommendationlargelanguagemodelsLoRAfine-tuningcollaborativefilteringcold-starthybridrecommendersystemself-attentionbinarypreferenceprediction
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

The paper proposes SASRecLLM, a hybrid recommender that combines a self-attentive sequential model with a large language model. SASRec encodes users' interaction histories into collaborative embeddings; a mapping layer projects those embeddings into the LLM's token space; and the LLM, fine-tuned with LoRA, answers a Yes/No question about whether the user will like a target item. The point of the fusion is to fix a known gap: LLMs lack collaborative signals and domain-specific interaction knowledge, while conventional recommender models lack semantic reasoning and cold-start generalization. The paper reports that this hybrid improves on CF, sequential, and LLM baselines across two datasets, and argues it works in both cold-start and warm-start settings. If the pattern holds, it gives practitioners a modular recipe for adding collaborative structure to LLM-based recommenders without full retraining.

What carries the argument

The load-bearing mechanism is the mapping layer: a two-hidden-layer MLP that projects SASRec's low-dimensional user and item embeddings into the LLM's high-dimensional token embedding space through transformation and reshaping. Those aligned embeddings are inserted into a fixed textual prompt at the user-ID and item-ID positions, so a hybrid encoding mixes ordinary token embeddings with collaborative embeddings. Around this sit three training strategies: Dual-Stage Training (pretrain SASRec and the LLM separately, then fine-tune them jointly), Hierarchical Freezing (freeze one component while tuning another), and Plug-and-Play Tuning (isolate LoRA, mapping, and SASRec updates), all optimized against binary cross-entropy.

What would settle it

Re-run TALLRec and SASRecLLM on the exact Amazon Book subset used here (users and items with IDs up to 4000, ratings at least 4 treated as positive) with the same TinyLlama-1.1B and LoRA settings, and compare AUC and UAUC. If TALLRec's measured Amazon numbers match the MovieLens values printed in the same row (AUC about 0.689, UAUC about 0.676), then Table 2 is not a valid baseline measurement and the paper's 'consistent improvement' claim would need to be re-evaluated.

Watch

Extended reading notes

Core claim

The central discovery the paper tries to establish is that collaborative and semantic signals can be fused at the embedding level rather than by letting the LLM reason about items from text alone. SASRecLLM does this by replacing the user-ID and item-ID placeholders in a textual prompt with aligned collaborative embeddings computed by SASRec, so the language model sees both the story told by the interaction sequence and the meaning stored in the item titles. The paper presents experiments on MovieLens-1M and a filtered Amazon Book subset in which SASRecLLM records the best overall AUC/UAUC and competitive confusion-matrix metrics, with the sharpest gains appearing in cold-start scenarios. The author interprets this as evidence that the modular 'collaborative encoder + aligner + tuned LLM' pattern is a valid paradigm for the next generation of LLM-based recommenders.

Load-bearing premise

The central claim assumes the reported baseline numbers are correct, in particular that the TALLRec row in the Amazon Book table was measured on that dataset and not copied from the MovieLens table.

Editorial extensions

If this is right

  • If the reported gains hold, LLM-based recommenders no longer have to choose between collaborative accuracy and semantic flexibility; the same LLM can serve both cold and warm users.
  • Because only LoRA, the mapping layer, and the SASRec encoder are trained, the approach can be adopted at a fraction of full fine-tuning cost.
  • The modular design means the SASRec encoder or the LLM backbone can be swapped without rebuilding the whole system, opening a practical path for cross-domain recommendation.
  • The binary Yes/No formulation suggests immediate extension to click-through-rate estimation and preference classification tasks in production pipelines.

Reading between the lines

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

  • The paper leaves implicit that the same architecture could be lifted from binary Yes/No prediction to top-K ranking or multiclass interaction prediction by changing the prompt head, because the SASRec encoder already produces ranked sequence representations.
  • A testable extension the author does not run: replace the MLP mapping layer with cross-attention between collaborative embeddings and token embeddings; the warm-start result, where SASRec alone slightly beats SASRecLLM, suggests the current projection may be the bottleneck.
  • The cold-start result suggests LLM world knowledge can substitute for interaction history; one could map performance against a continuous history-length sweep to find where SASRec's contribution begins to dominate.
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

3 major / 5 minor

Summary. The paper proposes SASRecLLM, a hybrid recommender that combines a SASRec collaborative encoder with a LoRA-fine-tuned TinyLlama-1.1B language model, bridged by a two-layer mapping layer that projects collaborative embeddings into the LLM token space. Three training strategies (Dual-Stage Training, Hierarchical Freezing, and Plug-and-Play Tuning) are introduced. The model is evaluated on MovieLens-1M and Amazon Book for binary like/dislike prediction using AUC, UAUC, Log Loss, and confusion-matrix metrics, with additional cold-start and warm-start analyses on MovieLens. The central claim is that SASRecLLM achieves 'robust and consistent improvements over strong baselines in both cold-start and warm-start scenarios.'

Significance. If the reported results were sound, the paper would offer a useful modular blueprint for injecting collaborative signals into instruction-tuned LLMs, and the accompanying open-source implementation and detailed ablation study would be valuable to the LLM4Rec community. The paper is transparent about its computational constraints and the resulting design choices (e.g., TinyLlama backbone, Amazon downsampling), and it candidly discusses limitations in Section 6.1. However, the core empirical claim is undermined by internal contradictions in the reported data: a duplicated baseline row across the two datasets and a warm-start result that directly contradicts the abstract. These issues are load-bearing because the paper's contribution is explicitly an empirical demonstration of consistent improvement, and the current manuscript does not support that claim.

major comments (3)
  1. [Table 2 (Amazon Book) and Table 1 (MovieLens)] The TALLRec row in Table 2 is identical to the TALLRec row in Table 1 across every reported quantity, including Log Loss 0.649 ± 0.063, Precision 0.628 ± 0.116, Recall 0.636 ± 0.048, F1 0.688 ± 0.078, Accuracy 0.635 ± 0.064, AUC 0.689 ± 0.052, UAUC 0.676 ± 0.059, and the relative improvement of 1.17%. It is implausible that the Amazon Book evaluation, after different preprocessing (including filtering user/item IDs above 4,000), reproduces the MovieLens metrics to three decimals with identical standard errors. If the row is taken at face value, SASRecLLM is substantially worse than TALLRec on Amazon (AUC 0.601 vs 0.689, UAUC 0.517 vs 0.676, F1 0.489 vs 0.688), which directly contradicts the claimed consistent improvement. If the row is a copy error, the evaluation table is unreliable. Either way, the central comparison is not supported.
  2. [Section 5.3.3 (RQ3), Fig. 11, and Section 6.3] The warm-start analysis in Fig. 11 is described in the text: 'SASRec slightly outperforms SASRecLLM.' This observation directly contradicts the abstract's claim of 'robust and consistent improvements over strong baselines in both cold-start and warm-start scenarios' and the conclusion in Section 6.3 that SASRecLLM 'excels in both cold-start and warm-start scenarios.' The paper's own data show that the proposed model is not the best method in the warm-start setting, so the central claim of consistent improvement is internally inconsistent.
  3. [Section 5.3.3 and Section 6.1] The cold-start and warm-start evaluation is performed on MovieLens only ('MovieLens is used as the focus'), yet the abstract and conclusion generalize the claim to both datasets without qualification. For Amazon Book, the full comparison shows SASRecLLM underperforming TALLRec on the primary metrics (AUC and UAUC), and no cold/warm breakdown is provided for Amazon. Consequently, the claim of robust and consistent improvements across datasets and scenarios is unsupported by the presented evidence.
minor comments (5)
  1. [Abstract and Title] The title contains a typo: 'Fine-T uned' should read 'Fine-Tuned.'
  2. [Section 3.1] The subsection numbering is inconsistent: Section 3.1.1.1 and 3.1.2.1 are used, but the parent subsections are 3.1.1 and 3.1.2; this should be cleaned up (presumably 3.1.1.1, 3.1.1.2, 3.1.1.3, and 3.1.2.1, 3.1.2.2).
  3. [References] Reference [38] cites 'ChatGPT. Request for the limitations...' as a source; this is not a scholarly reference and should be replaced with a proper citation or removed.
  4. [Fig. 7] The confusion-matrix figure in Fig. 7 uses the language of 'failures' (TP: Correctly predicted failures), which is inconsistent with the recommendation context of the paper; the caption and labels should be adapted to the like/dislike setting.
  5. [Throughout] There are several grammatical and typographical issues, such as 'This method training method improves' (Section 3.2) and 'summaried' (Section 6); a careful proofreading pass is needed.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the paper is an empirical engineering comparison, not a derivation whose conclusions equal its inputs.

full rationale

The paper is an empirical system paper rather than a derivation from first principles. The method section defines SASRec embeddings (Eq. 1), the mapping projection (Eqs. 7-9), and the LoRA LLM prediction (Eq. 12), and the experiments then compare the assembled model against implemented baselines on held-out test splits with standard metrics (Eqs. 15-16). I find no parameter that is fitted to the target metric and then reported as a prediction, no self-citation chain that supplies the central premise, and no uniqueness theorem imported from the author's prior work. The closest concerns are not circularity: Section 6.1 explicitly admits all baselines were re-implemented and customized, Table 2's TALLRec row is byte-identical to Table 1's, and Fig. 11 states SASRec slightly outperforms SASRecLLM in the warm-start scenario, contradicting the abstract. These are data-integrity and claim-consistency problems that would affect correctness, but they do not make any stated result definitionally equal to its inputs, so the circularity score is 0.

Assumptions & free parameters 3 free parameters · 3 assumptions · 0 invented entities

The paper introduces no new theoretical entities; the mapping layer is a standard MLP. The free parameters are data-processing thresholds chosen by the authors. The main assumptions concern the validity of the evaluation setup and the fidelity of the re-implemented baselines.

free parameters (3)
  • Rating threshold for binary labels = 4
    Ratings >=4 are labeled 'like', <4 are 'dislike' (Section 4.1). This transforms the task into balanced binary classification and directly affects all reported metrics.
  • Amazon data reduction filter = user/item IDs > 4000 removed
    Section 4.1 states records with user and item IDs greater than 4000 are filtered out; this changes the evaluation distribution and may explain the weaker results.
  • Warm/cold interaction threshold = 3 interactions
    Section 4.1 defines warm set as user-item pairs with interaction count >3; this defines the two scenarios central to the paper's claim.
assumptions (3)
  • domain assumption Balanced binary classification is a meaningful proxy for recommendation quality.
    The evaluation converts ratings to a balanced yes/no task; AUC/UAUC on this setup is assumed to reflect real recommender performance.
  • domain assumption Re-implemented baselines are faithful to their original methods.
    Section 5.1 states all baselines were re-implemented and customized; the paper does not reproduce original reported numbers for TALLRec, so the fairness of the comparison is assumed.
  • domain assumption The prompt template is equally fair to all LLM-based methods.
    A single prompt template is used for ICL, TALLRec, and SASRecLLM; template choice can favor the proposed model.

how reviews work

0 comments
Cite this review

Pith. "Pith review of When Transformers Meet Recommenders: Integrating Self-Attentive Sequential Recommendation with Fine-Tuned LLMs." pith.science (2026). https://pith.science/paper/XDYA2PIS

@misc{pith2026250705733,
  author       = {Pith},
  title        = {Pith review of: When Transformers Meet Recommenders: Integrating Self-Attentive Sequential Recommendation with Fine-Tuned LLMs},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/XDYA2PIS}},
  note         = {Machine review of arXiv:2507.05733}
}
read the original abstract

Self-Attentive Sequential Recommendation (SASRec) effectively captures long-term user preferences by applying attention mechanisms to historical interactions. Concurrently, the rise of Large Language Models (LLMs) has motivated research into LLM-based recommendation, which leverages their powerful generalization and language understanding capabilities. However, LLMs often lack the domain-specific knowledge and collaborative signals essential for high-quality recommendations when relying solely on textual prompts. To address this limitation, this study proposes SASRecLLM, a novel framework that integrates SASRec as a collaborative encoder with an LLM fine-tuned using Low-Rank Adaptation (LoRA). The components are connected via a mapping layer to align their dimensional spaces, and three targeted training strategies are designed to optimize the hybrid architecture. Extensive experiments on multiple datasets demonstrate that SASRecLLM achieves robust and consistent improvements over strong baselines in both cold-start and warm-start scenarios. This work advances the field of LLM-based recommendation by presenting a modular and effective paradigm for fusing structured collaborative filtering with the semantic power of fine-tuned LLMs. The implementation is available on GitHub: https://github.com/kechenkristin/RecLLM

Figures

Figures reproduced from arXiv: 2507.05733 by the authors.

Figure 1
Figure 1. LLMs tokenize input prompts, embed them, and perform inference on the embeddings. Adapted from [27]. via backpropagation and gradient descent. However, it requires significant computational resources and labeled data, making it impractical in many cases. As LLMs scale, full fine-tuning becomes increasingly costly and prone to overfitting, particularly with small datasets [25]. To address these challenges, Parameter-… view at source ↗
Figure 2
Figure 2. Architecture of SASRecLLM. The model takes user–item interactions as input, extracts collaborative signals via SASRec, projects them into the LLM embedding space through a mapping layer, and generates predictions using a fine-tuned LLM enhanced with LoRA. pabilities of LLMs with structured user-item interac￾tion modeling. Furthermore, the use of lightweight fine-tuning via LoRA enhances the LLM’s ability to adapt to… view at source ↗
Figure 4
Figure 4. Architecture of the mapping layer. Implemented as a MLP with two hidden layers, it receives embeddings from SASRec and aligns them to the LLM’s token embedding space through two phases: Transformation and Reshaping. duce nonlinearity and enhance feature interactions, a shared two-layer Point-Wise Feed-Forward Network (FFN) is applied to each position si : Fi = FFN(si) = ReLU  siW(1) + b (1)  W(2) + b (2) , (5) whe… view at source ↗
Figures from the paper (7 more)
Figure 5
Figure 5. Figure 5: Architecture of the LLM Layer. The LLM layer receives the constructed prompt and aligned collaborative embed￾dings from SASRec and the mapping layer, and generates the final recommendation output. 3.1.3.1 Prompt Construction To convert recommendation data into language…
Figure 6
Figure 6. Figure 6: Overview of the SASRecLLM implementation workflow. where yb corresponds to the model’s predicted proba￾bility, derived from Equation (12), and Ω represents the set of trainable parameters: Θ ′ for the LoRA mod￾ule, ϕ for the mapping layer, and ψ for the SASRec encoder.…
Figure 7
Figure 7. Figure 7: Illustration of Confusion Matrix-Based Metrics [39]. TP: Correctly predicted failures. TN: Correctly predicted non-failures. FP: Incorrectly predicted failures. FN: Missed failures. To evaluate SASRecLLM’s performance under both cold-start and warm-start scenarios, two…
Figure 8
Figure 8. Figure 8: Comprehensive performance comparison of SASRecLLM and baseline models on the MovieLens (top) and Amazon Book (bottom) datasets across multiple evaluation metrics. Each row presents: (1) AUC, UAUC (bars), and Negative Log Loss (line) are used to assess recommendation ac…
Figure 9
Figure 9. Figure 9: , when evaluate the ICL baseline in multiple runs, the recall rate is always 0.5000 in the balanced dataset. This behavior suggests that, the model only catches the true positives regardless of the input, which confirms the research gap identified in Sec￾tion 2.3, thus…
Figure 10
Figure 10. Figure 10: Relative improvement line chart for ablation study using ICL as the benchmark. architecture. Notably, the largest performance gain is observed between the standalone SASRec model and SASRecLLM, underscoring the power of LLM4Rec. In comparison, the performance improvem…
Figure 12
Figure 12. Figure 12: Training Log Line with Different Metrics in Movielens Dataset. generalizability of the proposed framework. 6.1 Limitation The primary limitation of this study lies in computa￾tional resource constraints. Due to this limitation, the task setup employs a small-scale LLM…

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

52 extracted references · 37 canonical work pages

  1. [1]

    Llama: Open and efficient foundation language models

    Hugo Touvron et al. “Llama: Open and efficient foundation language models”. In: arXiv preprint arXiv:2302.13971 (2023)

  2. [2]

    Training language models to follow instructions with human feedback

    Long Ouyang et al. “Training language models to follow instructions with human feedback”. In: Advances in neural information processing sys- tems 35 (2022), pp. 27730–27744

  3. [3]

    A comprehensive overview of large language models

    Humza Naveed et al. “A comprehensive overview of large language models”. In: arXiv preprint arXiv:2307.06435 (2023)

  4. [4]

    Recommender systems: An overview

    Robin Burke, Alexander Felfernig, and Mehmet H Göker. “Recommender systems: An overview”. In: Ai Magazine 32.3 (2011), pp. 13– 18

  5. [5]

    Self- Attentive Sequential Recommendation

    Wang-Cheng Kang and Julian McAuley. “Self- Attentive Sequential Recommendation”. In: Proceedings of the 2018 IEEE International Con- ference on Data Mining (ICDM). 2018, pp. 197–

  6. [6]

    Llara: Large language- recommendation assistant

    Jiayi Liao et al. “Llara: Large language- recommendation assistant”. In: Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval. 2024, pp. 1785–1795

  7. [7]

    BERT4Rec: Sequential Recom- mendation with Bidirectional Encoder Repre- sentations from Transformers

    Fei Sun et al. “BERT4Rec: Sequential Recom- mendation with Bidirectional Encoder Repre- sentations from Transformers”. In: Proceedings of the 28th ACM International Conference on In- formation and Knowledge Management (CIKM) . 2019, pp. 1441–1450. doi: 10.1145/3357384. 3357895. arXiv: 1904.06690 [cs.IR]

  8. [8]

    Self-supervised Learning for Large-scale Item Recommendations

    Kun Zhou et al. “Self-Supervised Learning for Sequential Recommendation with Bidirectional Transformers”. In: Proceedings of the 43rd In- ternational ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR) . 2020, pp. 1471–1480. doi: 10.1145/3394486. 3403198. arXiv: 2007.12865 [cs.IR]

Show all 52 references
  1. [9]

    S3-Rec: Self-Supervised Learn- ing for Sequential Recommendation with Mu- tual Information Maximization

    Kun Zhou et al. “S3-Rec: Self-Supervised Learn- ing for Sequential Recommendation with Mu- tual Information Maximization”. In: Proceedings of the 29th ACM International Conference on In- formation and Knowledge Management (CIKM) . 2020, pp. 1893–1902. doi: 10.1145/3340531. 341...

  2. [10]

    Recommender Systems in the Era of Large Language Models (LLM4Rec)

    Zhipeng Zhao et al. “Recommender Systems in the Era of Large Language Models (LLM4Rec)”. In: arXiv preprint (2023). arXiv: 2307 . 02046 [cs.IR]

  3. [11]

    Tallrec: An effective and effi- cient tuning framework to align large language model with recommendation

    Keqin Bao et al. “Tallrec: An effective and effi- cient tuning framework to align large language model with recommendation”. In: Proceedings of the 17th ACM Conference on Recommender Sys- tems. 2023, pp. 1007–1014

  4. [12]

    Aggarwal

    Charu C. Aggarwal. A Survey of Collaborative Filtering-Based Recommender Systems. Springer,

  5. [13]

    Sequential Recommender Systems: Challenges, Progress, and Prospects

    Shuai Wang et al. “Sequential Recommender Systems: Challenges, Progress, and Prospects”. In: arXiv preprint (2020). arXiv: 2001 . 04830 [cs.IR]

  6. [14]

    Recommender Systems Handbook

    Francesco Ricci, Lior Rokach, and Bracha Shapira. Recommender Systems Handbook . Springer, 2015. doi: 10 . 1007 / 978 - 1 - 4899 - 7637-6

  7. [15]

    Markov Chain Recommendation System (MCRS)

    Ahmed Adam Ahmed and Naomie Salim. “Markov Chain Recommendation System (MCRS)”. In: International Journal of Novel Re- search in Computer Science and Software Engineer- ing 3.1 (2016), p. 11

  8. [16]

    Session-based Recom- mendations with Recurrent Neural Networks

    Balázs Hidasi et al. “Session-based Recom- mendations with Recurrent Neural Networks”. In: Proceedings of the International Conference on Learning Representations (ICLR). 2016. arXiv: 1511.06939 [cs.IR]. 16

  9. [17]

    Attention is all you need

    Ashish Vaswani et al. “Attention is all you need”. In: Advances in neural information pro- cessing systems 30 (2017)

  10. [18]

    Transformers4Rec: Bridging the Gap Between NLP and Sequential Recommendation

    Júlio C. De Souza et al. “Transformers4Rec: Bridging the Gap Between NLP and Sequential Recommendation”. In: Proceedings of the 30th ACM International Conference on Information and Knowledge Management (CIKM). 2021, pp. 2025–

  11. [19]

    The application of large lan- guage models in recommendation systems

    Peiyang Yu et al. “The application of large lan- guage models in recommendation systems”. In: arXiv preprint arXiv:2501.02178 (2025)

  12. [20]

    Large language models are competitive near cold-start recommenders for language-and item-based preferences

    Scott Sanner et al. “Large language models are competitive near cold-start recommenders for language-and item-based preferences”. In: Proceedings of the 17th ACM conference on recom- mender systems. 2023, pp. 890–896

  13. [21]

    Harnessing the power of llms in practice: A survey on chatgpt and beyond

    Jingfeng Yang et al. “Harnessing the power of llms in practice: A survey on chatgpt and beyond”. In: ACM Transactions on Knowledge Discovery from Data 18.6 (2024), pp. 1–32

  14. [22]

    Towards Semantic Equivalence of Tokenization in Multimodal LLM

    Shengqiong Wu et al. “Towards Semantic Equivalence of Tokenization in Multimodal LLM”. In: arXiv preprint arXiv:2406.05127 (2024)

  15. [23]

    Neural network methods for natural language processing

    Yang Liu and Meng Zhang. Neural network methods for natural language processing. 2018

  16. [24]

    Quick start guide to large lan- guage models: strategies and best practices for us- ing ChatGPT and other LLMs

    Sinan Ozdemir. Quick start guide to large lan- guage models: strategies and best practices for us- ing ChatGPT and other LLMs. Addison-Wesley Professional, 2023

  17. [25]

    Full parameter fine-tuning for large language models with limited resources

    Kai Lv et al. “Full parameter fine-tuning for large language models with limited resources”. In: arXiv preprint arXiv:2306.09782 (2023)

  18. [26]

    Lora: Low-rank adaptation of large language models

    Edward J Hu et al. “Lora: Low-rank adaptation of large language models.” In: ICLR 1.2 (2022), p. 3

  19. [27]

    Lecture Slides on Transformers

    Hung-Yi Lee. Lecture Slides on Transformers

  20. [28]

    A comprehensive recommender system model: Improving accuracy for both warm and cold start users

    Anupriya Gogna and Angshul Majumdar. “A comprehensive recommender system model: Improving accuracy for both warm and cold start users”. In: IEEE Access 3 (2015), pp. 2803– 2813

  21. [29]

    A system- atic review and taxonomy of explanations in decision support and recommender systems

    Ingrid Nunes and Dietmar Jannach. “A system- atic review and taxonomy of explanations in decision support and recommender systems”. In: User Modeling and User-Adapted Interaction 27 (2017), pp. 393–444

  22. [30]

    A systematic review of explainable artificial intelligence in terms of different application domains and tasks

    Mir Riyanul Islam et al. “A systematic review of explainable artificial intelligence in terms of different application domains and tasks”. In: Applied Sciences 12.3 (2022), p. 1353

  23. [31]

    How can recommender systems benefit from large language models: A survey

    Jianghao Lin et al. “How can recommender systems benefit from large language models: A survey”. In: arXiv preprint arXiv:2306.05817 (2023)

  24. [32]

    Language models are few- shot learners

    Tom Brown et al. “Language models are few- shot learners”. In: Advances in neural information processing systems 33 (2020), pp. 1877–1901

  25. [33]

    Improving sequential rec- ommendations with llms

    Artun Boz et al. “Improving sequential rec- ommendations with llms”. In: arXiv preprint arXiv:2402.01339 (2024)

  26. [34]

    Collm: Integrating collabo- rative embeddings into large language mod- els for recommendation

    Yang Zhang et al. “Collm: Integrating collabo- rative embeddings into large language mod- els for recommendation”. In: arXiv preprint arXiv:2310.19488 (2023)

  27. [35]

    Llm-enhanced user- item interactions: Leveraging edge informa- tion for optimized recommendations

    Xinyuan Wang et al. “Llm-enhanced user- item interactions: Leveraging edge informa- tion for optimized recommendations”. In: arXiv preprint arXiv:2402.09617 (2024)

  28. [36]

    Adapting large language models by integrating collaborative semantics for recommendation

    Bowen Zheng et al. “Adapting large language models by integrating collaborative semantics for recommendation”. In: 2024 IEEE 40th Inter- national Conference on Data Engineering (ICDE). IEEE. 2024, pp. 1435–1448

  29. [37]

    Empowering news recom- mendation with pre-trained language models

    Chuhan Wu et al. “Empowering news recom- mendation with pre-trained language models”. In: Proceedings of the 44th international ACM SI- GIR conference on research and development in information retrieval. 2021, pp. 1652–1656

  30. [38]

    Request for the limitations of training all the components of a model

    ChatGPT. Request for the limitations of training all the components of a model. Accessed via OpenAI ChatGPT on Apr. 6, 2025. Apr. 2025

  31. [39]

    Cost-sensitive learning for predictive maintenance

    Stephan Spiegel et al. “Cost-sensitive learning for predictive maintenance”. In: arXiv preprint arXiv:1809.10979 (2018)

  32. [40]

    MovieLens 1M Dataset

    Oded Golden. MovieLens 1M Dataset . https : / / www . kaggle . com / datasets / odedgolden / movielens - 1m - dataset . Accessed: 2024- 03-15. 2023. url: https : / / www . kaggle . com / datasets / odedgolden / movielens - 1m - dataset

  33. [41]

    Amazon Review Data (2018 and ear- lier)

    Jianmo Ni. Amazon Review Data (2018 and ear- lier). https://nijianmo.github.io/amazon/ . Accessed: 2024-03-15. 2019. url: https : / / nijianmo.github.io/amazon/

  34. [42]

    TinyLlama: An Open-Source Small Language Model

    Peiyuan Zhang et al. TinyLlama: An Open-Source Small Language Model. 2024. arXiv: 2401.02385 [cs.CL]. 17

  35. [43]

    Trustworthy recom- mender systems

    Shoujin Wang et al. “Trustworthy recom- mender systems”. In: ACM Transactions on Intel- ligent Systems and Technology 15.4 (2024), pp. 1– 20

  36. [44]

    Matrix factorization model in collaborative filtering algorithms: A survey

    Dheeraj Bokde, Sheetal Girase, and Debajyoti Mukhopadhyay. “Matrix factorization model in collaborative filtering algorithms: A survey”. In: Procedia Computer Science 49 (2015), pp. 136– 146

  37. [45]

    Neural collaborative fil- tering

    Xiangnan He et al. “Neural collaborative fil- tering”. In: Proceedings of the 26th international conference on world wide web. 2017, pp. 173–182

  38. [46]

    An MDP-based recommender sys- tem

    Guy Shani, David Heckerman, and Ronen I Brafman. “An MDP-based recommender sys- tem”. In: Journal of machine Learning research 6.Sep (2005), pp. 1265–1295

  39. [47]

    Receiver operating characteristic (ROC) area under the curve (AUC): A diagnostic measure for evalu- ating the accuracy of predictors of education outcomes

    Alex J Bowers and Xiaoliang Zhou. “Receiver operating characteristic (ROC) area under the curve (AUC): A diagnostic measure for evalu- ating the accuracy of predictors of education outcomes”. In: Journal of Education for Students Placed at Risk (JESP AR)24.1 (2019), pp. 20–46

  40. [48]

    The uniform AUC: Dealing with the representativeness effect in presence–absence models

    Alberto Jiménez-Valverde. “The uniform AUC: Dealing with the representativeness effect in presence–absence models”. In: Methods in Ecol- ogy and Evolution 13.6 (2022), pp. 1224–1236. 18

  41. [206]

    1109 / ICDM

    doi: 10 . 1109 / ICDM . 2018 . 00035. arXiv: 1808.09781 [cs.IR]

  42. [2016]

    doi: 10.1007/978-3-319-29659-3

  43. [2024]

    url: https://speech.ee.ntu.edu.tw/ ~hylee / genai / 2024 - spring - course - data / 0503/0503_transformer.pdf

  44. [2034]

    arXiv: 2105.12853 [cs.IR]

    doi: 10.1145/3459637.3482143 . arXiv: 2105.12853 [cs.IR]

Pith tools

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