REVIEW 5 major objections 5 minor 8 cited by
Optimizing Sequential Recommendation Models with Scaling Laws and Approximate Entropy
T0 review · 5 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read A single formula predicts recommender ranking performance.
desk verdict A promising data-quality idea wrapped in a predictive law that isn't actually tested; the in-sample fits don't carry the weight of the claims. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is Equation (7), a parametric curve with a depth term in $N$, an embedding term in $d_{\mathrm{emb}}$, and a data term in $D' = \#\mathrm{Tokens}\cdot\mathrm{ApEn}'$. Approximate Entropy (with tolerance $r=0$ here) is a time-series regularity statistic: it counts how often nearby patterns recur, and the paper uses $\mathrm{ApEn}' = 1/\mathrm{ApEn}$ so that larger values mean cleaner, less redundant data. Theorem 3.3 argues that the effective data scale is bounded by tokens times $\mathrm{ApEn}'$, using Kraft's inequality and Markov-chain entropy; Theorem 3.5 bounds loss by $\log(n) + 1/n$ with $n = S_{\max}d_{\mathrm{emb}}$, which produces the log-plus-decay shape of the model-size terms. The paper assumes Performance $= 1 - kL$ to convert loss into ranking metrics, and Equation (7) is the assembled fit.
What would settle it
On a held-out dataset, compute ApEn and token counts, fit Equation (7) using only a few small runs, then predict HR@10 and NDCG@10 at larger depths and embedding sizes; if the predicted values fall outside the fitted residual band, or if the measured loss and HR pairs are visibly non-monotone, the law fails.
Extended reading notes
Core claim
The central claim is the Performance Law, Equation (7): $$\text{Performance} = w_1\left(\log N + \frac{p_1}{$N^{{w_3}}$}\right) + w_2\left(\log d_{\mathrm{emb}} + \frac{p_1}{d_{\mathrm{emb}}^{w_4}}\right) + \log D' + \frac{p_2}{D'^{w_5}},$$ with $D' = \#\mathrm{Tokens}\cdot \mathrm{ApEn}'$ (where $\mathrm{ApEn}' = 1/\mathrm{ApEn}$, the reciprocal of Approximate Entropy). The paper argues that this single equation describes HR@10 and NDCG@10 of decoder-only transformer sequential recommenders across datasets, model depths, and embedding sizes, and that it can locate both a global optimum and the best configuration under a fixed model-size budget. The law is assembled by combining a log-and-decay loss bound (Theorem 3.5) with a data-scale bound (Theorem 3.3) that replaces raw token count by tokens times reciprocal Approximate Entropy, joined through the assumed linear relationship between ranking performance and loss.
Load-bearing premise
The whole law rests on the assumption that ranking metrics rise and fall linearly with the training loss; if that relationship bends, the predictions have no foundation.
Editorial extensions
If this is right
- If Equation (7) holds, HR@10 and NDCG@10 for unseen configurations can be predicted from a few small training runs, token counts, and Approximate Entropy, without full grid searches.
- The same fitted law can identify both the global optimum and the constrained optimum (for example, a fixed depth and embedding size), which the paper demonstrates by selecting a practical online-style configuration.
- By comparing fitted exponents across model architectures and numerical precisions, the law ranks how much each model family stands to gain from scaling up.
- Because the data term is $\log D' + p_2/D'^{w_5}$, the law predicts diminishing returns and eventual decay from both model-size and data-size directions, explaining when bigger models or more data stop helping.
Reading between the lines
- An unstated extension of the linear-loss assumption: a calibrated link between softmax loss and thresholded ranking metrics, such as a logistic or sampling-corrected transform, might make the Performance Law hold outside the fitted regimes.
- Setting Approximate Entropy's tolerance to zero counts only exact repeats; for noisy interaction logs, a small positive tolerance would make the quality measure less brittle and is a testable variant of the paper's recipe.
- If the effective-data bound is universal, the same $D' = \mathrm{Tokens}\cdot\mathrm{ApEn}'$ substitution could be applied to other recommendation families and other metrics, turning the law into a general data-curation tool (for example, predicting when de-duplicating interactions helps more than adding new ones).
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper introduces a 'Performance Law' for sequential recommendation models, proposing that ranking metrics HR@10 and NDCG@10 can be predicted from model depth N, embedding dimension d_emb, token count, and Approximate Entropy (ApEn) through Eq. (7), with effective data parameter D' = #Tokens · ApEn' = #Tokens/ApEn. The authors give theorems linking ApEn to data scale and loss to model dimensions, fit Eq. (7) on four datasets, and use the fitted law to search for optimal configurations and compare architectures.
Significance. If the Performance Law were valid, it would be practically valuable: a small number of training runs plus token count and ApEn could predict ranking metrics and identify compute-optimal configurations without exhaustive training. The paper also makes a plausible contribution in proposing ApEn as a data-quality measure for recommender data, and it reports a broad experimental matrix across four datasets and several architectures. However, the theoretical derivation has load-bearing gaps and the empirical validation is entirely in-sample, so the central predictive claim is not established by the evidence in the manuscript.
major comments (5)
- [Section 3.3, Lemma 3.2, Eqs. (10)-(11)] Lemma 3.2 is false for r<1, the regime used by the paper (ApEn is computed with r=0). With two-point distributions x=(0.5,0.5), y=(0.9,0.1) and r=0.5, the left side is -1 and the right side is approximately -1.737, violating the claimed inequality. The proof reverses the inequality after dividing by the negative number ln r, and it invokes ln(y/x)≤y/x−1 in the wrong direction. Since Theorem 3.3 relies on this lemma to conclude that data scale is bounded by #Tokens·ApEn', the data-parameter part of Eq. (7) is not supported.
- [Section 3.3, Theorem 3.3, Eqs. (15)-(21)] Even apart from Lemma 3.2, the proof of Theorem 3.3 contains unjustified steps. The requirement that 'p(si) and pxy are minimal' is undefined and is an assumption rather than a property of the data. In Eq. (19), the inequality log(1/p_xy)≥1 is not valid for arbitrary transition probabilities (it requires p_xy≤1/e), and the claim that 'each term has a minimum value of 1/(|U|·Smax)' is asserted without proof; states with zero observed transitions have p_xy=0. The bound in Eq. (21) that the entropy of the sequence distribution is at least S_max is also not established. The theorem therefore does not prove D=#Tokens·ApEn'.
- [Section 3.3, linear performance-loss assumption] The paper states 'we assume a linear relationship between model performance and loss, expressed as Performance = 1−kL'. No derivation, measurement, or citation supports this fixed linear map between sampled-softmax training loss and thresholded ranking metrics HR@10/NDCG@10. The constant k is never fitted or used anywhere in the subsequent equations, and the arguments in Section 3.3 only concern loss, so the transfer from loss scaling to ranking-metric scaling has no demonstrated basis.
- [Theorem 3.5, Eq. (24), Eq. (7)] Theorem 3.5 does not justify the functional form of Eq. (7). The proof assumes Zt≤1, which is asserted to be 'common in the overfitting phenomenon' but is not proven for the models studied. Even if Eq. (24) held, it is a bound of the form log(Zt)+1/Zt between two expressions, not an exact additive identity; the final sentence 'Analogously to (Wu & Tang, 2024), we factorize the product into the structure of Equation 7' supplies the missing step by reference to a paper by two of the present authors, with no derivation. The same symbol p1 appears in both the N and d_emb terms of Eq. (7), while the fitted examples in Eqs. (29)-(30) contain additional constants, so even the notational form is inconsistent.
- [Section 5.3, Table 2] All reported validation of Eq. (7) is in-sample: the same runs used to fit the seven or more free parameters are those whose R² and fitted curves are displayed, and no configuration is held out. Table 2 shows the fitted exponent w5 ranging from 0.0595 to 70.35 for HR@10 and from -29.95 to 18.46 for NDCG@10 across datasets, with sign changes. A law whose fitted parameters vary this widely across datasets does not support the abstract's claim that the method 'enables accurate predictions across various dataset scales and model sizes'; out-of-sample prediction of held-out configurations or datasets is required and is not reported. Section 5.4.1 similarly reports chosen optima but does not compare predicted metric values with later measurements.
minor comments (5)
- [Eq. (7)] The parameter p1 appears in both the N and d_emb terms but likely is intended to be two different parameters; the fitted equations (29)-(30) use different constants, so the notation in Eq. (7) should be corrected.
- [Figures 2-5 and Table 1] The caption of Fig. 2 refers to 'KuaiRand-1K' while Table 1 and the text refer to 'KuaiRand-pure'; please make the dataset names consistent across the manuscript.
- [References] Several references are incomplete; for example, 'Wang, H., et al.' lacks a year and venue, and the ICML submission template header remains in the arXiv version.
- [Section 5.4.2, Table 4] The text states 'both w1 and w2 are positive values,' but Table 4 reports w3 and w4, not w1 and w2; the relationship between the table and the statement needs clarification.
- [Table 1] The column heading '1/DL' is not defined in the text or caption, and it is unclear how it relates to the fitted data parameter D' discussed later.
Circularity Check
Eq. 7's functional form is imported from a self-cited prior work, and the optimal-configuration 'prediction' is the argmax of the same in-sample fit.
-
ansatz smuggled in via citation
[Section 3.3, Theorem 3.5 proof, sentence after Eq. 26 (Eq. 7)]
"Analogously to (Wu & Tang, 2024), we factorize the product into the structure of Equation 7, which represents the ultimate form of our fitting model."
Equation 7 is the central Performance Law that the paper claims 'enables accurate predictions across various dataset scales and model sizes.' The preceding derivation (Theorem 3.5, Eq. 24) only bounds log(Zt)+1/Zt by a term like log(demb^w4)+1/(demb^w4); it does not produce the additive separation into layer and embedding terms, the log(D')+p2/(D'^w5) data term, or the linear combination with coefficients w1, w2. The paper bridges this gap by appealing 'analogously' to Wu & Tang (2024), a paper by two co-authors of this manuscript (Chuhan Wu and Ruiming Tang). That cited work is itself an empirical proposal, not an independent external theorem, so the claimed functional form is an ansatz imported through a self-citation rather than a derived consequence of the lemmas.
-
fitted input called prediction
[Section 5.4.1, Application 1 (Eqs. 29-30, Table 3)]
"From the aforementioned fitting, we derived two distinct performance law formulations from HR and NG, as follows: ... From the results in the Table, it is evident that our formulation can achieve performance maxima both globally and under constraints."
Equations 29-30 are fitted on the same measured runs that appear in Table 3. The 'global optimal' and 'local optimal' configurations are obtained by taking the argmax of these fitted curves, and the table's bottom row is then presented as 'the optimal parameters as calculated using the Performance Law.' Because no configuration is held out and no unseen run is predicted, the claimed prediction reduces to the fitted function by construction. The in-sample R^2 and correlation figures do not establish that Eq. 7 predicts across dataset scales or model sizes; Table 2 additionally shows the fitted exponent w5 varying by orders of magnitude and sign across datasets, underscoring that the law is dataset-specific rather than a general predictive law.
full rationale
The paper has an independent, non-circular contribution in the ApEn data-quality analysis: D' = #Tokens * ApEn' is computed from data and compared to fitted scaling-law parameters in Figure 4, which is a testable empirical check. However, the paper's central predictive claim rests on Eq. 7, and the chain from the lemmas to Eq. 7 is not a derivation: Theorem 3.5 provides only a bound, and the full factorization is imported by analogy from Wu & Tang (2024), prior work by two of the present authors. The validation of the Performance Law is entirely in-sample: the curves are fitted to the same runs whose metrics are plotted, and the optimal-configuration 'prediction' in Section 5.4.1 is simply the argmax of those fitted curves. No held-out configuration, dataset, or external benchmark is used to establish predictive accuracy. This is not a case of deliberate circular definition, but the central claim's predictive content does reduce substantially to the fit and to a self-cited ansatz, so a score of 6 reflects partial circularity.
Assumptions & free parameters
free parameters (5)
- w1, w2, w3, w4, w5, p1, p2 (Performance Law coefficients) =
Example fit (Eq 29): HR = 0.50(34 N^-0.0001 + ln N) - 19.01(3 d^-0.0365 + ln d) + 2.5 D'^-12.74 + ln D' + 628.12
- slope and intercept of linear relation between fitted data parameter D' and #Tokens/ApEn =
not reported
- ApEn embedding dimension m =
unspecified (r fixed to 0)
- data parameter D' fitted per dataset and metric =
e.g., KuaiRand-pure HR@10: D'=6074772.573, w5=0.4864; ML-1m HR@10: D'=27496352.75, w5=2.6036
- constant k in Performance = 1 - kL =
not reported
assumptions (6)
- domain assumption User sequences are first-order aperiodic stationary Markov chains
- ad hoc to paper HR@10 and NDCG@10 are linear in loss: Performance = 1 - kL
- ad hoc to paper Zt <= 1 during overfitting
- ad hoc to paper The p(si) and pxy in Theorem 3.3 are minimal, and each transition probability is at least 1/(|U| Smax)
- ad hoc to paper The functional form of Eq 7 follows from Theorem 3.5 by analogy to Wu and Tang 2024
- standard math Kraft inequality, Gibbs/log-sum inequalities, Stirling approximation
invented entities (2)
-
Effective data parameter D' = #Tokens * ApEn' = #Tokens / ApEn
-
ApEn' = 1/ApEn, the inverted Approximate Entropy measure
Cite this review
Pith. "Pith review of Optimizing Sequential Recommendation Models with Scaling Laws and Approximate Entropy." pith.science (2026). https://pith.science/paper/OXQNM2B3
@misc{pith2026241200430,
author = {Pith},
title = {Pith review of: Optimizing Sequential Recommendation Models with Scaling Laws and Approximate Entropy},
year = {2026},
howpublished = {\url{https://pith.science/paper/OXQNM2B3}},
note = {Machine review of arXiv:2412.00430}
}
read the original abstract
Scaling Laws have emerged as a powerful framework for understanding how model performance evolves as they increase in size, providing valuable insights for optimizing computational resources. In the realm of Sequential Recommendation (SR), which is pivotal for predicting users' sequential preferences, these laws offer a lens through which to address the challenges posed by the scalability of SR models. However, the presence of structural and collaborative issues in recommender systems prevents the direct application of the Scaling Law (SL) in these systems. In response, we introduce the Performance Law for SR models, which aims to theoretically investigate and model the relationship between model performance and data quality. Specifically, we first fit the HR and NDCG metrics to transformer-based SR models. Subsequently, we propose Approximate Entropy (ApEn) to assess data quality, presenting a more nuanced approach compared to traditional data quantity metrics. Our method enables accurate predictions across various dataset scales and model sizes, demonstrating a strong correlation in large SR models and offering insights into achieving optimal performance for any given model configuration.
Figures
Figures from the paper (2 more)
Forward citations
Cited by 8 Pith papers
-
FuXi-\beta: Towards a Lightweight and Fast Large-Scale Generative Recommendation Model
FuXi-β shows that removing query-key attention and using a functional relative time bias makes generative recommendation Transformers faster and, on industrial datasets, more accurate.
-
Closing the Performance Gap in Generative Recommenders with Collaborative Tokenization and Efficient Modeling
Generative recommender systems using COSETTE tokenization and the MARIUS architecture reach or exceed the accuracy of a strong ID-based SASRec baseline on standard Amazon benchmarks.
-
TD3: Tucker Decomposition Based Dataset Distillation Method for Sequential Recommendation
TD3 factorizes a synthetic sequence summary into user, time, item, and core factors via Tucker decomposition, and trains recommenders on this summary with a feature-alignment meta-objective.
-
Devils in Middle Layers of Large Vision-Language Models: Interpreting, Detecting and Mitigating Object Hallucinations via Attention Lens
The middle layers of LVLMs process visual information in two stages, and amplifying image attention in the first 'enrichment' stage reduces object hallucinations.
-
SelfAug: Mitigating Catastrophic Forgetting in Retrieval-Augmented Generation via Distribution Self-Alignment
Adding a KL penalty between fine-tuned and original model logits on input tokens during RAG fine-tuning reduces catastrophic forgetting while preserving downstream performance.
-
DLF: Enhancing Explicit-Implicit Interaction via Dynamic Low-Order-Aware Fusion for CTR Prediction
DLF is a CTR prediction architecture that combines low-rank, high-rank, and implicit interaction blocks with layer-wise attention fusion, reporting state-of-the-art results on Criteo, Avazu, Movielens, and Frappe.
-
Killing Two Birds with One Stone: Unifying Retrieval and Ranking with a Single Generative Recommendation Model
UniGRF trains one generative model to output both next-item predictions and click probabilities, and reports consistent gains over separate retrieval and ranking models on MovieLens and Amazon-Books.
-
FuXi-$\alpha$: Scaling Recommendation Model with Feature Interaction Enhanced Transformer
FuXi-alpha, a sequential recommender with decoupled temporal, positional, and semantic attention channels plus a two-stage FFN, reports gains over HSTU and positive online engagement results.
Reference graph
Works this paper leans on
-
[1]
Understanding training efficiency of deep learning recommendation models at scale
Acun, B., Murphy, M., Wang, X., Nie, J., Wu, C.-J., and Hazelwood, K. Understanding training efficiency of deep learning recommendation models at scale. In 2021 IEEE International Symposium on High-Performance Com- puter Architecture (HPCA), pp. 802–814. IEEE,
work page 2021
-
[5]
Compressed interaction graph based framework for multi-behavior recommendation
Guo, W., Meng, C., Yuan, E., He, Z., Guo, H., Zhang, Y ., Chen, B., Hu, Y ., Tang, R., Li, X., et al. Compressed interaction graph based framework for multi-behavior recommendation. In Proceedings of the ACM Web Con- ference 2023, pp. 960–970,
work page 2023
-
[8]
URL https://doi.org/ 10.1145/3269206.3271761
1145/3269206.3271761. URL https://doi.org/ 10.1145/3269206.3271761. Hidasi, B., Karatzoglou, A., Baltrunas, L., and Tikk, D. Session-based recommendations with recurrent neural networks. In Bengio, Y . and LeCun, Y . (eds.),4th Inter- national Conference on Learning Representations, ICLR 2016, San Juan, Puerto Rico, May 2-4, 2016, Conference Track Proceedings,
-
[10]
URL https://doi.org/ 10.1145/2911451.2911489
1145/2911451.2911489. URL https://doi.org/ 10.1145/2911451.2911489. He, Z., Liu, W., Guo, W., Qin, J., Zhang, Y ., Hu, Y ., and Tang, R. A survey on user behavior modeling in rec- ommender systems. arXiv preprint arXiv:2302.11087,
-
[11]
Kang, W.-C. and McAuley, J. Self-attentive sequential recommendation. In 2018 IEEE International Conference on Data Mining (ICDM) , pp. 197–206,
work page 2018
-
[12]
Kaplan, J., McCandlish, S., Henighan, T., Brown, T
1109/ICDM.2018.00035. Kaplan, J., McCandlish, S., Henighan, T., Brown, T. B., Chess, B., Child, R., Gray, S., Radford, A., Wu, J., and Amodei, D. Scaling laws for neural language models. arXiv preprint arXiv:2001.08361,
arXiv 2018
-
[13]
Generalization through memorization: Nearest neighbor language models
Khandelwal, U., Levy, O., Jurafsky, D., Zettlemoyer, L., and Lewis, M. Generalization through memorization: Nearest neighbor language models. arXiv preprint arXiv:1911.00172,
arXiv 1911
-
[15]
Deep double descent: Where bigger models and more data hurt
Nakkiran, P., Kaplun, G., Bansal, Y ., Yang, T., Barak, B., and Sutskever, I. Deep double descent: Where bigger models and more data hurt. Journal of Statistical Mechan- ics: Theory and Experiment, 2021(12):124003,
2021
Show all 27 references
-
[16]
Beyond scaling laws: Understanding transformer performance with associative memory
Niu, X., Bai, B., Deng, L., and Han, W. Beyond scaling laws: Understanding transformer performance with associative memory. arXiv preprint arXiv:2405.08707,
-
[18]
W., Borgeaud, S., Cai, T., Millican, K., Hoffmann, J., Song, F., Aslanides, J., Henderson, S., Ring, R., Young, S., et al
Rae, J. W., Borgeaud, S., Cai, T., Millican, K., Hoffmann, J., Song, F., Aslanides, J., Henderson, S., Ring, R., Young, S., et al. Scaling language models: Methods, analysis & insights from training gopher. arXiv preprint arXiv:2112.11446,
-
[22]
Llama 2: Open foundation and fine- tuned chat models
Touvron, H., Martin, L., Stone, K., Albert, P., Almahairi, A., Babaei, Y ., Bashlykov, N., Batra, S., Bhargava, P., Bhosale, S., et al. Llama 2: Open foundation and fine- tuned chat models. arXiv preprint arXiv:2307.09288 ,
-
[23]
Decoupled representation learning for attributed networks
Wang, H., Lian, D., Tong, H., Liu, Q., Huang, Z., and Chen, E. Decoupled representation learning for attributed networks. IEEE Transactions on Knowledge and Data Engineering, 35(3):2430–2444, 2021a. Wang, H., Lian, D., Tong, H., Liu, Q., Huang, Z., and Chen, E. Hypersorec: Exp...
-
[24]
URL https://doi.org/ 10.1145/3397271.3401142
1145/3397271.3401142. URL https://doi.org/ 10.1145/3397271.3401142. Wu, C. and Tang, R. Performance law of large language models. arXiv preprint arXiv:2408.09895,
-
[27]
Breaking determinism: Fuzzy modeling of sequen- tial recommendation using discrete state space diffusion model
Xie, W., Wang, H., Zhang, L., Zhou, R., Lian, D., and Chen, E. Breaking determinism: Fuzzy modeling of sequen- tial recommendation using discrete state space diffusion model. arXiv preprint arXiv:2410.23994, 2024a. Xie, W., Zhou, R., Wang, H., Shen, T., and Chen, E. Bridg- ing...
-
[28]
A unified framework for adaptive representation enhancement and inversed learn- ing in cross-domain recommendation
Zhang, L., Wang, H., Zhang, S., Yin, M., Han, Y ., Zhang, J., Lian, D., and Chen, E. A unified framework for adaptive representation enhancement and inversed learn- ing in cross-domain recommendation. arXiv preprint arXiv:2404.00268,
-
[29]
X., and Wen, J.-R
Zhou, K., Yu, H., Zhao, W. X., and Wen, J.-R. Filter- enhanced mlp is all you need for sequential recommenda- tion. In Proceedings of the ACM web conference 2022, pp. 2388–2399,
2022
-
[1949]
K., Lee, J., Lundell, J., Kim, C., Kejariwal, A., and Owens, J
Lin, Z., Feng, L., Ardestani, E. K., Lee, J., Lundell, J., Kim, C., Kejariwal, A., and Owens, J. D. Building a performance model for deep learning recommendation model training on gpus. In 2022 IEEE 29th International Conference on High Performance Computing, Data, and Analyti...
2022
-
[1991]
Grokking: Generalization beyond overfit- ting on small algorithmic datasets
Power, A., Burda, Y ., Edwards, H., Babuschkin, I., and Misra, V . Grokking: Generalization beyond overfit- ting on small algorithmic datasets. arXiv preprint arXiv:2201.02177,
-
[2016]
10 Submission and Formatting Instructions for ICML 2024 Hoffmann, J., Borgeaud, S., Mensch, A., Buchatskaya, E., Cai, T., Rutherford, E., Casas, D
URL http://arxiv.org/ abs/1511.06939. 10 Submission and Formatting Instructions for ICML 2024 Hoffmann, J., Borgeaud, S., Mensch, A., Buchatskaya, E., Cai, T., Rutherford, E., Casas, D. d. L., Hendricks, L. A., Welbl, J., Clark, A., et al. Training compute-optimal large langua...
2024 arXiv
-
[2017]
Exploring user retrieval integration towards large language models for cross-domain sequen- tial recommendation
Shen, T., Wang, H., Zhang, J., Zhao, S., Li, L., Chen, Z., Lian, D., and Chen, E. Exploring user retrieval integration towards large language models for cross-domain sequen- tial recommendation. arXiv preprint arXiv:2406.03085,
-
[2018]
Wu, S., Tang, Y ., Zhu, Y ., Wang, L., Xie, X., and Tan, T
URL http: //arxiv.org/abs/1811.00855. Wu, S., Tang, Y ., Zhu, Y ., Wang, L., Xie, X., and Tan, T. Session-based recommendation with graph neural networks. In Proceedings of the AAAI conference on artificial intelligence, volume 33, pp. 346–353,
-
[2019]
ISBN 9781450369763
Associa- tion for Computing Machinery. ISBN 9781450369763. doi: 10.1145/3357384.3357895. URL https://doi. org/10.1145/3357384.3357895. Tang, J. and Wang, K. Personalized top-n sequential recom- mendation via convolutional sequence embedding. In Proceedings of the Eleventh ACM ...
-
[2020]
URL https: //doi.org/10.1145/3426723
doi: 10.1145/3426723. URL https: //doi.org/10.1145/3426723. Gadre, S. Y ., Smyrnis, G., Shankar, V ., Gururangan, S., Wortsman, M., Shao, R., Mercat, J., Fang, A., Li, J., Keh, S., et al. Language models scale reliably with over-training and on downstream tasks. arXiv preprint...
-
[2021]
Reconciling modern machine-learning practice and the classical bias– 9 Submission and Formatting Instructions for ICML 2024 Table
Belkin, M., Hsu, D., Ma, S., and Mandal, S. Reconciling modern machine-learning practice and the classical bias– 9 Submission and Formatting Instructions for ICML 2024 Table
2024
-
[2022]
Integrating large language models into recommendation via mutual aug- mentation and adaptive aggregation
Luo, S., Yao, Y ., He, B., Huang, Y ., Zhou, A., Zhang, X., Xiao, Y ., Zhan, M., and Song, L. Integrating large language models into recommendation via mutual aug- mentation and adaptive aggregation. arXiv preprint arXiv:2401.13870,
-
[2023]
Understanding emergent abilities of language models from the loss per- spective
Du, Z., Zeng, A., Dong, Y ., and Tang, J. Understanding emergent abilities of language models from the loss per- spective. arXiv preprint arXiv:2403.15796,
-
[2024]
Mdap: A multi-view disentangled and adaptive prefer- ence learning framework for cross-domain recommenda- tion
Tong, J., Yin, M., Wang, H., Pan, Q., Lian, D., and Chen, E. Mdap: A multi-view disentangled and adaptive prefer- ence learning framework for cross-domain recommenda- tion. arXiv preprint arXiv:2410.05877,
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.