Pith. sign in

REVIEW 4 major objections 5 minor 31 references

Goal-Conditioned Supervised Learning for Multi-Objective Recommendation

T0 review · 4 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read Conditioning a recommender on a vector of future rewards outperforms weighted multi-objective baselines.

desk verdict A genuinely strong empirical comparison for vector-goal GCSL in multi-objective recommendation, but the denoising story is circular and should be cut or reframed. read the letter →

arxiv 2412.08911 v3 pith:4EEHNOBV submitted 2024-12-12 cs.LG cs.AIcs.IR

classification cs.LGcs.AIcs.IR
keywords multi-objectiverecommendationgoal-conditionedsupervisedlearningsequentialcumulativerewardrelabelingdenoisingvariationalautoencodergoalselectiontransformerrecommenderoffline
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

The paper proposes MOGCSL, a training scheme for multi-objective sequential recommendation that conditions next-item prediction on a vector of cumulative future rewards, one dimension per objective. It argues that this turns multi-objective learning into plain supervised learning, removing the need for separate task towers, loss-weight tuning, or Pareto optimization. The method also implicitly discounts noisy interactions: because it learns to imitate actions that led to high long-term goals, it concentrates on what the authors argue are cleaner demonstrations of user interest. On two e-commerce datasets, purchase hit rate at rank 10 improves markedly over previous multi-objective baselines, with fewer parameters and shorter training time. A second contribution is a variational-autoencoder goal-selection procedure for inference, which the paper shows is most useful when training data contains many high-goal sessions.

What carries the argument

The central object is the goal vector $g_t = \sum_{t'=t}^{|\tau|} r_{t'}$, the cumulative multi-objective reward from timestep $t$ to the end of the session, used both as a training relabeling and as a conditioning input. The model concatenates a transformer-encoded interaction history with a timestep embedding and a learned embedding of the goal vector, passes the result through a self-attention block, and outputs action logits over the item set; training is standard cross-entropy on the observed next action given state and goal. A conditional VAE learns the distribution of achievable goals for a new state and selects a high, achievable goal as the inference input. The mechanism that carries the argument is the goal's role as a filter: actions followed by low cumulative rewards are implicitly discounted because the model is trained to imitate only actions consistent with the input goal, and high goals at inference activate the clean-behavior patterns.

What would settle it

On a dataset where high-goal interactions are generated by noisy or atypical behavior (for example, accidental clicks that lead to long sessions) while low-goal interactions are deliberate, train MOGCSL and compare with a uniform-weight baseline; if goal-conditioned training does not improve or worsens prediction, the denoising premise fails. More directly, measure a label-noise proxy, such as repeat-action or re-click consistency, as a function of cumulative goal in RetailRocket and Challenge15; the claimed mechanism requires higher-goal steps to be measurably cleaner.

Watch

Extended reading notes

Core claim

The central claim is that multi-objective sequential recommendation can be solved by relabeling each interaction with a multi-dimensional goal, defined as the vector of cumulative rewards from that step to the end of the session, and training a transformer to predict the observed next action conditioned on that goal. Because the model is trained to imitate actions that actually led to high goals, it preferentially learns clean behavior patterns; at inference, feeding a high goal steers it toward high-reward actions. The paper reports purchase HR@10 rising from 48.67 with the best weighted-loss baseline to 65.43 on RetailRocket and from 39.06 to 56.82 on Challenge15, using a 9.1M-parameter model and the shortest training time in the comparison. It also proves that the distribution of goals actually achieved during inference is determined by the initial state, the input goal, and the policy, which motivates the proposed CVAE-based goal chooser.

Load-bearing premise

The load-bearing premise is that interactions followed by higher cumulative multi-objective rewards are systematically less noisy and more representative of true user interest; the paper encodes this in a synthetic experiment but does not verify the correlation on the real e-commerce datasets.

Editorial extensions

If this is right

  • MOGCSL removes the need for separate towers, dynamic loss weights, or Pareto-optimization loops in multi-objective recommendation; a single cross-entropy loss on goal-relabeled data suffices.
  • Because the goal is a vector, objectives are disentangled without scalarization weights, and changing priorities at inference reduces to choosing a different goal vector rather than retraining weights.
  • On datasets with high average cumulative goals, the learned CVAE goal-chooser outperforms simple statistical goal selection, implying that richer goal distributions unlock the benefit of principled inference goals.
  • The denoising analysis implies that MOGCSL should be most beneficial when log data contains many low-reward interactions from distracted or mismatched users, and least beneficial when high- and low-goal interactions are equally informative.
  • The same vector-goal conditioning could apply to any sequential decision problem with multiple reward dimensions, provided the offline data contains trajectories with varying long-term outcomes.

Reading between the lines

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

  • An implication not drawn in the paper is that the denoising mechanism depends on a monotone relationship between cumulative reward and data quality; if real logs contain high-goal noise (for example, bot-driven sessions), the method could amplify rather than discount noise.
  • The CVAE goal-chooser's weaker performance on low-average-goal datasets suggests a testable extension: augment training data with synthetic high-goal trajectories or use goal relabeling so the model sees enough high-goal examples to make advanced goal selection worthwhile.
  • Theorem 1 implies the goal chooser must be retrained whenever the policy changes; otherwise the selected goals may not be achievable under the new policy, a practical constraint the paper does not discuss.
  • The comparison between MOGCSL-S and MOGCSL-C indicates that simple statistics on training goals can be near-optimal for sparse-goal data, so production systems with tight latency budgets can safely start with the simpler strategy.
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

4 major / 5 minor

Summary. The paper proposes MOGCSL, a goal-conditioned supervised learning method for multi-objective sequential recommendation. The method relabels each interaction with a vector of cumulative future rewards (Eq. 1), conditions a transformer-based next-action predictor on that vector, and trains with a standard cross-entropy loss (Eq. 5). For inference, goals are chosen either by scaling the training-set mean reward or by a CVAE-based algorithm that models the distribution of achievable goals (Algorithm 2, Eqs. 6-7). Experiments on RetailRocket and Challenge15 report large gains on purchase-oriented HR/NDCG over multi-task, Pareto, and offline-RL baselines, while using a 9.1M-parameter model with the shortest training time in Table 2. A theorem about the distribution of achievable goals is stated in Section 3.3, and a denoising mechanism is claimed in Section 3.4 and Appendix B.2.

Significance. The empirical core of the paper is valuable: the comparison uses the same transformer/self-attention base module across eight multi-objective baselines plus SQN and MOPRL, reports means and standard deviations over five seeds, and the purchase-metric gains are consistent on two public datasets. If these results hold, MOGCSL is an attractive simple alternative to multi-task towers and weighted-loss optimization for recommendation, and the complexity comparison in Table 2 supports the scalability claim. The paper also gives a candid discussion of when simple statistical goal selection is competitive with the CVAE-based method. However, the theoretical analysis in Appendix A and the denoising validation in Appendix B.2 are not at the same standard as the experimental core, and these items directly support the paper's novelty claims. The real-data experiments do not depend on the synthetic construction, so the central empirical result remains plausible, but the mechanism story needs to be substantially strengthened or reframed.

major comments (4)
  1. [Appendix B.2, Eq. (20)] The synthetic denoising experiment is circular with respect to the claim in Section 3.4. Equation (20) defines the noisy label ε(a) as a deterministic function of the goal vector: whenever any goal dimension gi ≤ −1, ε(a) is uniformly random, and otherwise ε(a)=a. The goal vector is then given as an input feature to XGBoost-mg, and at inference every goal dimension is set to 1. The experiment therefore only shows that a supervised model that receives g can learn the programmed threshold; it cannot confirm that MOGCSL's conditioning on cumulative rewards discounts noise in real recommender data. In addition, the experiment uses an XGBoost classifier rather than the transformer/GCSL training described in Section 3.2, so it does not test the proposed method itself. Because the abstract and Section 3.4 present denoising as a central benefit, this evidence needs to be replaced with a test that does not bake in the assumed correlation, or the claim should be substantially softened.
  2. [Appendix A, Eqs. (15)-(17)] The proof of Theorem 1 contains an unjustified marginalization. Equation (16) writes P(rn|sn) as a sum over an, gn of 1(R(sn,an)=rn)π(an|sn,gn)P(sn,gn)/P(sn), but the correct conditional would involve P(an,gn|sn) or P(gn|sn); there is no reason for P(sn,gn)/P(sn) to appear in that form. Equation (17) also conditions P(sm+1|sm,xn−1) on xn−1, which contains rewards after time m, yet the right-hand side uses only rm; conditioning on future rewards changes the transition distribution, so the displayed factorization does not follow. Since Theorem 1 is used to motivate the CVAE goal-selection algorithm in Section 3.3, the proof must be corrected or the theoretical claim should be removed or weakened.
  3. [Section 4.4, Table 4] The proposed CVAE-based goal-selection algorithm does not consistently outperform the simple statistical strategy in the primary experiments. In Table 4, MOGCSL-C is worse than MOGCSL-S on Challenge15 purchase HR@10 (55.13 vs 56.82) and only marginally different on RetailRocket. The paper acknowledges this and attributes it to low average goals, but the goal-selection algorithm is listed as a key contribution and is the only component that depends on Theorem 1. The Tenrec result in Appendix B.8 is helpful, but the current main-dataset results do not establish the practical value of the CVAE-based method; either the contribution should be scaled back or the analysis should be integrated more directly with the main experimental claims.
  4. [Section 3.4 and Section 4.4] The denoising explanation is not verified on either real dataset. The paper never measures noise on RetailRocket or Challenge15, and Section 4.4 reports that the mean purchase goal is only about 0.2, so 'high' purchase goals are extremely sparse. Without a real-data proxy linking higher cumulative rewards to lower label noise, the large purchase-metric gains (e.g., HR@10 from 48.67 for Share-PE to 65.43 for MOGCSL on RetailRocket) are not evidence for the noise-discounting mechanism; they may reflect other properties of goal-conditioned training, such as additional input features or differences in the training objective. The mechanism should be presented as a hypothesis, or supported by a real-data analysis that gives direct evidence for the assumed correlation.
minor comments (5)
  1. [Section 3.2, Eq. (3)] Equation (3) appears to show only the goal embedding being fed into the self-attention block, whereas the text says the state embedding is fed in; please clarify the notation and the exact input to Atten(·).
  2. [Section 3.3, Eqs. (6)-(7)] The variational objectives are written with a plus sign before the KL term (L = E[log P] + D_KL); the standard ELBO uses a minus sign, or the quantity is a negative ELBO. Please check the sign and state explicitly whether these expressions are to be maximized or minimized.
  3. [Algorithm 1 and Abstract] There are several typos and grammatical slips: 'Intialization' in Algorithm 1, 'We also introduces' in the abstract, 'am MOMDP' in Appendix A, and 'mutli-objective' in Section 3.1. A proofreading pass is needed.
  4. [Table 2] The units in Table 2 should be defined: 'Ks' presumably means kiloseconds, but it is not explained; also '3.0Ks' and similar entries would be clearer as '3.0×10^3 s' or '50 min'.
  5. [Section 4.2] The text states that MOGCSL achieves the best performance on click HR on RetailRocket, but on Challenge15 the click metrics are not consistently best; the wording should be adjusted to avoid overgeneralizing the click results.

Circularity Check

1 steps flagged · score 6.0 of 10

The denoising validation is circular because Eq. (20) programs noise as a deterministic function of the goal, while the main real-data recommendation results are independent.

  1. self definitional [Section 3.4; Appendix B.2, Eq. (20)]
    "Conversely, interactions achieving higher goals are generally less noisy, meaning ε(a) is closer to a. ... To empirically validate this effect, we conduct experiments that are illustrated in Appendix B.2 ... Define ε(a) as: ε(a) = (∏_i 1(g_i > −1))a + (1−∏_i 1(g_i > −1))randint[1,N]."

    The experiment is constructed so that 'noiseless' is defined to be exactly 'all goal coordinates are greater than −1'. A model that receives the full goal vector g can therefore read off the noise condition directly from the input the authors wrote into Eq. (20). The reported XGBoost-mg advantage over XGBoost-s and XGBoost-ug is thus guaranteed by the data-generating process rather than discovered from real interactions. The paper even states that XGBoost-ug is 'unable to precisely distinguish noisy data since ε(a) is determined by all dimensions of g', which is true only because the authors chose the noise rule to depend on all dimensions.

full rationale

The main MOGCSL performance results in Table 1 are not circular: the model conditions next-item prediction on a cumulative-reward vector and is compared against eight multi-task baselines, SQN, and a scalar-goal MOPRL variant on held-out click and purchase labels. These results stand independently of the synthetic denoising construction. There are no load-bearing self-citations; the GCSL and PRL references are external prior work. Theorem 1 is a formal consequence of the MOMDP definition and is used only to motivate learning the achievable-goal distribution with a CVAE, so although it is close to a tautology it does not force any empirical outcome and is not counted here as circular. The one genuinely circular element is the denoising validation in Appendix B.2, where Eq. (20) hard-codes the assumption that noise is a threshold function of the multi-dimensional goal and then shows that a goal-conditioned model can exploit that programmed correlation. The paper's own Section C also limits the advanced goal-choosing strategy to high-goal datasets, which is consistent with the main results having independent content. Overall, the central recommendation-performance contribution is self-contained, but the paper's headline denoising-mechanism claim is partially circular because its only direct evidence reduces by construction to the assumption it purports to validate.

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

The central method depends on standard MDP assumptions and one unverified domain assumption about noise structure. The synthetic experiment's noise rule is ad hoc. No new physical or conceptual entities are introduced.

free parameters (3)
  • Inference goal scaling factor lambda = Not fixed; tuned on validation, optimal in [1,2] per Appendix B.7
    MOGCSL-S sets each inference goal dimension as the average training goal at that timestep multiplied by lambda. Lambda is tuned on the validation set, and performance is sensitive to it.
  • CVAE sample size K = 20
    Algorithm 2 samples K goals from the learned prior. The value 20 is chosen without ablation or sensitivity analysis.
  • Learning rate and batch size = Learning rate from [0.0001, 0.0005, 0.001, 0.005], batch size 256
    Standard hyperparameters tuned on validation; they affect all compared models equally but are not part of the derivation.
assumptions (3)
  • domain assumption The interaction environment is a Multi-Objective Markov Decision Process with fixed reward function R(s,a) and transition function T(s'|s,a).
    Section 3.1 models recommendations as an MOMDP; Theorem 1 and the goal-conditioned training objective rely on the Markov property.
  • domain assumption In real recommender data, interactions with higher cumulative multi-objective rewards are less noisy and better reflect user interest.
    Section 3.4 asserts that noisy choices lead to smaller goals and high goals are closer to true interest. This premise is central to the claimed denoising advantage but is not directly verified on real data.
  • ad hoc to paper The synthetic denoising experiment uses noise defined as a deterministic function of the goal vector.
    Appendix B.2 Eq. (20) sets epsilon(a)=a if all g_i > -1 and random otherwise. This constructs exactly the correlation the method is designed to exploit, so the experiment is illustrative rather than validating a real-world phenomenon.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Goal-Conditioned Supervised Learning for Multi-Objective Recommendation." pith.science (2026). https://pith.science/paper/4EEHNOBV

@misc{pith2026241208911,
  author       = {Pith},
  title        = {Pith review of: Goal-Conditioned Supervised Learning for Multi-Objective Recommendation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/4EEHNOBV}},
  note         = {Machine review of arXiv:2412.08911}
}
read the original abstract

Multi-objective learning endeavors to concurrently optimize multiple objectives using a single model, aiming to achieve high and balanced performance across diverse objectives. However, this often entails a more complex optimization problem, particularly when navigating potential conflicts between objectives, leading to solutions with higher memory requirements and computational complexity. This paper introduces a Multi-Objective Goal-Conditioned Supervised Learning (MOGCSL) framework for automatically learning to achieve multiple objectives from offline sequential data. MOGCSL extends the conventional GCSL method to multi-objective scenarios by redefining goals from one-dimensional scalars to multi-dimensional vectors. It benefits from naturally eliminating the need for complex architectures and optimization constraints. Moreover, MOGCSL effectively filters out uninformative or noisy instances that fail to achieve desirable long-term rewards across multiple objectives. We also introduces a novel goal-selection algorithm for MOGCSL to model and identify "high" achievable goals for inference. While MOGCSL is quite general, we focus on its application to the next action prediction problem in commercial-grade recommender systems. In this context, any viable solution needs to be reasonably scalable and also be robust to large amounts of noisy data that is characteristic of this application space. We show that MOGCSL performs admirably on both counts by extensive experiments on real-world recommendation datasets. Also, analysis and experiments are included to explain its strength in discounting the noisier portions of training data in recommender systems with multiple objectives.

Figures

Figures reproduced from arXiv: 2412.08911 by the authors.

Figure 1
Figure 1. Model structure of MOGCSL. 13 [PITH_FULL_IMAGE:figures/full_fig_p013_1.png] view at source ↗
Figure 2
Figure 2. Comparison between MOGCSL and MOPRLs with different weight combinations on [PITH_FULL_IMAGE:figures/full_fig_p016_2.png] view at source ↗
Figure 3
Figure 3. Performance of MOGCSL-S with different factors for inference goal. [PITH_FULL_IMAGE:figures/full_fig_p017_3.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

31 extracted references · 15 canonical work pages

  1. [1]

    An overview of multi-task learning in deep neural networks

    Sebastian Ruder. An overview of multi-task learning in deep neural networks. arXiv preprint arXiv:1706.05098, 2017

  2. [2]

    Multi-task learning as multi-objective optimization

    Ozan Sener and Vladlen Koltun. Multi-task learning as multi-objective optimization. Advances in neural information processing systems, 31, 2018. 9

  3. [3]

    A survey on multi-task learning

    Yu Zhang and Qiang Yang. A survey on multi-task learning. IEEE Transactions on Knowledge and Data Engineering, 34(12):5586–5609, 2021

  4. [4]

    Modeling task relationships in multi-task learning with multi-gate mixture-of-experts

    Jiaqi Ma, Zhe Zhao, Xinyang Yi, Jilin Chen, Lichan Hong, and Ed H Chi. Modeling task relationships in multi-task learning with multi-gate mixture-of-experts. In Proceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining, pages 1930–1939, 2018

  5. [5]

    End-to-end multi-task learning with attention

    Shikun Liu, Edward Johns, and Andrew J Davison. End-to-end multi-task learning with attention. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 1871–1880, 2019

  6. [6]

    Gradient surgery for multi-task learning

    Tianhe Yu, Saurabh Kumar, Abhishek Gupta, Sergey Levine, Karol Hausman, and Chelsea Finn. Gradient surgery for multi-task learning. Advances in Neural Information Processing Systems, 33:5824–5836, 2020

  7. [7]

    A pareto-efficient algorithm for multiple objective optimization in e-commerce recommendation

    Xiao Lin, Hongjie Chen, Changhua Pei, Fei Sun, Xuanji Xiao, Hanxiao Sun, Yongfeng Zhang, Wenwu Ou, and Peng Jiang. A pareto-efficient algorithm for multiple objective optimization in e-commerce recommendation. In Proceedings of the 13th ACM Conference on recommender systems, pages 20–28, 2019

  8. [8]

    Rethinking goal-conditioned supervised learning and its connection to offline rl

    Rui Yang, Yiming Lu, Wenzhe Li, Hao Sun, Meng Fang, Yali Du, Xiu Li, Lei Han, and Chongjie Zhang. Rethinking goal-conditioned supervised learning and its connection to offline rl. arXiv preprint arXiv:2202.04478, 2022

Show all 31 references
  1. [9]

    Goal-conditioned reinforcement learning: Problems and solutions

    Minghuan Liu, Menghui Zhu, and Weinan Zhang. Goal-conditioned reinforcement learning: Problems and solutions. arXiv preprint arXiv:2201.08299, 2022

  2. [10]

    Decision transformer: Reinforcement learning via sequence modeling

    Lili Chen, Kevin Lu, Aravind Rajeswaran, Kimin Lee, Aditya Grover, Misha Laskin, Pieter Abbeel, Aravind Srinivas, and Igor Mordatch. Decision transformer: Reinforcement learning via sequence modeling. Advances in neural information processing systems, 34:15084–15097, 2021

  3. [11]

    Rethinking reinforcement learning for recommendation: A prompt per- spective

    Xin Xin, Tiago Pimentel, Alexandros Karatzoglou, Pengjie Ren, Konstantina Christakopoulou, and Zhaochun Ren. Rethinking reinforcement learning for recommendation: A prompt per- spective. In Proceedings of the 45th International ACM SIGIR Conference on Research and Development ...

  4. [12]

    Cross-stitch networks for multi-task learning

    Ishan Misra, Abhinav Shrivastava, Abhinav Gupta, and Martial Hebert. Cross-stitch networks for multi-task learning. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 3994–4003, 2016

  5. [13]

    Famo: Fast adaptive multitask optimization

    Bo Liu, Yihao Feng, Peter Stone, and Qiang Liu. Famo: Fast adaptive multitask optimization. Advances in Neural Information Processing Systems, 36, 2024

  6. [14]

    Offline reinforcement learning as one big sequence modeling problem

    Michael Janner, Qiyang Li, and Sergey Levine. Offline reinforcement learning as one big sequence modeling problem. Advances in neural information processing systems, 34:1273– 1286, 2021

  7. [15]

    Online decision transformer

    Qinqing Zheng, Amy Zhang, and Aditya Grover. Online decision transformer. In international conference on machine learning, pages 27042–27059. PMLR, 2022

  8. [16]

    Opal: Of- fline primitive discovery for accelerating offline reinforcement learning

    Anurag Ajay, Aviral Kumar, Pulkit Agrawal, Sergey Levine, and Ofir Nachum. Opal: Of- fline primitive discovery for accelerating offline reinforcement learning. arXiv preprint arXiv:2010.13611, 2020

  9. [17]

    Q-learning decision transformer: Leveraging dynamic programming for conditional sequence modelling in offline rl

    Taku Yamagata, Ahmed Khalil, and Raul Santos-Rodriguez. Q-learning decision transformer: Leveraging dynamic programming for conditional sequence modelling in offline rl. In Interna- tional Conference on Machine Learning, pages 38989–39007. PMLR, 2023

  10. [18]

    Reinformer: Max-return sequence modeling for offline rl

    Zifeng Zhuang, Dengyun Peng, Jinxin Liu, Ziqi Zhang, and Donglin Wang. Reinformer: Max-return sequence modeling for offline rl. arXiv preprint arXiv:2405.08740, 2024. 10

  11. [19]

    Constrained reinforcement learning for short video recommendation

    Qingpeng Cai, Ruohan Zhan, Chi Zhang, Jie Zheng, Guangwei Ding, Pinghua Gong, Dong Zheng, and Peng Jiang. Constrained reinforcement learning for short video recommendation. arXiv preprint arXiv:2205.13248, 2022

  12. [20]

    Choosing the best of both worlds: Diverse and novel recommendations through multi-objective reinforcement learning

    Dusan Stamenkovic, Alexandros Karatzoglou, Ioannis Arapakis, Xin Xin, and Kleomenis Katevas. Choosing the best of both worlds: Diverse and novel recommendations through multi-objective reinforcement learning. In Proceedings of the Fifteenth ACM International Conference on Web ...

  13. [21]

    A survey of multi-objective sequential decision-making

    Diederik M Roijers, Peter Vamplew, Shimon Whiteson, and Richard Dazeley. A survey of multi-objective sequential decision-making. Journal of Artificial Intelligence Research, 48: 67–113, 2013

  14. [22]

    Self-attentive sequential recommendation

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

  15. [23]

    Strec: Sparse transformer for sequential recommendations

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

  16. [24]

    Conditional generative adversarial nets

    Mehdi Mirza and Simon Osindero. Conditional generative adversarial nets. arXiv preprint arXiv:1411.1784, 2014

  17. [25]

    Classifier-free diffusion guidance

    Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance. arXiv preprint arXiv:2207.12598, 2022

  18. [26]

    Learning structured output representation using deep conditional generative models

    Kihyuk Sohn, Honglak Lee, and Xinchen Yan. Learning structured output representation using deep conditional generative models. Advances in neural information processing systems, 28, 2015

  19. [27]

    Multi-objective optimization for long tail recommendation

    Shanfeng Wang, Maoguo Gong, Haoliang Li, and Junwei Yang. Multi-objective optimization for long tail recommendation. Knowledge-Based Systems, 104:145–155, 2016

  20. [28]

    Self-supervised reinforcement learning for recommender systems

    Xin Xin, Alexandros Karatzoglou, Ioannis Arapakis, and Joemon M Jose. Self-supervised reinforcement learning for recommender systems. In Proceedings of the 43rd International ACM SIGIR conference on research and development in Information Retrieval, pages 931–940, 2020

  21. [29]

    Xgboost: A scalable tree boosting system

    Tianqi Chen and Carlos Guestrin. Xgboost: A scalable tree boosting system. In Proceedings of the 22nd acm sigkdd international conference on knowledge discovery and data mining, pages 785–794, 2016

  22. [30]

    Session-based recommendations with recurrent neural networks

    Balázs Hidasi, Alexandros Karatzoglou, Linas Baltrunas, and Domonkos Tikk. Session-based recommendations with recurrent neural networks. arXiv preprint arXiv:1511.06939, 2015

  23. [31]

    Tenrec: A large-scale multipurpose benchmark dataset for rec- ommender systems

    Guanghu Yuan, Fajie Yuan, Yudong Li, Beibei Kong, Shujie Li, Lei Chen, Min Yang, Chenyun Yu, Bo Hu, Zang Li, et al. Tenrec: A large-scale multipurpose benchmark dataset for rec- ommender systems. Advances in Neural Information Processing Systems, 35:11480–11493, 2022. 11 A Pro...

Pith tools

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