Pith. sign in

REVIEW 4 major objections 6 minor 50 references

M2Rec: Multi-scale Mamba for Efficient Sequential Recommendation

T0 review · 4 major / 6 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read This paper claims that M2Rec—a Mamba-based sequential recommender augmented with an adaptive Fourier filter, fixed LLM text embeddings, and a learned gate—beats existing Mamba-based and Transformer-based models on next-item prediction…

desk verdict Plausible architecture combo with a real positional-FFT mechanic mismatch; the reported gains are worth checking but the periodic-story and data tables need fixing. read the letter →

arxiv 2505.04445 v1 pith:V5I7P72Z submitted 2025-05-07 cs.IR

classification cs.IR
keywords sequentialrecommendationMambastatespacemodelsFastFourierTransformLLMembeddingsadaptivegatingmulti-scaleperiodicpatternsnoisefiltering
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 M2Rec, a sequential recommendation model that tries to fix three weaknesses it attributes to existing Mamba-based recommenders: they miss periodic user behavior, ignore item-text semantics, and fuse multimodal features poorly. To fix this, it runs the user's item sequence through an adaptive Fast Fourier Transform before the Mamba state-space layer (filtering high frequencies as noise), supplements the item-ID embeddings with fixed embeddings from a general-purpose text-embedding LLM, and combines the two branches through a learned gate. The paper claims that on ML-1M and three location datasets this combination reaches state-of-the-art results, improving Hit Rate@10 by 3.2% over prior Mamba-based models and running about 20% faster at inference than Transformer baselines. A sympathetic reader would care because, if right, it shows Mamba can be augmented cheaply to capture periodic and semantic structure that pure ID-sequence models miss, without giving up linear-time efficiency.

What carries the argument

The central object is the AFFM block (Adaptive Fast Fourier Transform powered Mamba), which implements Equations 11 through 15. The user's item sequence $X_u[t]$ is Fourier-transformed over positions $t$, multiplied by a binary mask that keeps frequencies below threshold $\theta$, multiplied by learned complex weights $W$, inverse-transformed (IFFT) back to the time domain, and then processed by the Mamba SSM with SiLU gating. This module grounds the paper's claims about periodic-pattern capture and noise reduction. The second mechanism is the gate fusion in Equation 16, which forms the prediction as a linear map of $\alpha$ times the LLM embeddings plus $\beta$ times the Mamba output; the paper treats $\alpha$ and $\beta$ as adaptable parameters.

What would settle it

Train M2Rec and an otherwise identical variant that also receives timestamps or inter-arrival gaps on ML-1M. If the position-only FFT truly captures daily and weekly behavior, adding time information should not change Hit Rate@10; if it improves, the paper's stated periodic mechanism is not grounded in the model's actual input. A second check: keep item order fixed but replace all timestamps with random ones; the position-only model must be unaffected by construction, while a time-aware model should degrade.

Watch

Extended reading notes

Core claim

The central claim is that M2Rec outperforms both Transformer-based and Mamba-based sequential recommenders across four datasets (ML-1M, New York, California, Texas), with the best Hit Rate@10 of 0.3224 on ML-1M, a 3.30% relative improvement over the strongest Mamba baseline, and analogous gains in NDCG@10 and MRR@10. The paper attributes the gains to three components: the adaptive FFT (AFFT) module, which transforms the item-position signal into the frequency domain, masks high frequencies, multiplies by a learned kernel, and transforms back before entering the Mamba SSM; fixed LLM embeddings of item names, categories, and descriptions; and a gate that balances the two embedding streams. The paper also claims the FFT branch makes the model more robust to injected Gaussian noise and that the gate makes performance stable across different LLM embedding backbones.

Load-bearing premise

The load-bearing premise is that Fourier-transforming the item order in a user's history captures genuine daily and weekly behavior cycles, even though the model never sees timestamps; if user interactions are irregularly spaced in time, that premise fails and the periodic-pattern explanation for the gains collapses.

Editorial extensions

If this is right

  • If the central claim is right, Mamba-based sequential recommenders can capture periodic user behavior by preprocessing sequences in the frequency domain, so future work need not replace Mamba with attention to model periodicity.
  • The gate mechanism makes the model robust to which LLM produces the text embeddings, so teams can swap embedding backbones without retuning the rest of the model.
  • The adaptive FFT acts as a noise filter, so M2Rec should degrade more gracefully than Mamba4Rec or BERT4Rec when embeddings are corrupted.
  • Because the FFT adds only $O(BTd\log T)$ time, the approach remains practical for long user histories where Transformers' quadratic attention is prohibitive.

Reading between the lines

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

  • Because the FFT in Equation 11 is applied to position index $t$, not to wall-clock time, the paper's daily- and weekly-cycle story is really about position-index frequencies; a direct test would be to feed the model actual timestamps or inter-arrival gaps and see whether the periodic mechanism still helps.
  • The gate in Equation 16 appears to use scalar parameters $\alpha$ and $\beta$ shared across users and positions; a per-user or per-item gate would be a natural extension if context-dependent balancing is the goal.
  • The LLM embeddings are fixed (bge-large-en-v1.5), so the paper's results speak to content enrichment rather than LLM reasoning; using a trainable or instruction-tuned LLM encoder could change the accuracy-efficiency trade-off.
  • If the FFT's noise filtering is the source of robustness, the same adaptive filter could be applied to other sequence encoders besides Mamba—a testable transfer to attention-based recommenders.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 6 minor

Summary. The paper proposes M2Rec, a sequential recommendation model that combines a Mamba-based state-space encoder with an adaptive Fast Fourier Transform (AFFT), LLM-generated item embeddings, and a learned gate for fusing feature streams. The authors claim state-of-the-art performance on four datasets, with HR@10 improved by about 3.2% over Mamba-based baselines and faster inference than Transformer baselines. The manuscript includes an architecture description, complexity analysis, main results, ablations, robustness tests, and hyperparameter studies.

Significance. If the reported improvements are reproducible, the paper makes a useful empirical contribution to efficient sequential recommendation, particularly the combination of a linear-time Mamba backbone with frequency-domain filtering and semantic embeddings. The experiments cover a reasonable range of baselines and datasets, and the paper includes ablation, robustness, and efficiency analyses, which are strengths. However, the central mechanistic claim—that the FFT module explicitly models daily, weekly, and monthly periodic user behavior—is not grounded in the model's actual input, and several internal inconsistencies in the data and hyperparameter tables currently undermine confidence in the reported results.

major comments (4)
  1. [Section III-D, Eq. (11) and Algorithm 1] The DFT in Eq. (11) is applied to Xu[t] with t as the position index in the interaction sequence. Algorithm 1's input is Xu: (B, T, |V|) and context C used only for LLM embeddings; no timestamps or inter-arrival times enter the model. Consequently, the frequency axis is cycles per interaction, not cycles per day, and the peaks at 1 cycle/day and ~0.14 cycles/day shown in Fig. 1 cannot be obtained from Eq. (11). The paper's central claim that M2Rec explicitly captures daily, weekly, and monthly periodic user behavior is therefore not operational in the architecture as written. This is a load-bearing mismatch between the motivating analysis and the actual mechanism; please either modify the model to consume timestamps or reframe the contribution as position-frequency filtering/sequence smoothing.
  2. [Section IV-A and Table III] The dataset statistics are internally inconsistent. The text states that Texas has 27.2M interactions and is the largest dataset, but Table III reports only 1,344,379 interactions for Texas. In addition, the reported average interactions per user do not match Table III: New York has 478,903/6,195 = 77.3 vs the stated 106.4, and Texas has 1,344,379/24,559 = 54.7 vs the stated 66.0. These discrepancies affect the validity of the experimental setup and must be corrected and reconciled.
  3. [Table V] The Mamba Layer rows are verbatim identical to the θ rows (e.g., HR@10 values 4.72, 4.69, 4.56, 4.58, 4.59 appear in both blocks). As presented, the paper reports no distinct hyperparameter results for the number of Mamba layers, so the RQ6 layer analysis is unsupported. Moreover, the accompanying text says a lower cut ratio captures more high-frequency components, but Eq. (12) defines M := |F| ≤ θ, so a lower θ retains fewer high-frequency components; the interpretation is reversed.
  4. [Section III-E, Eq. (17) and Algorithm 1] The loss in Eq. (17) is written as a full-vocabulary binary cross-entropy over all items and all time steps, which is not the standard softmax cross-entropy used in sequential recommendation and has different optimization and computational properties. The text calls it cross-entropy without specifying the output activation (e.g., sigmoid vs softmax). Additionally, Algorithm 1 declares the output as (B, T, 1), which is inconsistent with producing a distribution over the item vocabulary. Please clarify the actual loss, the prediction head, and how the large vocabulary is handled.
minor comments (6)
  1. [Abstract and Section IV-E] The abstract claims 20% faster inference than Transformer baselines, but Section IV-E reports only qualitative statements and plots without a quantitative speedup value or standard-deviation information; please provide the actual measured numbers.
  2. [Section III-E] The phrase 'through Long Short-Term Memories (LLMs)' appears to be a typo; it should be 'Large Language Models (LLMs)'.
  3. [Section IV-D] The text says results are 'presented in Figure IV', but the reference should be to Table IV.
  4. [Equation (11) and surrounding text] The DFT uses N in the exponential but sums to T; please use one consistent length symbol throughout the frequency-domain equations.
  5. [Section IV-A Parameter Settings] The parameter list repeats 'SSM state expansion factor' twice; also the descriptions of the expansion factor, state dimension, and convolution width should be clarified.
  6. [Section V-A] The phrase 'these approaches remain constrained on periodity caption' is grammatically unclear and should be rewritten.

Circularity Check

0 steps flagged · score 0.0 of 10

No circular derivation found; M2Rec's claims are supported by external benchmarks and standard architecture components.

full rationale

M2Rec is an empirical architecture paper; the headline performance claim is a computed comparison against externally defined baselines in Table II (e.g., Mamba4Rec HR@10 0.3121 vs M2Rec 0.3224 on ML-1M), not a quantity that is fitted and then re-predicted. The AFFT module (Eqs. 11-13) is a standard DFT/IFFT transform with a learned filter mask and kernel W, and the gate in Eq. 16 is a learned linear combination of two embedding streams; neither component is defined in terms of the next-item prediction target. No load-bearing uniqueness theorem or self-citation chain is invoked: citations to Mamba4Rec and RecMamba are baseline references, and the LLM choice (bge-large-en-v1.5) is an external pretrained model. The position-domain FFT versus day-domain periodicity in Figure 1 is a correctness and support concern about whether the mechanism realizes the claimed daily or weekly interpretation, not a circularity, because the empirical gains are still measured against external benchmarks. I found no passage asserting a limitation, missing support, or omitted proof that would change this assessment. The paper is therefore self-contained for circularity purposes.

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

The central empirical comparison is grounded in public datasets, but the claimed mechanisms rest on assumptions about what FFT over sequence positions means, the noise character of high frequencies, the usefulness of frozen LLM embeddings, and an undiscussed full-vocabulary BCE loss. The learned scalar gate weights, frequency kernel, and cut-off threshold are fitted to the same benchmarks used for the headline numbers.

free parameters (3)
  • Gate weights alpha and beta = learned scalars, values not reported
    Eq. 16 defines the fusion as Linear(alpha * E(l) + beta * E(m)); the paper's 'learnable gate mechanism' reduces to these two fitted weights.
  • High-frequency cut threshold theta = 0.1 (best on Texas, Table V)
    Eq. 12 masks frequencies above theta; theta is chosen by grid search and controls the adaptive FFT's noise-filtering behavior.
  • Frequency-domain kernel W = learned d_f x d_f complex matrix
    Eqs. 10 and 13 treat W as the learnable Fourier transform of the kernel K; it modulates the IFFT reconstruction.
assumptions (4)
  • domain assumption User behavior periodicity can be recovered by FFT over sequence positions
    Eq. 11 transforms Xu[t] over the position index t, while Fig. 1 validates daily and weekly patterns on a day axis; no timestamps are fed to the model.
  • domain assumption High-frequency components of item embeddings are noise
    Adaptive FFT zeroes frequencies above theta (Eq. 12); the paper asserts this denoises sequences but gives no independent justification.
  • domain assumption Frozen LLM embeddings from item names, categories, and descriptions improve prediction
    The LLM branch (bge-large-en-v1.5) is treated as a fixed semantic encoder; its benefit is tested only through ablation and LLM swaps.
  • domain assumption Full-vocabulary binary cross-entropy is a suitable training loss
    Eq. 17 defines BCE summed over all items; sampling, class imbalance, and computational cost are not discussed.

how reviews work

0 comments
Cite this review

Pith. "Pith review of M2Rec: Multi-scale Mamba for Efficient Sequential Recommendation." pith.science (2026). https://pith.science/paper/V5I7P72Z

@misc{pith2026250504445,
  author       = {Pith},
  title        = {Pith review of: M2Rec: Multi-scale Mamba for Efficient Sequential Recommendation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/V5I7P72Z}},
  note         = {Machine review of arXiv:2505.04445}
}
read the original abstract

Sequential recommendation systems aim to predict users' next preferences based on their interaction histories, but existing approaches face critical limitations in efficiency and multi-scale pattern recognition. While Transformer-based methods struggle with quadratic computational complexity, recent Mamba-based models improve efficiency but fail to capture periodic user behaviors, leverage rich semantic information, or effectively fuse multimodal features. To address these challenges, we propose \model, a novel sequential recommendation framework that integrates multi-scale Mamba with Fourier analysis, Large Language Models (LLMs), and adaptive gating. First, we enhance Mamba with Fast Fourier Transform (FFT) to explicitly model periodic patterns in the frequency domain, separating meaningful trends from noise. Second, we incorporate LLM-based text embeddings to enrich sparse interaction data with semantic context from item descriptions. Finally, we introduce a learnable gate mechanism to dynamically balance temporal (Mamba), frequency (FFT), and semantic (LLM) features, ensuring harmonious multimodal fusion. Extensive experiments demonstrate that \model\ achieves state-of-the-art performance, improving Hit Rate@10 by 3.2\% over existing Mamba-based models while maintaining 20\% faster inference than Transformer baselines. Our results highlight the effectiveness of combining frequency analysis, semantic understanding, and adaptive fusion for sequential recommendation. Code and datasets are available at: https://anonymous.4open.science/r/M2Rec.

Figures

Figures reproduced from arXiv: 2505.04445 by the authors.

Figure 1
Figure 1. The diagram illustrates the multi-scale temporal patterns in user interactions from the MovieLens 1M (ML-1M) dataset. [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. The diagram illustrates the configuration of the [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Performance comparison of baselines on different groups of data [PITH_FULL_IMAGE:figures/full_fig_p008_3.png] view at source ↗
Figures from the paper (3 more)
Figure 4
Figure 4. Figure 4: Ablation study of M2Rec on Texas To further investigate the influence of different Large Lan￾guage Models (LLMs) on our model’s performance on New York, we conducted experiments using three prominent and widely adopted LLMs: BGE-1.5, GPT-3.5 Turbo and Llama￾3.1 7B. The…
Figure 5
Figure 5. Figure 5: GPU cost comparison of SASRec, BERT4Rec, LRURec, [PITH_FULL_IMAGE:figures/full_fig_p009_5.png]
Figure 6
Figure 6. Figure 6: Training time and testing Time comparison of SASRec, BERT4Rec, [PITH_FULL_IMAGE:figures/full_fig_p009_6.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

50 extracted references · 27 canonical work pages

  1. [1]

    Sequential recommender systems: challenges, progress and prospects,

    S. Wang, L. Hu, Y . Wang, L. Cao, Q. Z. Sheng, and M. Orgun, “Sequential recommender systems: challenges, progress and prospects,” arXiv preprint arXiv:2001.04830 , 2019

  2. [2]

    A survey of sequential recommendation systems: Techniques, evaluation, and future directions,

    T. F. Boka, Z. Niu, and R. B. Neupane, “A survey of sequential recommendation systems: Techniques, evaluation, and future directions,” Information Systems, p. 102427, 2024

  3. [3]

    Sequence-aware recom- mender systems,

    M. Quadrana, P. Cremonesi, and D. Jannach, “Sequence-aware recom- mender systems,” ACM computing surveys (CSUR) , vol. 51, no. 4, pp. 1–36, 2018

  4. [4]

    Sequential recommendation with graph neural networks,

    J. Chang, C. Gao, Y . Zheng, Y . Hui, Y . Niu, Y . Song, D. Jin, and Y . Li, “Sequential recommendation with graph neural networks,” in Proceed- ings of the 44th international ACM SIGIR conference on research and development in information retrieval , 2021, pp. 378–387

  5. [5]

    Lightweight self-attentive sequential recommendation,

    Y . Li, T. Chen, P.-F. Zhang, and H. Yin, “Lightweight self-attentive sequential recommendation,” in Proceedings of the 30th ACM Interna- tional Conference on Information & Knowledge Management , 2021, pp. 967–977

  6. [6]

    Im- proving sequential recommendation with knowledge-enhanced memory networks,

    J. Huang, W. X. Zhao, H. Dou, J.-R. Wen, and E. Y . Chang, “Im- proving sequential recommendation with knowledge-enhanced memory networks,” in The 41st international ACM SIGIR conference on research & development in information retrieval , 2018, pp. 505–514

  7. [7]

    Personalized top-n sequential recommendation via convolutional sequence embedding,

    J. Tang and K. Wang, “Personalized top-n sequential recommendation via convolutional sequence embedding,” in Proceedings of the eleventh ACM international conference on web search and data mining , 2018, pp. 565–573

  8. [8]

    Per- sonalized prompt for sequential recommendation,

    Y . Wu, R. Xie, Y . Zhu, F. Zhuang, X. Zhang, L. Lin, and Q. He, “Per- sonalized prompt for sequential recommendation,” IEEE Transactions on Knowledge and Data Engineering , 2024

Show all 50 references
  1. [9]

    Recgpt: Generative personalized prompts for sequential recommenda- tion via chatgpt training paradigm,

    Y . Zhang, W. Yu, E. Zhang, X. Chen, L. Hu, P. Jiang, and K. Gai, “Recgpt: Generative personalized prompts for sequential recommenda- tion via chatgpt training paradigm,” arXiv preprint arXiv:2404.08675 , 2024

  2. [10]

    Attention is all you need,

    A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin, “Attention is all you need,” Advances in neural information processing systems , vol. 30, 2017

  3. [11]

    Transformers4rec: Bridging the gap between nlp and sequential/session-based recommendation,

    G. de Souza Pereira Moreira, S. Rabhi, J. M. Lee, R. Ak, and E. Oldridge, “Transformers4rec: Bridging the gap between nlp and sequential/session-based recommendation,” in Proceedings of the 15th ACM conference on recommender systems , 2021, pp. 143–153

  4. [12]

    Continuous- time sequential recommendation with temporal graph collaborative transformer,

    Z. Fan, Z. Liu, J. Zhang, Y . Xiong, L. Zheng, and P. S. Yu, “Continuous- time sequential recommendation with temporal graph collaborative transformer,” in Proceedings of the 30th ACM international conference on information & knowledge management , 2021, pp. 433–442

  5. [13]

    Se- quential recommendation with latent relations based on large language model,

    S. Yang, W. Ma, P. Sun, Q. Ai, Y . Liu, M. Cai, and M. Zhang, “Se- quential recommendation with latent relations based on large language model,” in Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval , 2024, pp. 335– 344

  6. [14]

    Bert4rec: Sequential recommendation with bidirectional encoder representations from transformer,

    F. Sun, J. Liu, J. Wu, C. Pei, X. Lin, W. Ou, and P. Jiang, “Bert4rec: Sequential recommendation with bidirectional encoder representations from transformer,” in Proceedings of the 28th ACM international confer- ence on information and knowledge management , 2019, pp. 1441–1450

  7. [15]

    Sse-pt: Sequential recommendation via personalized transformer,

    L. Wu, S. Li, C.-J. Hsieh, and J. Sharpnack, “Sse-pt: Sequential recommendation via personalized transformer,” in Proceedings of the 14th ACM conference on recommender systems , 2020, pp. 328–337

  8. [16]

    Mamba: Linear-time sequence modeling with selective state spaces,

    A. Gu and T. Dao, “Mamba: Linear-time sequence modeling with selective state spaces,” arXiv preprint arXiv:2312.00752 , 2023

  9. [17]

    Mamba4rec: Towards efficient sequential recommendation with selective state space models,

    C. Liu, J. Lin, J. Wang, H. Liu, and J. Caverlee, “Mamba4rec: Towards efficient sequential recommendation with selective state space models,” arXiv preprint arXiv:2403.03900 , 2024

  10. [18]

    Uncovering selective state space model’s capabilities in lifelong sequential recommendation,

    J. Yang, Y . Li, J. Zhao, H. Wang, M. Ma, J. Ma, Z. Ren, M. Zhang, X. Xin, Z. Chen, and P. Ren, “Uncovering selective state space model’s capabilities in lifelong sequential recommendation,” 2024

  11. [19]

    Matrrec: Uniting mamba and transformer for sequential recommendation,

    S. Zhang, R. Zhang, and Z. Yang, “Matrrec: Uniting mamba and transformer for sequential recommendation,” arXiv preprint arXiv:2407.19239, 2024

  12. [20]

    Ssd4rec: a structured state space duality model for efficient sequential recommendation,

    H. Qu, Y . Zhang, L. Ning, W. Fan, and Q. Li, “Ssd4rec: a structured state space duality model for efficient sequential recommendation,” arXiv preprint arXiv:2409.01192, 2024

  13. [21]

    Mlsa4rec: Mamba combined with low-rank de- composed self-attention for sequential recommendation,

    J. Su and Z. Huang, “Mlsa4rec: Mamba combined with low-rank de- composed self-attention for sequential recommendation,” arXiv preprint arXiv:2407.13135, 2024

  14. [22]

    Frequency- augmented mixture-of-heterogeneous-experts framework for sequential recommendation,

    J. Zhang, R. Xie, H. Lu, W. Sun, X. Zhao, Z. Kang et al., “Frequency- augmented mixture-of-heterogeneous-experts framework for sequential recommendation,” in THE WEB CONFERENCE 2025

  15. [23]

    I. N. Sneddon, Fourier transforms. Courier Corporation, 1995

  16. [24]

    Leveraging large language models for sequential recommendation,

    J. Harte, W. Zorgdrager, P. Louridas, A. Katsifodimos, D. Jannach, and M. Fragkoulis, “Leveraging large language models for sequential recommendation,” in Proceedings of the 17th ACM Conference on Recommender Systems, 2023, pp. 1096–1102

  17. [25]

    Improving sequential recommendations with llms,

    A. Boz, W. Zorgdrager, Z. Kotti, J. Harte, P. Louridas, V . Karakoidas, D. Jannach, and M. Fragkoulis, “Improving sequential recommendations with llms,” ACM Transactions on Recommender Systems , 2024

  18. [26]

    A self-attentive model with gate mechanism for spoken language understanding,

    C. Li, L. Li, and J. Qi, “A self-attentive model with gate mechanism for spoken language understanding,” in Proceedings of the 2018 conference on empirical methods in natural language processing , 2018, pp. 3824– 3833

  19. [27]

    Bge m3-embedding: Multi-lingual, multi-functionality, multi-granularity text embeddings through self-knowledge distillation,

    J. Chen, S. Xiao, P. Zhang, K. Luo, D. Lian, and Z. Liu, “Bge m3-embedding: Multi-lingual, multi-functionality, multi-granularity text embeddings through self-knowledge distillation,” arXiv preprint arXiv:2402.03216, 2024

  20. [28]

    The fourier transform,

    R. N. Bracewell, “The fourier transform,” Scientific American, vol. 260, no. 6, pp. 86–95, 1989

  21. [29]

    Empowering sequential recommendation from collaborative signals and semantic relatedness,

    M. Cheng, H. Zhang, Q. Liu, F. Yuan, Z. Li, Z. Huang, E. Chen, J. Zhou, and L. Li, “Empowering sequential recommendation from collaborative signals and semantic relatedness,” arXiv preprint arXiv:2403.07623 , 2024

  22. [30]

    Personalized showcases: Generating multi-modal explanations for recommendations,

    A. Yan, Z. He, J. Li, T. Zhang, and J. McAuley, “Personalized showcases: Generating multi-modal explanations for recommendations,” in Proceedings of the 46th International ACM SIGIR Conference on Research and Development in Information Retrieval , 2023, pp. 2251– 2255

  23. [31]

    Uctopic: Unsupervised contrastive learning for phrase representations and topic mining,

    J. Li, J. Shang, and J. McAuley, “Uctopic: Unsupervised contrastive learning for phrase representations and topic mining,” arXiv preprint arXiv:2202.13469, 2022

  24. [32]

    Bpr: Bayesian personalized ranking from implicit feedback,

    S. Rendle, C. Freudenthaler, Z. Gantner, and L. Schmidt-Thieme, “Bpr: Bayesian personalized ranking from implicit feedback,” arXiv preprint arXiv:1205.2618, 2012

  25. [33]

    Neural attentive session-based recommendation,

    J. Li, P. Ren, Z. Chen, Z. Ren, T. Lian, and J. Ma, “Neural attentive session-based recommendation,” in Proceedings of the 2017 ACM on Conference on Information and Knowledge Management , 2017, pp. 1419–1428

  26. [34]

    Session-based recommendations with recurrent neural net- works,

    B. Hidasi, “Session-based recommendations with recurrent neural net- works,” arXiv preprint arXiv:1511.06939 , 2015

  27. [35]

    Self-attentive sequential recommenda- tion,

    W.-C. Kang and J. McAuley, “Self-attentive sequential recommenda- tion,” in 2018 IEEE international conference on data mining (ICDM) . IEEE, 2018, pp. 197–206

  28. [36]

    Linear recurrent units for sequential recommendation,

    Z. Yue, Y . Wang, Z. He, H. Zeng, J. McAuley, and D. Wang, “Linear recurrent units for sequential recommendation,” in Proceedings of the 17th ACM International Conference on Web Search and Data Mining , 2024, pp. 930–938

  29. [37]

    Session-based recommendation with graph neural networks,

    S. Wu, Y . Tang, Y . Zhu, L. Wang, X. Xie, and T. Tan, “Session-based recommendation with graph neural networks,” in Proceedings of the AAAI conference on artificial intelligence , vol. 33, no. 01, 2019, pp. 346–353

  30. [38]

    Frequency enhanced hybrid attention network for sequential recommendation,

    X. Du, H. Yuan, P. Zhao, J. Qu, F. Zhuang, G. Liu, Y . Liu, and V . S. Sheng, “Frequency enhanced hybrid attention network for sequential recommendation,” in Proceedings of the 46th International ACM SIGIR conference on research and development in information retrieval , 2023,...

  31. [39]

    Addressing cold- start problem in recommendation systems,

    X. N. Lam, T. Vu, T. D. Le, and A. D. Duong, “Addressing cold- start problem in recommendation systems,” in Proceedings of the 2nd international conference on Ubiquitous information management and communication, 2008, pp. 208–211

  32. [40]

    A survey on large language models for recommendation,

    L. Wu, Z. Zheng, Z. Qiu, H. Wang, H. Gu, T. Shen, C. Qin, C. Zhu, H. Zhu, Q. Liu et al. , “A survey on large language models for recommendation,” World Wide Web, vol. 27, no. 5, p. 60, 2024

  33. [41]

    Tutorial on large language models for recommendation,

    W. Hua, L. Li, S. Xu, L. Chen, and Y . Zhang, “Tutorial on large language models for recommendation,” in Proceedings of the 17th ACM Conference on Recommender Systems , 2023, pp. 1281–1283

  34. [42]

    Recommender systems in the era of large language models (llms),

    Z. Zhao, W. Fan, J. Li, Y . Liu, X. Mei, Y . Wang, Z. Wen, F. Wang, X. Zhao, J. Tang et al. , “Recommender systems in the era of large language models (llms),” IEEE Transactions on Knowledge and Data Engineering, 2024

  35. [43]

    Reformulating sequential recommendation: Learning dynamic user interest with content-enriched language modeling,

    J. Jiang, S. Qu, M. Cheng, Q. Liu, Z. Liu, H. Zhang, R. Zhang, K. Zhang, R. Li, J. Li et al., “Reformulating sequential recommendation: Learning dynamic user interest with content-enriched language modeling,” arXiv preprint arXiv:2309.10435, 2023

  36. [44]

    Large language models for recommendation: Progresses and future directions,

    K. Bao, J. Zhang, Y . Zhang, W. Wenjie, F. Feng, and X. He, “Large language models for recommendation: Progresses and future directions,” in Proceedings of the Annual International ACM SIGIR Conference on Research and Development in Information Retrieval in the Asia Pacific Re...

  37. [45]

    Recommender systems in the era of large language models (llms),

    Z. Zhao, W. Fan, J. Li, Y . Liu, X. Mei, Y . Wang, Z. Wen, F. Wang, X. Zhao, J. Tang et al. , “Recommender systems in the era of large language models (llms),” arXiv preprint arXiv:2307.02046 , 2023

  38. [46]

    A survey on accuracy-oriented neural recommendation: From collaborative filtering to information-rich recommendation,

    L. Wu, X. He, X. Wang, K. Zhang, and M. Wang, “A survey on accuracy-oriented neural recommendation: From collaborative filtering to information-rich recommendation,” IEEE Transactions on Knowledge and Data Engineering , vol. 35, no. 5, pp. 4425–4445, 2022

  39. [47]

    Ubishop: Commercial item recommendation using visual part-based object rep- resentation,

    H.-Y . Chi, C.-C. Chen, W.-H. Cheng, and M.-S. Chen, “Ubishop: Commercial item recommendation using visual part-based object rep- resentation,” Multimedia Tools and Applications , vol. 75, pp. 16 093– 16 115, 2016

  40. [48]

    Multi-modal visual adversarial bayesian personalized ranking model for recommendation,

    G. Li, J. Zhuo, C. Li, J. Hua, T. Yuan, Z. Niu, D. Ji, R. Wu, and H. Zhang, “Multi-modal visual adversarial bayesian personalized ranking model for recommendation,” Information Sciences , vol. 572, pp. 378–403, 2021

  41. [49]

    An adaptive deep learning method for item recommendation system,

    A. Dau, N. Salim, and R. Idris, “An adaptive deep learning method for item recommendation system,” Knowledge-Based Systems, vol. 213, p. 106681, 2021

  42. [50]

    Cross-modal content inference and feature enrichment for cold-start recommendation,

    H. Ma, Z. Qi, X. Dong, X. Li, Y . Zheng, X. Meng, and L. Meng, “Cross-modal content inference and feature enrichment for cold-start recommendation,” in 2023 International Joint Conference on Neural Networks (IJCNN). IEEE, 2023, pp. 1–8

Pith tools

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