Pith. sign in

REVIEW 4 major objections 5 minor 2 cited by

This paper claims that ultra-long user histories can be compressed into about two hundred personalized interest centers, and that this compressed representation beats full-sequence attention while lifting click-through rate by 1.65% in prod

Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →

T0 review · deepseek-v4-flash

2026-08-02 21:10 UTC pith:NHPKZ2KY

load-bearing objection A competent industrial compression paper whose own ablation undercuts the hierarchical-voting novelty, but the soft-routing mechanism and deployment results are worth peer review if the A/B methodology is disclosed. the 4 major comments →

arxiv 2602.21009 v2 pith:NHPKZ2KY submitted 2026-02-24 cs.IR cs.CL

HiSAC: Hierarchical Sparse Activation Compression for Ultra-long Sequence Modeling in Recommenders

classification cs.IR cs.CL
keywords long user behavior sequencessequence compressionhierarchical votingsoft-routing attentioninterest centersquantization errorclick-through rate predictionmultimodal item embeddings
verification ladder T0 review T1 audit T2 compute T3 formal T4 reserved

The pith

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

HiSAC tries to settle a practical trade-off: instead of either modeling every one of a user's thousands of past interactions directly or collapsing them into fixed global summaries, it argues that each user's history can be compressed into a small personalized set of interest centers with no loss—and a gain—in ranking accuracy. The paper's central claim is that hierarchical voting over a shared semantic codebook produces these user-specific centers, and soft-routing attention, which weights every past item by its semantic similarity to a center, removes the quantization error and long-tail loss that hurt hard-assignment compression. On 10,000-item histories, the roughly 200-agent compressed representation beats full-sequence attention and several strong compression baselines offline, and in a large-scale production A/B test the authors report a 1.65% click-through-rate lift together with reduced serving cost. If the claim holds, recommender systems can keep ultra-long histories without paying their latency and memory bill, and personalization survives compression.

Core claim

On the paper's own terms, the discovery is that sequence compression can be personalized and soft rather than fixed and hard. HiSAC first converts every item into a multi-level semantic identifier using a multimodal encoder plus residual quantization, and organizes all identifiers into a global semantic tree. For each user, hierarchical voting prunes the tree to around 200 interest-agents—prototypes that represent that user's dominant coarse and fine interests. Then Soft-Routing Attention computes, for each agent, a weighted average of trainable ranking embeddings, with weights given by a temperature-scaled softmax over negative L2 distances between the frozen semantic embeddings of historic

What carries the argument

The load-bearing objects are 'interest-agents' and 'Soft-Routing Attention.' Interest-agents are user-specific preference centers obtained by voting on a global hierarchical semantic tree: each user's tokenized history votes at the leaves, votes are summed upward, and a top-k pruning at each level retains the most salient branches, giving each user about K=200 agents. Soft-Routing Attention is Eq. (4): for each agent prototype z_a, every historical item e_i receives weight proportional to exp(-||e_i - z_a||^2 / tau), and the agent's output is the weighted sum of the corresponding trainable ranking embeddings e'_i. The mechanism's work is to replace exact hard assignment with similarity-weigh

Load-bearing premise

The load-bearing premise is that L2 distance in the frozen multimodal semantic space is a faithful proxy for how much a past item should contribute to a user's interest; if visual and textual similarity does not track purchase preference, the soft-routing weights become smoothed noise and the claimed gains would not transfer.

What would settle it

A reader could run a held-out routing test: for users with long histories, compute the soft-routing weights, hold out the most recent click, and check whether items with high predicted weight to an activated agent are clicked more often than matched items with low weight. If routing weights are no better than random assignment at predicting held-out behavior, the mechanism is not doing the work. A cheaper control is to replace the L2 distances in Eq. (4) with random weights of the same distribution; if the offline AUC gap to HiSAC largely persists, the paper's attribution to semantic similarit

Watch this falsifier — get emailed when new claim-graph text bears on it.

If this is right

  • At sequence lengths of 10,000, a roughly 200-agent compression can replace exact full-sequence attention in serving without an AUC penalty—and with a gain—so the practical ceiling on history length is lifted.
  • Soft routing means rare, long-tail interactions are not discarded when they fail to match an interest center exactly; they still contribute through nearest semantic agents, so diversity does not have to be traded for compression.
  • Decoupling frozen semantic routing from trainable ranking aggregation preserves a wider set of activated interest centers (about 13% more agents than an aligned-embedding variant), which should mainly help users with heterogeneous tastes.
  • Keeping broad coarse-level branches rather than spending the agent budget on fine-grained leaves yields most of the benefit, so the method's serving cost stays controllable through the voting budget.
  • The reported production deployment caches the compressed sequence per request and per user, cutting end-to-end latency by about 40% with no measurable loss in recommendation performance.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • Editorial inference: the paper restricts routing to a frozen semantic space; a natural extension is to test a lightly adapted routing space that is not fully aligned to the ranking objective, since the paper's decoupling result predicts heavy alignment collapses interest coverage.
  • Editorial inference: the hierarchical budget finding—broad coarse categories matter more than many fine leaves—suggests other compressed-memory designs could allocate capacity by semantic breadth first, though the paper does not test that transfer.
  • Editorial inference: because the A/B control definition and significance details are not disclosed, the exact 1.65% lift should not be expected to transfer to other platforms; the portable claim is the mechanism, not the number.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 5 minor

Summary. HiSAC proposes a three-stage pipeline for compressing ultra-long user behavior sequences: (1) tokenizing items into multi-level semantic IDs using a frozen CLIP encoder and RQ-VAE; (2) building a global hierarchical semantic tree and using bottom-up voting/top-down pruning to select per-user interest agents; (3) computing a small set of agent representations by soft-routing attention over all historical items in the semantic space, with aggregation content taken from learned ranking embeddings. The compressed sequence is then fed to MHA-based ranking. Experiments on a 200M-user industrial dataset and Taobao-MM claim state-of-the-art offline AUC/GAUC, ablations attribute gains to multimodal tokenization and soft-routing, and a two-week online A/B test on Taobao reports a 1.65% CTR improvement. Deployment optimizations (offline tree construction, request-level compression, cache-enhanced MHA) are claimed to reduce latency by ~40% with no measurable loss.

Significance. If the claims hold, the practical significance is high: a production-deployable method that reduces a 10k behavior sequence to ~200 semantic agents while improving CTR over the strongest prior compression method would be a meaningful contribution to industrial sequence modeling. The paper is strongest on specification: the routing equations (Eq. 4, Appendix C) are explicit, the comparison set is broad (K-Means, LSH, Patching, Aggregator, ELASTIC, Longer, SIM, TWIN, PatchRec), and the ablation structure isolates tokenization, routing, long-tail handling, and embedding decoupling. However, the empirical support is currently too thin in three places: no uncertainty quantification, an A/B test without methodology, and an ablation that undermines the stated role of the paper's headline mechanism.

major comments (4)
  1. [Table 3 / §3.4] As written, the paper's central novelty—hierarchical voting for identifying user-specific interest centers—is not supported by its own ablation. Table 3 reports w/o Hierarchical Voting with AUC 0.6445/GAUC 0.5525 vs. full HiSAC 0.6444/0.5525. The text states this variant 'yields only a 0.01pt AUC gain,' but that gain belongs to the variant without voting, not to voting. Since the abstract, §1 and §3.4 present voting as the mechanism that accurately identifies user-specific interest centers and is central to the accuracy story, the evidence instead supports voting as a pure computational prune (3× fewer agents at essentially equal AUC). The paper should be repositioned: either explicitly frame voting as an efficiency component and remove accuracy-based claims associated with it in the abstract and contributions, or provide new experiments where voting improves accuracy.
  2. [§4.5, Table 5] The headline online result is a 1.65% CTR uplift, but Table 5 provides only relative lifts. No control definition, baseline method, experiment duration (a two-week window is mentioned), user allocation, significance tests, confidence intervals, or guardrail metrics are reported. The abstract says the improvement is 'over the strongest prior compression method,' but this comparison is not documented. For a load-bearing industrial result, this is not a style issue; please add standard A/B test reporting, including the exact control arm, metric definitions, allocation, duration, significance, and guardrails.
  3. [§4.2, Table 1] Offline margins between HiSAC and the best baselines are 0.0002–0.0006 AUC (e.g., 0.6444 vs. 0.6438 Aggregator at 10k; 0.6449 vs. 0.6442 ELASTIC at 10k). No error bars, number of seeds, or statistical tests are reported. With ~200M users, even tiny differences could be nominally significant, but without within-dataset variance (e.g., bootstrap over users or multiple runs), the paper's claim that HiSAC 'achieves the best overall performance' at every sequence length is not established. Please report confidence intervals or pairwise significance tests for the main comparisons.
  4. [§3.5, Eq. (4), Appendix C] The routing weights are defined by negative L2 distance in a frozen CLIP-derived semantic space. This is load-bearing: all of soft-routing's benefit depends on semantic distance being a useful proxy for user preference similarity. Appendix C asserts L2 is 'more stable' than cosine without giving the comparison. The only indirect evidence is the ablation in Table 4 and the 0.2pt drop from w/o Multimodal Encoder. Please provide a direct validation—for example, a head-to-head L2 vs. cosine routing comparison, or an analysis showing that held-out clicks are more likely among L2-nearest agents than among random agents.
minor comments (5)
  1. [§3.6] The claim of 'no measurable loss' for deployment optimizations is asserted. Since the cache-enhanced MHA is said to preserve identical outputs, the more relevant risk is daily refresh of interest trees; please report offline accuracy before/after the optimized serving path and characterize staleness effects.
  2. [Eq. (4)] The notation z_{a,k} is introduced without defining the double index; z_a is defined in §3.5. Use consistent subscripting throughout.
  3. [Figures 4 and 5] The curves appear to be single runs. Add error bars or replicated values, and state the exact values of log(τ) for the curves in Figure 5(b).
  4. [§4.3] In the w/o Long-Tail Interests ablation, clarify what 'cannot be matched' means precisely: exact SID match? a similarity threshold? This affects interpretation of the 0.06pt gain.
  5. [Tables 1–3] The AUC values differ at the fourth decimal place. Consider reporting differences in 1e-4 units or with explicit standard deviations to avoid presenting false precision.

Circularity Check

0 steps flagged

No significant circularity: HiSAC is an empirical systems paper whose equations define the mechanism and whose main claims are tested against external baselines and online A/B metrics.

full rationale

HiSAC does not claim to derive any target quantity from a fitted input. The routing weights in Eq. (4) are defined directly as a softmax over negative L2 distances between frozen semantic item embeddings and agent prototypes; the prototypes are selected by explicit vote counts in Section 3.4; the ranking embeddings are trained end-to-end. No component's value is set by the metric it is later said to predict. Offline comparisons are against external baselines (K-Means, LSH, Patching, Aggregator, ELASTIC, Longer, PatchRec, SIM, TWIN) with a fixed compression budget of 200 groups, and the online A/B result is an external business measurement rather than a derived prediction. The citation list includes work by Alibaba-affiliated groups, but no load-bearing citation is authored by the present authors, and no uniqueness theorem is imported from prior same-author work. The closest concern—Table 3 shows 'w/o Hierarchical Voting' AUC 0.6445 versus HiSAC 0.6444—undermines the paper's novelty framing but is an internal-consistency or interpretation issue, not circularity: the ablation is an empirical comparison, not a reduction of the output to the input by construction. The deployment claims (e.g., cache-enhanced MHA preserving identical outputs) are justified by stated algebraic equivalences, not by renaming fitted quantities. Accordingly, no circular step is exhibited.

Axiom & Free-Parameter Ledger

5 free parameters · 5 axioms · 1 invented entities

The method's load is carried by hyperparameters fitted to the industrial validation set (τ, K, top-k allocation) and by the domain assumption that a task-agnostic CLIP semantic space supports preference routing. The inverse finding — hierarchical voting contributes no accuracy — indicates that the voting mechanism is an efficiency device rather than a predictive one. The 1.65% CTR claim is the sole external validation of the entire construct stack, so the ledger is heavy on assumptions that cannot be checked on public data.

free parameters (5)
  • τ (soft-routing temperature) = log(τ) ≈ −0.18 (τ ≈ 0.835) at K=200, L=2
    Tuned on the industrial validation set (§4.4, Figure 5a); controls sharpness of the softmax in Eq. (4) and peaks at this value.
  • Interest-agent budget K = ≈200 (industrial); 200 groups for all compared methods
    Selected by ablation (§4.4, Figure 4c); near-optimal at K≈200 while HiSAC-Hard keeps improving to 250. Also used as the fixed compression budget for fairness across baselines.
  • Top-k allocation (k(1), k(2)) across hierarchy levels = (100, 2) preferred among [(50,4),(100,2),(200,1)]
    Budget allocation across levels tested in §4.4 (Figure 4b); coarser-level allocation wins because user interests concentrate in few level-2 subcategories.
  • RQ-VAE depth L and codebook sizes = L=2; 512 entries/level (industrial), 200 entries/level × 2 (Taobao-MM)
    L chosen by ablation (§4.4, Figure 4a); codebook sizes chosen per dataset in §4.1.3.
  • Commitment coefficient β in RQ-VAE loss = 0.25
    Adopted from the standard RQ-VAE configuration (Appendix B.2), not fitted in this paper.
axioms (5)
  • domain assumption Frozen CLIP-based semantic space (multimodal encoder + RQ-VAE) yields L2 distances that rank user preference similarity.
    Eq. (4) weights every historical item by −‖e_i − z_a‖²/τ against agent prototypes never trained on the ranking objective; if semantic L2 does not track preference similarity, the routing weights are smoothed noise (§3.3, §3.5).
  • domain assumption User interests are stable within a day, so daily offline interest-tree construction does not degrade online accuracy.
    Deployment optimization (1) rebuilds interest agents once per day; intra-day drift is implicitly assumed negligible (§3.6).
  • domain assumption A fixed global semantic tree plus per-user top-k voting preserves ranking-relevant information at K≈200.
    Table 3 shows w/o Hierarchical Voting ≈ HiSAC (0.6445 vs 0.6444), which supports the compression premise but also shows voting itself adds no accuracy (§3.4).
  • domain assumption RQ-VAE codebooks form semantically coherent clusters in the item space.
    Supported only indirectly: silhouette coefficient 0.42 vs 0.28 for RQ-KMeans, and reconstruction error 0.018 vs 0.027 (§4.3).
  • standard math Attention/softmax algebra and matrix formulation are valid.
    Rows of the similarity matrix W are normalized via row-wise softmax in Eq. (4) and Appendix C; standard.
invented entities (1)
  • Interest-agents A_u with weights W_u no independent evidence
    purpose: Personalized coarse-to-fine preference centers that summarize an ultra-long history into K≈200 vectors for downstream MHA ranking
    They are deterministic outputs of the codebook tree and user history (Eq. 3), not independently evidenced constructs; the only falsifiable handle is the paper's own offline/online metrics.

pith-pipeline@v1.3.0-alltime-deepseek · 15862 in / 19437 out tokens · 181110 ms · 2026-08-02T21:10:11.119147+00:00 · methodology

0 comments
read the original abstract

Modern recommender systems leverage ultra-long user behavior sequences to capture dynamic preferences, but end-to-end modeling is infeasible in production due to latency and memory constraints. While summarizing history via interest centers offers a practical alternative, existing methods struggle to (1) identify user-specific centers at appropriate granularity and (2) accurately assign behaviors, leading to quantization errors and loss of long-tail preferences. To alleviate these issues, we propose Hierarchical Sparse Activation Compression (HiSAC), an efficient framework for personalized sequence modeling. HiSAC encodes interactions into multi-level semantic IDs and constructs a global hierarchical codebook. A hierarchical voting mechanism sparsely activates personalized interest-agents as fine-grained preference centers. Guided by these agents, Soft-Routing Attention aggregates historical signals in semantic space, weighting by similarity to minimize quantization error and retain long-tail behaviors. Deployed on Taobao's "Guess What You Like" homepage, HiSAC achieves significant compression and cost reduction, with online A/B tests showing a consistent 1.65% CTR uplift -- demonstrating its scalability and real-world effectiveness.

Figures

Figures reproduced from arXiv: 2602.21009 by Binbin Cao, Changfa Wu, Daixuan Cheng, Jian Wu, Junyu Bi, Kun Yuan, Shuwen Xiao, Yuning Jiang.

Figure 1
Figure 1. Figure 1: Overview of HiSAC, which compresses ultra-long user sequences in three stages: (a) tokenization of historical [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. Figure 2: Comparison of industrial deployment architectures. [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 4
Figure 4. Figure 4: Parameter analysis results for Interest-Agents gen [PITH_FULL_IMAGE:figures/full_fig_p008_4.png] view at source ↗
Figure 6
Figure 6. Figure 6: Soft-routing in action. Behavior_0 (main interest) [PITH_FULL_IMAGE:figures/full_fig_p010_6.png] view at source ↗

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Forward citations

Cited by 2 Pith papers

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

  1. IAT: Instance-As-Token Compression for Historical User Sequence Modeling in Industrial Recommender Systems

    cs.IR 2026-04 unverdicted novelty 7.0

    IAT compresses each historical interaction instance into a unified embedding token via temporal-order or user-order schemes, allowing standard sequence models to learn long-range preferences with better performance an...

  2. SinkRec: Mitigating Semantic State Sink in Long Sequence Recommendation with Memory-Conditioned Gated Delta Networks

    cs.LG 2026-06 unverdicted novelty 5.0

    SinkRec proposes a memory-conditioned architecture with TDGD to mitigate semantic state sink in linear attention for long-sequence recommendation.

Reference graph

Works this paper leans on

35 extracted references · 4 linked inside Pith · cited by 2 Pith papers

  1. [1]

    Zheng Chai, Qin Ren, Xijun Xiao, Huizhi Yang, Bo Han, Sijun Zhang, Di Chen, Hui Lu, Wenlin Zhao, Lele Yu, et al . 2025. Longer: Scaling up long sequence modeling in industrial recommenders. InProceedings of the Nineteenth ACM Conference on Recommender Systems. 247–256

  2. [2]

    Jianxin Chang, Chenbin Zhang, Zhiyi Fu, Xiaoxue Zang, Lin Guan, Jing Lu, Yiqun Hui, Dewei Leng, Yanan Niu, Yang Song, et al. 2023. TWIN: TWo-stage interest network for lifelong user behavior modeling in CTR prediction at kuaishou. In Proceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining. 3785–3794

  3. [3]

    Bao Chong et al. 2021. K-means clustering algorithm: a brief review.Academic Journal of Computing & Information Science4, 5 (2021), 37–40

  4. [4]

    Mayur Datar, Nicole Immorlica, Piotr Indyk, and Vahab S Mirrokni. 2004. Locality- sensitive hashing scheme based on p-stable distributions. InProceedings of the twentieth annual symposium on Computational geometry. 253–262

  5. [5]

    Jiaxin Deng, Shiyao Wang, Song Lu, Yinfeng Li, Xinchen Luo, Yuanjun Liu, Peixing Xu, and Guorui Zhou. 2024. ELASTIC: Efficient Linear Attention for Sequential Interest Compression.arXiv preprint arXiv:2408.09380(2024)

  6. [6]

    Duy-Tai Dinh, Tsutomu Fujinami, and Van-Nam Huynh. 2019. Estimating the optimal number of clusters in categorical data clustering by silhouette coefficient. InInternational Symposium on Knowledge and Systems Sciences. Springer, 1–17

  7. [7]

    Kaiming He, Haoqi Fan, Yuxin Wu, Saining Xie, and Ross Girshick. 2020. Mo- mentum contrast for unsupervised visual representation learning. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition. 9729–9738

  8. [8]

    Ruining He, Lukasz Heldt, Lichan Hong, Raghunandan Keshavan, Shifan Mao, Nikhil Mehta, Zhengyang Su, Alicia Tsai, Yueqi Wang, Shao-Chuan Wang, et al

  9. [9]

    Samuel Humeau, Kurt Shuster, Marie-Anne Lachaux, and Jason Weston. 2019. Poly-encoders: Transformer architectures and pre-training strategies for fast and accurate multi-sentence scoring.arXiv preprint arXiv:1905.01969(2019)

  10. [10]

    Nikita Kitaev, Łukasz Kaiser, and Anselm Levskaya. 2020. Reformer: The efficient transformer.arXiv preprint arXiv:2001.04451(2020)

  11. [11]

    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

  12. [12]

    Junnan Li, Dongxu Li, Silvio Savarese, and Steven Hoi. 2023. Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language models. InInternational conference on machine learning. PMLR, 19730–19742

  13. [13]

    Jiayi Liao, Ruobing Xie, Sihang Li, Xiang Wang, Xingwu Sun, Zhanhui Kang, and Xiangnan He. 2025. Multi-Grained Patch Training for Efficient LLM-based Recommendation. InProceedings of the 48th International ACM SIGIR Conference on Research and Development in Information Retrieval. 1572–1581

  14. [14]

    Chengkai Liu, Jianghao Lin, Jianling Wang, Hanzhou Liu, and James Caverlee

  15. [15]

    Qi Pi, Guorui Zhou, Yujing Zhang, Zhe Wang, Lejian Ren, Ying Fan, Xiaoqiang Zhu, and Kun Gai. 2020. Search-based user interest modeling with lifelong sequential behavior data for click-through rate prediction. InProceedings of the 29th ACM International Conference on Information & Knowledge Management. 2685–2692

  16. [16]

    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. InInternational conference on machine learning. PmLR, 8748–8763

  17. [17]

    Ali Razavi, Aaron Van den Oord, and Oriol Vinyals. 2019. Generating diverse high-fidelity images with vq-vae-2.Advances in neural information processing systems32 (2019)

  18. [18]

    Aurko Roy, Mohammad Saffar, Ashish Vaswani, and David Grangier. 2021. Effi- cient content-based sparse attention with routing transformers.Transactions of the Association for Computational Linguistics9 (2021), 53–68

  19. [19]

    Zhuoran Shen, Mingyuan Zhang, Haiyu Zhao, Shuai Yi, and Hongsheng Li

  20. [20]

    Xiang-Rong Sheng, Feifan Yang, Litong Gong, Biao Wang, Zhangming Chan, Yujing Zhang, Yueyao Cheng, Yong-Nan Zhu, Tiezheng Ge, Han Zhu, et al

  21. [21]

    Zihua Si, Lin Guan, ZhongXiang Sun, Xiaoxue Zang, Jing Lu, Yiqun Hui, Xingchao Cao, Zeyu Yang, Yichen Zheng, Dewei Leng, et al. 2024. Twin v2: Scaling ultra- long user behavior sequence modeling for enhanced ctr prediction at kuaishou. InProceedings of the 33rd ACM International Conference on Information and Knowledge Management. 4890–4897

  22. [22]

    Fei Sun, Jun Liu, Jian Wu, Changhua Pei, Xiao Lin, Wenwu Ou, and Peng Jiang

  23. [23]

    Aaron Van Den Oord, Oriol Vinyals, et al. 2017. Neural discrete representation learning.Advances in neural information processing systems30 (2017)

  24. [24]

    InProceedings of the 33rd ACM International Conference on Information and Knowledge Management

    Enhancing Taobao Display Advertising with Multimodal Representations: Challenges, Approaches and Insights. InProceedings of the 33rd ACM International Conference on Information and Knowledge Management. 4858–4865

  25. [25]

    Bin Wu, Feifan Yang, Zhangming Chan, Yu-Ran Gu, Jiawei Feng, Chao Yi, Xiang- Rong Sheng, Han Zhu, Jian Xu, Mang Ye, and Bo Zheng. 2025. MUSE: A Simple Yet Effective Multimodal Search-Based Framework for Lifelong User Interest Modeling. arXiv:2512.07216 [cs.IR] https://arxiv.org/abs/2512.07216

  26. [26]

    Xu Xie, Fei Sun, Zhaoyang Liu, Shiwen Wu, Jinyang Gao, Jiandong Zhang, Bolin Ding, and Bin Cui. 2022. Contrastive learning for sequential recommendation. In 2022 IEEE 38th international conference on data engineering (ICDE). IEEE, 1259– 1273

  27. [27]

    Ailing Zeng, Muxi Chen, Lei Zhang, and Qiang Xu. 2023. Are transformers effective for time series forecasting?. InProceedings of the AAAI conference on artificial intelligence, Vol. 37. 11121–11128

  28. [28]

    Shuai Zhang, Lina Yao, Aixin Sun, and Yi Tay. 2019. Deep learning based recom- mender system: A survey and new perspectives.ACM computing surveys (CSUR) 52, 1 (2019), 1–38

  29. [29]

    Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. 2017. Attention is all you need.Advances in neural information processing systems30 (2017)

  30. [30]

    top- wear

    Guorui Zhou, Xiaoqiang Zhu, Chenru Song, Ying Fan, Han Zhu, Xiao Ma, Yanghui Yan, Junqi Jin, Han Li, and Kun Gai. 2018. Deep interest network for click-through rate prediction. InProceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining. 1059–1068. Conference acronym ’XX, June 03–05, 2018, Woodstock, NY Kun Yuan et a...

  31. [34]

    Guorui Zhou, Na Mou, Ying Fan, Qi Pi, Weijie Bian, Chang Zhou, Xiaoqiang Zhu, and Kun Gai. 2019. Deep interest evolution network for click-through rate prediction. InProceedings of the AAAI conference on artificial intelligence, Vol. 33. 5941–5948

  32. [2019]

    InProceedings of the 28th ACM international conference on information and knowledge management

    BERT4Rec: Sequential recommendation with bidirectional encoder rep- resentations from transformer. InProceedings of the 28th ACM international conference on information and knowledge management. 1441–1450

  33. [2021]

    InProceedings of the IEEE/CVF winter conference on applications of computer vision

    Efficient attention: Attention with linear complexities. InProceedings of the IEEE/CVF winter conference on applications of computer vision. 3531–3539

  34. [2024]

    Mamba4rec: Towards efficient sequential recommendation with selective state space models.arXiv preprint arXiv:2403.03900(2024)

  35. [2025]

    Plum: Adapting pre-trained language models for industrial-scale generative recommendations.arXiv preprint arXiv:2510.07784(2025)