Pith. sign in

REVIEW 3 major objections 4 minor 1 cited by

Empowering Large Language Model for Sequential Recommendation via Multimodal Embeddings and Semantic IDs

T0 review · 3 major / 4 minor · reviewed 2026-08-05 · deepseek-v4-flash

Pith's one-line read MME-SID claims that feeding an LLM both multimodal embeddings and semantic-ID code embeddings initialized from a trained multimodal RQ-VAE fixes embedding collapse and catastrophic forgetting in LLM-based sequential recommendation, with con

desk verdict A solid empirical systems paper with a genuinely new combination of multimodal embeddings and semantic IDs for LLM-based sequential recommendation, but the theoretical and diagnostic narrative is over-claimed. read the letter →

arxiv 2509.02017 v1 pith:GO7QXKRY submitted 2025-09-02 cs.IR cs.AI

classification cs.IRcs.AI
keywords sequentialrecommendationmultimodallargelanguagemodelsemanticIDsembeddingcollapsecatastrophicforgettingRQ-VAEmaximummeandiscrepancy
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

This paper targets two failure modes it says plague LLM-based sequential recommendation: embedding collapse, where pre-trained low-dimensional collaborative embeddings projected into a 4096-dimensional LLM space occupy only a low-rank subspace; and catastrophic forgetting, where semantic-ID code embeddings trained during quantization are discarded and re-learned from scratch, losing most of the distance information. To fix both, the paper proposes MME-SID, which feeds an LLM a concatenation of projected collaborative, textual, and visual embeddings together with the sums of semantic-ID code embeddings initialized from a trained multimodal RQ-VAE. The quantization model uses maximum mean discrepancy as its reconstruction loss and contrastive alignment across modalities. On three Amazon datasets, the paper reports consistent gains over all baselines and presents analyses linking the gains to reduced collapse and higher Kendall's tau between distance orderings.

What carries the argument

The load-bearing mechanism is MM-RQ-VAE, a per-modality residual-quantized variational autoencoder trained with a characteristic-kernel maximum mean discrepancy reconstruction loss and a contrastive loss that aligns collaborative codes with textual and visual codes. Its trained code embeddings become the initial embeddings of the semantic-ID tokens in the LLM, which is fine-tuned with LoRA; item representations enter as a concatenation of projected raw embeddings and summed code embeddings (Eq. 16), and the final score is a frequency-aware fusion over modalities (Eq. 18).

What would settle it

Replace the MMD reconstruction loss in MM-RQ-VAE with a loss that directly enforces the pairwise distance ordering (maximizing Kendall's tau) while keeping all other components fixed; if recommendation performance does not improve alongside tau, the distance-preservation mechanism is not the causal driver. Alternatively, sweep the unspecified Gaussian kernel bandwidth; if performance collapses across a range of bandwidths, the reported MMD advantage is not well-defined.

Watch

Extended reading notes

Core claim

On the paper's own terms, the central discovery is that the two pathologies can be addressed simultaneously: treating semantic IDs as symbols to be re-learned from scratch is the wrong move, and treating pre-trained collaborative embeddings as the only vector input is also the wrong move. The right design is to give the LLM both kinds of signal—multimodal embeddings and quantized-semantic-ID embeddings—and to preserve the geometry learned during quantization by initializing the downstream ID embeddings with the trained code embeddings, while using an MMD-based reconstruction loss that keeps the quantized embeddings' pairwise distance structure close to the originals. With this recipe, MME-SI

Load-bearing premise

The explanation of why the method works rests on Kendall's tau between pairwise distance orderings being a faithful measure of how much information an embedding retains; if that proxy is not meaningful, the forgetting-and-preservation narrative loses support even if the ranking results stand.

Editorial extensions

If this is right

  • Semantic-ID methods for generative retrieval should keep and reuse trained code embeddings instead of discarding them, since re-initialization is what the paper identifies as the cause of catastrophic forgetting.
  • MMD as a reconstruction loss for vector quantization appears to preserve more pairwise distance information than MSE, so any quantization-based tokenizer could adopt it.
  • Combining low-dimensional collaborative embeddings with high-dimensional multimodal and quantized embeddings expands the effective rank of the LLM input, reducing dimensional collapse without enlarging the collaborative embedding table.
  • The frequency-aware fusion implies that treating all target items uniformly is suboptimal; head and tail items can benefit from different modality weighting.
  • Fine-tuning only about 0.19% of parameters via LoRA suffices to reach the reported accuracy, which matters for industrial-scale item sets.

Reading between the lines

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

  • The paper's Kendall-tau measure of forgetting is a proxy, not a guarantee: preserving the ordering of Euclidean distances between behavioral and target items may not be the actual driver of recommendation quality, and a direct ordinal-preserving loss could test this.
  • The code-embedding-initialization trick may transfer to other tokenization-heavy tasks, such as generative retrieval over documents or images, where a quantization stage is followed by downstream fine-tuning.
  • The Gaussian kernel bandwidth for the MMD loss is not specified in the paper, so the reconstruction signal is underdetermined; performance may be sensitive to it, and a sweep would clarify whether the MMD advantage is robust or bandwidth-dependent.
  • If the claims hold, LLM-based recommenders could drop the autoregressive, code-by-code retrieval used by TIGER-style models, scoring all target items in a single forward pass and cutting inference cost dramatically.
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 / 4 minor

Summary. The paper proposes MME-SID, a two-stage framework for LLM-based sequential recommendation. In the encoding stage, collaborative, textual, and visual item embeddings are obtained (from SASRec and LLM2CLIP) and quantized by a multimodal RQ-VAE (MM-RQ-VAE) that uses maximum mean discrepancy as the reconstruction loss and contrastive learning for cross-modal alignment. In the fine-tuning stage, Llama3-8B-instruct is tuned with LoRA; the item representation concatenates projected original embeddings with semantic-ID embeddings initialized from the trained code embeddings, and a frequency-aware fusion module weights the target-item scores. Experiments on Amazon Beauty, Toys & Games, and Sports & Outdoors show consistent improvements over baselines, with reported statistical significance. The paper interprets these gains as evidence that MME-SID alleviates embedding collapse and catastrophic forgetting.

Significance. If the mechanism claims are established, this is a valuable contribution to LLM4SR: it identifies two practically important failure modes and proposes a concrete integration of multimodal embeddings and semantic IDs. The empirical results are strong and consistent across three datasets, and the authors commit to releasing code and data, which supports reproducibility. The main significance is currently conditional because the paper's explanatory narrative—that MMD preserves per-item distance information and that Kendall's tau measures information retention—is not rigorously supported. With those points addressed, the paper could be an influential systems contribution.

major comments (3)
  1. [§4.2.2, Eq. (12)] The reconstruction loss L_Recon = Σ_b Σ_j MMD²_K(SG(s^b_j), \s^b_j) is a batch-level distributional discrepancy. It is invariant under permutation of the reconstructed items within a batch, so it does not constrain the correspondence between a specific original item embedding and its reconstruction. The paper's mechanism for mitigating forgetting is that the quantized embedding preserves the partial order of distances between behavioral and target items (Sec. 3.2, Sec. 5.4), which is a per-item, identity-dependent property. The reported tau gain (0.4436 vs 0.3714) is therefore not explained by this loss. Moreover, with MMD as the only reconstruction signal, the decoder is not trained to reconstruct each item's embedding. Please add a per-item alignment analysis or modify the loss, and revise the causal claim accordingly.
  2. [§3.2 and §5.5] Kendall's tau is used as a measure of "information preserved", and tau=0.0550 is translated into "94.50% of the previously learned information is forgotten". Tau is a rank correlation, not an information measure; it can be negative and has no interpretation as a percentage of information content. Furthermore, for a user with two behavioral items the distance variable has only two elements, so the per-user tau is trivially 1, -1, or 0. The aggregate tau may be sensitive to the sampling of users/pairs. Since RQ3 and RQ4 conclusions rest on tau comparisons, please justify this proxy, report its distribution/uncertainty, or soften the information-retention claims.
  3. [§5.1.4 / Appendix B] The Gaussian kernel in the MMD loss is written as k(e,e')=exp(-||e-e'||²/2σ²), but the value (or selection procedure) of σ is never reported. MMD with a Gaussian kernel is highly sensitive to bandwidth; without σ the reconstruction objective in Eq. (12) is underdetermined and the MMD-vs-MSE comparison in Sec. 5.4 cannot be reproduced or assessed. Please report σ, and preferably include a sensitivity analysis over σ.
minor comments (4)
  1. [§3.1, Eq. (7)-(8)] The statement rank(A+B) < rank(A)+rank(B) is not always strict; the correct inequality is ≤. Replacing < with ≤ still yields the intended bound rank(WE_c+b) ≤ rank(E_c)+1, so the collapse conclusion survives, but the formula as written is false.
  2. [Fig. 2 caption] The red dashed arrow is described twice; one description should refer to the alignment arrow and the other to the reconstruction path.
  3. [Tab. 3] Although three runs are averaged and significance is reported, no standard deviations are given. Reporting them would help assess stability.
  4. [Contributions] The claim of being "the first work" to identify these issues is difficult to verify and may be unnecessarily strong; consider softening the wording.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the central claims are supported by held-out experiments and the proposed losses are not by-construction equal to the metrics used to evaluate them.

full rationale

The paper is an empirical systems paper. Its main claim—that MME-SID improves sequential recommendation—is evaluated on held-out test sets against multiple baselines on three public datasets. The supporting analyses for embedding collapse and catastrophic forgetting are post-hoc measurements, not quantities directly optimized by the training objective. The MMD reconstruction loss (Eq. 12) is a distributional discrepancy, not Kendall's tau or a per-item distance-order loss; therefore the observed higher tau for MMD-trained embeddings is an empirical result, not a tautology. The rank argument in Eq. 8 is a direct linear-algebra consequence, not an imported uniqueness theorem. The paper cites prior work by the same authors for the concepts of embedding collapse, but the paper also provides its own derivation, so those citations are not load-bearing. The frequency-aware fusion and code-embedding initialization are architectural choices whose effects are tested via ablations on held-out data. No fitted parameter is renamed as a prediction, and no self-citation chain forces the conclusion. The reported performance improvements are therefore independent of the paper's explanatory narrative, even if that narrative's proxy metrics are debatable.

Assumptions & free parameters 6 free parameters · 5 assumptions · 1 invented entities

The central claim rests on several tuned hyperparameters (especially the unspecified MMD kernel bandwidth and contrastive temperature) and on domain assumptions about the pretrained encoders (LLM2CLIP, SASRec) and about Kendall's tau as an information measure. The MM-RQ-VAE code embeddings are an invented latent representation with no independent evidence outside the paper's experiments.

free parameters (6)
  • Gaussian kernel bandwidth sigma for MMD = not specified in the paper
    The MMD reconstruction loss uses a Gaussian kernel k(e,e')=exp(-||e-e'||^2/(2 sigma^2)), but sigma is never given. This controls the sensitivity of the distance-preservation objective and is essential for reproducing the method.
  • Alignment loss weight beta = 1e-3
    Chosen by hand (Section B) to trade off reconstruction and contrastive alignment. Not tuned per dataset or validated with sensitivity analysis.
  • RQ-VAE loss weight gamma = 1
    Chosen by hand (Section B). Affects the quantization loss contribution.
  • Contrastive temperature epsilon = not specified
    Used in Eq. 14 and 15 for InfoNCE. The value is not reported, making the alignment loss underdetermined.
  • Codebook size S = 256 (300 for Sports & Outdoors)
    Hyperparameter in Table 4. Affects the granularity of semantic IDs.
  • Number of codebook levels L = 4
    Hyperparameter in Table 4. Determines the length of semantic ID sequences.
assumptions (5)
  • standard math rank(W E_c + b) <= rank(E_c) + 1 for any linear projection with bias
    Used in Section 3.1 to argue that projecting low-dimensional collaborative embeddings keeps the representation low-rank. The paper states rank(A+B) < rank(A)+rank(B), which is not always strict, but the final bound (with <=) is correct.
  • standard math A characteristic kernel preserves all statistics of a distribution in MMD
    Invoked in Section 4.2.2 to justify MMD over MSE for reconstruction. This is a known property of characteristic kernels, cited to [36].
  • ad hoc to paper Kendall's tau between behavioral-target distance variables measures information retention
    Section 3.2 defines tau as the concordance of pairwise embedding distances and interprets it as the percentage of preserved information. This is a heuristic measure, not a proven information-theoretic quantity, and the percentage interpretation is questionable.
  • domain assumption LLM2CLIP maps textual and visual embeddings into the same representational space
    Section 4.2.1 adopts LLM2CLIP for multimodal encoding, assuming text and image embeddings are already aligned. This is a property of the pretrained model, not verified within the paper.
  • domain assumption Pre-trained SASRec collaborative embeddings capture useful collaborative signal
    The method relies on SASRec embeddings as the collaborative modality across Sections 4.2 and 4.3. This is standard practice in LLM4SR and is consistent with the baselines.
invented entities (1)
  • Multimodal semantic ID code embeddings (from MM-RQ-VAE)
    purpose: A unified token-level representation that preserves intra-modal distance information and inter-modal correlations, used to initialize LLM semantic ID embeddings and as part of the input in Eq. 16.
    This is the core invented construct of the paper. It has no external falsifiable handle beyond the paper's own experimental results; it is a trained latent representation rather than an independently observable entity.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Empowering Large Language Model for Sequential Recommendation via Multimodal Embeddings and Semantic IDs." pith.science (2026). https://pith.science/paper/GO7QXKRY

@misc{pith2026250902017,
  author       = {Pith},
  title        = {Pith review of: Empowering Large Language Model for Sequential Recommendation via Multimodal Embeddings and Semantic IDs},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/GO7QXKRY}},
  note         = {Machine review of arXiv:2509.02017}
}
read the original abstract

Sequential recommendation (SR) aims to capture users' dynamic interests and sequential patterns based on their historical interactions. Recently, the powerful capabilities of large language models (LLMs) have driven their adoption in SR. However, we identify two critical challenges in existing LLM-based SR methods: 1) embedding collapse when incorporating pre-trained collaborative embeddings and 2) catastrophic forgetting of quantized embeddings when utilizing semantic IDs. These issues dampen the model scalability and lead to suboptimal recommendation performance. Therefore, based on LLMs like Llama3-8B-instruct, we introduce a novel SR framework named MME-SID, which integrates multimodal embeddings and quantized embeddings to mitigate embedding collapse. Additionally, we propose a Multimodal Residual Quantized Variational Autoencoder (MM-RQ-VAE) with maximum mean discrepancy as the reconstruction loss and contrastive learning for alignment, which effectively preserve intra-modal distance information and capture inter-modal correlations, respectively. To further alleviate catastrophic forgetting, we initialize the model with the trained multimodal code embeddings. Finally, we fine-tune the LLM efficiently using LoRA in a multimodal frequency-aware fusion manner. Extensive experiments on three public datasets validate the superior performance of MME-SID thanks to its capability to mitigate embedding collapse and catastrophic forgetting. The implementation code and datasets are publicly available for reproduction: https://github.com/Applied-Machine-Learning-Lab/MME-SID.

Figures

Figures reproduced from arXiv: 2509.02017 by the authors.

Figure 1
Figure 1. The overall framework of MME-SID. norm. Finally, the semantic IDs are {𝑆𝐼𝐷1 , . . . , 𝑆𝐼𝐷𝐿 } and the quan￾tized embedding 𝒛ˆ = Í𝐿 𝑙=1 𝑪𝑬𝑆𝐼𝐷𝑙 is further decoded into 𝒔ˆ to reconstruct 𝑠. Denote SG as the stop gradient operation and 𝛼 as a hyper-parameter, the overall loss function is L = LRecon + LRQ-VAE (3) LRecon = ∥𝒔 − 𝒔ˆ∥ 2 (4) LRQ−VAE = ∑︁ 𝐿 𝑙=1 [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. The model architecture of MM-RQ-VAE, which consists of an RQ-VAE for each modality. Specifically, the black solid [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. (a) Sequential recommendation performance where [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figures from the paper (1 more)
Figure 5
Figure 5. Figure 5: (a) Comparison of code embedding initialization [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]

Discussion (0). Sign in to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. The Best of the Two Worlds: Harmonizing Semantic and Hash IDs for Sequential Recommendation

    cs.IR 2025-12 conditional novelty 5.0 of 10

    A dual-branch recommender that merges hash-ID and semantic-ID representations outperforms baselines while improving tail-item accuracy without losing head-item accuracy.

Reference graph

Works this paper leans on

73 extracted references · 49 canonical work pages · cited by 1 Pith paper

  1. [1]

    Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Floren- cia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. 2023. Gpt-4 technical report. arXiv preprint arXiv:2303.08774 (2023)

  2. [2]

    Keqin Bao, Jizhi Zhang, Yang Zhang, Wenjie Wang, Fuli Feng, and Xiangnan He. 2023. Tallrec: An effective and efficient tuning framework to align large language model with recommendation. InProceedings of the 17th ACM Conference on Recommender Systems. 1007–1014

  3. [3]

    Jingtong Gao, Xiangyu Zhao, Muyang Li, Minghao Zhao, Runze Wu, Ruocheng Guo, Yiding Liu, and Dawei Yin. 2024. Smlp4rec: An efficient all-mlp architecture for sequential recommendations. ACM Transactions on Information Systems 42, 3 (2024), 1–23

  4. [4]

    Xingzhuo Guo, Junwei Pan, Ximei Wang, Baixu Chen, Jie Jiang, and Mingsheng Long. 2024. On the Embedding Collapse when Scaling up Recommendation Models. In Proceedings of the 41st International Conference on Machine Learning

  5. [5]

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

  6. [6]

    Maurice G Kendall. 1938. A new measure of rank correlation. Biometrika 30, 1-2 (1938), 81–93

  7. [7]

    Doyup Lee, Chiheon Kim, Saehoon Kim, Minsu Cho, and Wook-Shin Han. 2022. Autoregressive image generation using residual quantization. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition . 11523–11532

  8. [8]

    Chengxi Li, Yejing Wang, Qidong Liu, Xiangyu Zhao, Wanyu Wang, Yiqi Wang, Lixin Zou, Wenqi Fan, and Qing Li. 2023. STRec: Sparse transformer for sequential recommendations. In Proceedings of the 17th ACM conference on recommender systems. 101–111

Show all 73 references
  1. [9]

    Xiangyang Li, Bo Chen, Lu Hou, and Ruiming Tang. 2023. CTRL: Connect Collaborative and Language Model for CTR Prediction. ACM Transactions on Recommender Systems (2023)

  2. [10]

    Xinhang Li, Chong Chen, Xiangyu Zhao, Yong Zhang, and Chunxiao Xing. 2023. E4srec: An elegant effective efficient extensible solution of large language models for sequential recommendation. arXiv preprint arXiv:2312.02443 (2023)

  3. [11]

    Xiaopeng Li, Fan Yan, Xiangyu Zhao, Yichao Wang, Bo Chen, Huifeng Guo, and Ruiming Tang. 2023. Hamur: Hyper adapter for multi-domain recommendation. In Proceedings of the 32nd ACM International Conference on Information and Knowledge Management. 1268–1277

  4. [12]

    Youhua Li, Hanwen Du, Yongxin Ni, Yuanqi He, Junchen Fu, Xiangyan Liu, and Qi Guo. 2024. An Empirical Study of Training ID-Agnostic Multi-modal Sequential Recommenders. arXiv preprint arXiv:2403.17372 (2024)

  5. [13]

    Jiayi Liao, Sihang Li, Zhengyi Yang, Jiancan Wu, Yancheng Yuan, Xiang Wang, and Xiangnan He. 2024. Llara: Large language-recommendation assistant. In Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval . 1785–1795

  6. [14]

    Weilin Lin, Xiangyu Zhao, Yejing Wang, Yuanshao Zhu, and Wanyu Wang. 2023. Autodenoise: Automatic data instance denoising for recommendations. In Pro- ceedings of the ACM Web Conference 2023 . 1003–1011

  7. [15]

    Zhutian Lin, Junwei Pan, Haibin Yu, Xi Xiao, Ximei Wang, Zhixiang Feng, Shifeng Wen, Shudong Huang, Lei Xiao, and Jie Jiang. 2024. Disentangled Representation with Cross Experts Covariance Loss for Multi-Domain Recommendation. arXiv preprint arXiv:2405.12706 (2024)

  8. [16]

    Langming Liu, Liu Cai, Chi Zhang, Xiangyu Zhao, Jingtong Gao, Wanyu Wang, Yifu Lv, Wenqi Fan, Yiqi Wang, Ming He, et al. 2023. Linrec: Linear attention mechanism for long-term sequential recommender systems. In Proceedings of the 46th International ACM SIGIR Conference on Rese...

  9. [17]

    Qidong Liu, Jiaxi Hu, Yutian Xiao, Xiangyu Zhao, Jingtong Gao, Wanyu Wang, Qing Li, and Jiliang Tang. 2024. Multimodal recommender systems: A survey. Comput. Surveys 57, 2 (2024), 1–17

  10. [18]

    Qidong Liu, Xian Wu, Wanyu Wang, Yejing Wang, Yuanshao Zhu, Xiangyu Zhao, Feng Tian, and Yefeng Zheng. 2025. Llmemb: Large language model can be a good embedding generator for sequential recommendation. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 39...

  11. [19]

    Qidong Liu, Xian Wu, Yejing Wang, Zijian Zhang, Feng Tian, Yefeng Zheng, and Xiangyu Zhao. 2024. Llm-esr: Large language models enhancement for long- tailed sequential recommendation. Advances in Neural Information Processing Systems 37 (2024), 26701–26727

  12. [20]

    Qidong Liu, Xian Wu, Xiangyu Zhao, Yejing Wang, Zijian Zhang, Feng Tian, and Yefeng Zheng. 2024. Large language models enhanced sequential recommenda- tion for long-tail user and item. arXiv e-prints (2024), arXiv–2405

  13. [21]

    Qidong Liu, Xian Wu, Xiangyu Zhao, Yuanshao Zhu, Zijian Zhang, Feng Tian, and Yefeng Zheng. 2024. Large language model distilling medication recommendation model. arXiv preprint arXiv:2402.02803 (2024)

  14. [22]

    Qidong Liu, Xiangyu Zhao, Yejing Wang, Zijian Zhang, Howard Zhong, Chong Chen, Xiang Li, Wei Huang, and Feng Tian. 2025. Bridge the Domains: Large Lan- guage Models Enhanced Cross-domain Sequential Recommendation. In Proceed- ings of the 48th International ACM SIGIR Conference...

  15. [23]

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

  16. [24]

    Yifan Liu, Kangning Zhang, Xiangyuan Ren, Yanhua Huang, Jiarui Jin, Yingjie Qin, Ruilong Su, Ruiwen Xu, Yong Yu, and Weinan Zhang. 2024. AlignRec: Aligning and Training in Multimodal Recommendations. In Proceedings of the 33rd ACM International Conference on Information and Kn...

  17. [25]

    Ziwei Liu, Qidong Liu, Yejing Wang, Wanyu Wang, Pengyue Jia, Maolin Wang, Zitao Liu, Yi Chang, and Xiangyu Zhao. 2024. Bidirectional gated mamba for sequential recommendation. arXiv e-prints (2024), arXiv–2408

  18. [26]

    Ziwei Liu, Qidong Liu, Yejing Wang, Wanyu Wang, Pengyue Jia, Maolin Wang, Zitao Liu, Yi Chang, and Xiangyu Zhao. 2025. SIGMA: Selective Gated Mamba for Sequential Recommendation. In Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 39. 12264–12272

  19. [27]

    Ziru Liu, Shuchang Liu, Zijian Zhang, Qingpeng Cai, Xiangyu Zhao, Kesen Zhao, Lantao Hu, Peng Jiang, and Kun Gai. 2024. Sequential recommendation for optimizing both immediate feedback and long-term retention. In Proceedings of the 47th International ACM SIGIR Conference on Re...

  20. [28]

    Mingsheng Long, Yue Cao, Jianmin Wang, and Michael Jordan. 2015. Learning transferable features with deep adaptation networks. In International conference on machine learning. PMLR, 97–105

  21. [29]

    Ilya Loshchilov, Frank Hutter, et al. 2017. Fixing weight decay regularization in adam. arXiv preprint arXiv:1711.05101 (2017)

  22. [30]

    Xinchen Luo, Jiangxia Cao, Tianyu Sun, Jinkai Yu, Rui Huang, Wei Yuan, Hezheng Lin, Yichen Zheng, Shiyao Wang, Qigen Hu, et al . 2024. QARM: Quantita- tive Alignment Multi-Modal Recommendation at Kuaishou. arXiv preprint arXiv:2411.11739 (2024)

  23. [31]

    Julian McAuley, Christopher Targett, Qinfeng Shi, and Anton Van Den Hengel

  24. [32]

    Junwei Pan, Wei Xue, Ximei Wang, Haibin Yu, Xun Liu, Shijie Quan, Xueming Qiu, Dapeng Liu, Lei Xiao, and Jie Jiang. 2024. Ads recommendation in a collapsed and entangled world. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 5566–5577

  25. [33]

    Yoon-Joo Park and Alexander Tuzhilin. 2008. The long tail of recommender systems and how to leverage it. In Proceedings of the 2008 ACM conference on Recommender systems. 11–18

  26. [34]

    Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. 2021. Learning transferable visual models from natural language supervision. In International conference on machine learni...

  27. [35]

    Shashank Rajput, Nikhil Mehta, Anima Singh, Raghunandan Hulikal Keshavan, Trung Vu, Lukasz Heldt, Lichan Hong, Yi Tay, Vinh Tran, Jonah Samost, et al

  28. [36]

    Dino Sejdinovic, Bharath Sriperumbudur, Arthur Gretton, and Kenji Fukumizu

  29. [37]

    Anirvan M Sengupta and Partha P Mitra. 1999. Distributions of singular values for some random matrices. Physical Review E 60, 3 (1999), 3389

  30. [38]

    Jianhong Shen. 2001. On the singular values of Gaussian random matrices.Linear Algebra Appl. 326, 1-3 (2001), 1–14

  31. [39]

    Liangcai Su, Junwei Pan, Ximei Wang, Xi Xiao, Shijie Quan, Xihua Chen, and Jie Jiang. 2024. STEM: Unleashing the Power of Embeddings for Multi-task Recommendation. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 38. 9002–9010

  32. [40]

    Weiwei Sun, Lingyong Yan, Zheng Chen, Shuaiqiang Wang, Haichao Zhu, Pengjie Ren, Zhumin Chen, Dawei Yin, Maarten Rijke, and Zhaochun Ren. 2024. Learning to tokenize for generative retrieval. Advances in Neural Information Processing Systems 36 (2024)

  33. [41]

    Hanbing Wang, Xiaorui Liu, Wenqi Fan, Xiangyu Zhao, Venkataramana Kini, Devendra Yadav, Fei Wang, Zhen Wen, Jiliang Tang, and Hui Liu. 2024. Rethinking large language model architectures for sequential recommendations. arXiv preprint arXiv:2402.09543 (2024)

  34. [42]

    Wenhui Wang, Hangbo Bao, Li Dong, Johan Bjorck, Zhiliang Peng, Qiang Liu, Kriti Aggarwal, Owais Khan Mohammed, Saksham Singhal, Subhojit Som, et al

  35. [43]

    Wenjie Wang, Honghui Bao, Xinyu Lin, Jizhi Zhang, Yongqi Li, Fuli Feng, See- Kiong Ng, and Tat-Seng Chua. 2024. Learnable item tokenization for generative recommendation. In Proceedings of the 33rd ACM International Conference on Information and Knowledge Management . 2400–2409

  36. [44]

    Yuhao Wang. 2024. Multi-Granularity Modeling in Recommendation: from the Multi-Scenario Perspective. In Proceedings of the 33rd ACM International Conference on Information and Knowledge Management . 5491–5494

  37. [45]

    Yejing Wang, Zhaocheng Du, Xiangyu Zhao, Bo Chen, Huifeng Guo, Ruiming Tang, and Zhenhua Dong. 2023. Single-shot feature selection for multi-task recommendations. In Proceedings of the 46th International ACM SIGIR Conference on Research and Development in Information Retrieval...

  38. [46]

    Yuhao Wang, Ha Tsz Lam, Yi Wong, Ziru Liu, Xiangyu Zhao, Yichao Wang, Bo Chen, Huifeng Guo, and Ruiming Tang. 2023. Multi-task deep recommender systems: A survey. arXiv preprint arXiv:2302.03525 (2023)

  39. [47]

    Yuhao Wang, Ziru Liu, Yichao Wang, Xiangyu Zhao, Bo Chen, Huifeng Guo, and Ruiming Tang. 2024. Diff-MSR: A diffusion model enhanced paradigm for cold-start multi-scenario recommendation. In Proceedings of the 17th ACM International Conference on Web Search and Data Mining . 779–787

  40. [48]

    Yuhao Wang, Junwei Pan, Pengyue Jia, Wanyu Wang, Maolin Wang, Zhixiang Feng, Xiaotian Li, Jie Jiang, and Xiangyu Zhao. 2025. Pre-train, Align, and Disentangle: Empowering Sequential Recommendation with Large Language Models. In Proceedings of the 48th International ACM SIGIR C...

  41. [49]

    Yidan Wang, Zhaochun Ren, Weiwei Sun, Jiyuan Yang, Zhixiang Liang, Xin Chen, Ruobing Xie, Su Yan, Xu Zhang, Pengjie Ren, et al. 2024. Content-Based Collaborative Generation for Recommender Systems. In Proceedings of the 33rd ACM International Conference on Information and Know...

  42. [50]

    Yuhao Wang, Yichao Wang, Zichuan Fu, Xiangyang Li, Wanyu Wang, Yuyang Ye, Xiangyu Zhao, Huifeng Guo, and Ruiming Tang. 2024. LLM4MSR: An LLM- Enhanced Paradigm for Multi-Scenario Recommendation. In Proceedings of the 33rd ACM International Conference on Information and Knowled...

  43. [51]

    Yuhao Wang, Xiangyu Zhao, Bo Chen, Qidong Liu, Huifeng Guo, Huanshuo Liu, Yichao Wang, Rui Zhang, and Ruiming Tang. 2023. PLATE: A prompt-enhanced paradigm for multi-scenario recommendations. In Proceedings of the 46th In- ternational ACM SIGIR Conference on Research and Devel...

  44. [52]

    Aoqi Wu, Yifan Yang, Xufang Luo, Yuqing Yang, Chunyu Wang, Liang Hu, Xiyang Dai, Dongdong Chen, Chong Luo, Lili Qiu, et al . 2024. LLM2CLIP: Powerful Language Model Unlock Richer Visual Representation. InNeurIPS 2024 Workshop: Self-Supervised Learning-Theory and Practice

  45. [53]

    Zheng Yuan, Fajie Yuan, Yu Song, Youhua Li, Junchen Fu, Fei Yang, Yunzhu Pan, and Yongxin Ni. 2023. Where to go next for recommender systems? id- vs. modality-based recommender models revisited. In Proceedings of the 46th International ACM SIGIR Conference on Research and Deve...

  46. [54]

    Chi Zhang, Yantong Du, Xiangyu Zhao, Qilong Han, Rui Chen, and Li Li. 2022. Hierarchical item inconsistency signal learning for sequence denoising in se- quential recommendation. In Proceedings of the 31st ACM international conference on information & knowledge management . 2508–2518

  47. [55]

    Chi Zhang, Qilong Han, Rui Chen, Xiangyu Zhao, Peng Tang, and Hongtao Song

  48. [56]

    Kangning Zhang, Jiarui Jin, Yingjie Qin, Ruilong Su, Jianghao Lin, Yong Yu, and Weinan Zhang. 2024. Learning ID-free Item Representation with Token Crossing for Multimodal Recommendation. arXiv preprint arXiv:2410.19276 (2024)

  49. [57]

    Sheng Zhang, Maolin Wang, Wanyu Wang, Jingtong Gao, Xiangyu Zhao, Yu Yang, Xuetao Wei, Zitao Liu, and Tong Xu. 2025. Glint-ru: Gated lightweight intelligent recurrent units for sequential recommender systems. In Proceedings of the 31st ACM SIGKDD Conference on Knowledge Discov...

  50. [58]

    Taolin Zhang, Junwei Pan, Jinpeng Wang, Yaohua Zha, Tao Dai, Bin Chen, Ruisheng Luo, Xiaoxiang Deng, Yuan Wang, Ming Yue, et al . 2024. To- wards Scalable Semantic Representation for Recommendation. arXiv preprint arXiv:2410.09560 (2024)

  51. [59]

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

  52. [60]

    Zijian Zhang, Shuchang Liu, Jiaao Yu, Qingpeng Cai, Xiangyu Zhao, Chunxu Zhang, Ziru Liu, Qidong Liu, Hongwei Zhao, Lantao Hu, et al . 2024. M3oe: Multi-domain multi-task mixture-of experts recommendation framework. In Proceedings of the 47th International ACM SIGIR Conference...

  53. [61]

    Kesen Zhao, Shuchang Liu, Qingpeng Cai, Xiangyu Zhao, Ziru Liu, Dong Zheng, Peng Jiang, and Kun Gai. 2023. KuaiSim: A comprehensive simulator for recom- mender systems. Advances in Neural Information Processing Systems 36 (2023), 44880–44897

  54. [62]

    Kesen Zhao, Xiangyu Zhao, Zijian Zhang, and Muyang Li. 2022. Mae4rec: Storage- saving transformer for sequential recommendations. In Proceedings of the 31st ACM International Conference on Information & Knowledge Management . 2681– 2690

  55. [63]

    Xiangyu Zhao, Long Xia, Liang Zhang, Zhuoye Ding, Dawei Yin, and Jiliang Tang. 2018. Deep reinforcement learning for page-wise recommendations. In Proceedings of the 12th ACM conference on recommender systems . 95–103

  56. [64]

    Xiangyu Zhao, Long Xia, Lixin Zou, Hui Liu, Dawei Yin, and Jiliang Tang. 2020. Whole-chain recommendations. In Proceedings of the 29th ACM international conference on information & knowledge management . 1883–1891

  57. [65]

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

  58. [66]

    Bowen Zheng, Yupeng Hou, Hongyu Lu, Yu Chen, Wayne Xin Zhao, Ming Chen, and Ji-Rong Wen. 2024. Adapting large language models by integrating collaborative semantics for recommendation. In 2024 IEEE 40th International Conference on Data Engineering (ICDE) . IEEE, 1435–1448

  59. [2013]

    The annals of statistics (2013), 2263–2291

    Equivalence of distance-based and RKHS-based statistics in hypothesis testing. The annals of statistics (2013), 2263–2291

  60. [2015]

    In Proceedings of the 38th international ACM SIGIR conference on research and development in information retrieval

    Image-based recommendations on styles and substitutes. In Proceedings of the 38th international ACM SIGIR conference on research and development in information retrieval. 43–52

  61. [2018]

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

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

  62. [2022]

    arXiv preprint arXiv:2208.10442 (2022)

    Image as a foreign language: Beit pretraining for all vision and vision- language tasks. arXiv preprint arXiv:2208.10442 (2022). Empowering Large Language Model for Sequential Recommendation via Multimodal Embeddings and Semantic IDs CIKM ’25, November 10–14, 2025, Seoul, Repu...

  63. [2023]

    Advances in Neural Information Processing Systems 36 (2023), 10299–10315

    Recommender systems with generative retrieval. Advances in Neural Information Processing Systems 36 (2023), 10299–10315

  64. [2024]

    In 2024 IEEE 40th International Conference on Data Engineering (ICDE)

    Ssdrec: Self-augmented sequence denoising for sequential recommendation. In 2024 IEEE 40th International Conference on Data Engineering (ICDE) . IEEE, 803– 815

  65. [2025]

    IEEE Transactions on Knowledge and Data Engineering (2025)

    Collm: Integrating collaborative embeddings into large language models for recommendation. IEEE Transactions on Knowledge and Data Engineering (2025)

Pith tools

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