Pith. sign in

REVIEW 5 major objections 6 minor 50 references

INTERPOS: Interaction Rhythm Guided Positional Morphing for Mobile App Recommender Systems

T0 review · 5 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read INTERPOS fuses a user's interaction time gaps into positional embeddings, and across seven mobile app datasets its three fusion variants outperform sequential and time-aware baselines on NDCG@K and HIT@K.

desk verdict New idea for time-aware sequential recommendation, but evaluation needs a permutation control and the arithmetic doesn't add up. read the letter →

arxiv 2506.12661 v1 pith:YGLAU4QW submitted 2025-06-14 cs.IR cs.LG

classification cs.IRcs.LG
keywords mobileapprecommendationsequentialpositionembeddinguserinteractionrhythminter-interactiontimegaptransformerself-attentionnext-itempredictiontime-aware
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's central claim is that in mobile app recommendation, the time gaps between a user's consecutive app interactions—what it calls the user's 'rhythm'—carry predictive information that ordinary position embeddings throw away. INTERPOS encodes those gaps as rhythm embeddings and morphs the positional embeddings of a transformer recommender before self-attention, using one of three fusion schemes: basic addition, an MLP projection, or a learned gate. The authors report that across seven mobile app datasets, all three variants beat state-of-the-art sequential and time-aware recommenders by a large margin on NDCG@K and HIT@K, with the largest relative gains on the sparser category-level datasets. If true, this matters because mobile app interaction streams are slower and more irregular than movie or product sequences, and injecting rhythm at the embedding layer may be a cheap way to make autoregressive recommenders sensitive to elapsed time.

What carries the argument

The central object is the rhythm embedding layer $f_\Omega$, which maps each inter-interaction interval $\Delta t_i$ to a vector $R_i$, together with a fusion function that combines the position embedding $\Theta$ with the rhythm embedding $\Omega$. The paper names three fusion strategies: basic fusion ($M = \Theta + \Omega$), MLP fusion ($M = h([\Theta,\Omega])$ with $h: \mathbb{R}^{2d} \to \mathbb{R}^d$), and gated fusion ($M = W \odot \tanh(h_p(\Theta)) + (1-W) \odot \tanh(h_r(\Omega))$, where $W = \sigma(h_c([\Theta,\Omega]))$). The morphed position embeddings $M$ replace $\Theta$ in the input to self-attention, so the mechanism's work is to expose the self-attention layers to elapsed-time information one step earlier than interval-aware attention baselines do.

What would settle it

Retrain any INTERPOS variant on the same seven splits after replacing each user's inter-interaction gaps with gaps drawn from other users' histories, keeping the rhythm embedding table and fusion-layer sizes identical; if NDCG@20 stays within noise of the reported values, the rhythm content itself is not what drives the improvement.

Watch

Extended reading notes

Core claim

On the paper's own terms, the discovery is that a user's interaction rhythm—the sequence of inter-interaction intervals $\Delta t_i = t_i - t_{i-1}$ over an activity window—is a learnable signal that can be fused with absolute position embeddings to make a transformer-based sequential recommender predict the next app more accurately. Rather than making attention itself time-aware, as interval-aware baselines do, INTERPOS injects the rhythm at the input embedding layer, producing morphed position embeddings $M$ that replace the standard position term in $E = \Psi + \Theta$. The paper claims this early fusion captures the long, irregular gaps typical of mobile app usage and consistently outperforms all baselines on seven datasets, with relative improvements in NDCG@10 as large as 157–158% over the best baseline on the Action category.

Load-bearing premise

The paper assumes the measured gains come from the time-gap information itself, rather than from the extra rhythm embedding table and fusion layers, because no equal-capacity control without rhythm information is evaluated.

Editorial extensions

If this is right

  • On the six sparse MobileRec category datasets, the LightSANs-based INTERPOS variants produce the largest relative gains, with NDCG@10 improvements of 157–158% over the best baseline on Action.
  • On the full 48-category MobileRec dataset, gains are smaller but still consistent: INTERPOS-GF improves NDCG@10 by 8.04% and HIT@10 by 12.20% over SASRec.
  • Because INTERPOS fuses rhythm before self-attention, the same morphed-embedding mechanism can be added to other autoregressive transformer recommenders without changing their attention layers.
  • Across datasets there is no single winning fusion strategy, so the choice among basic, MLP, and gated fusion should depend on the data distribution and the evaluation metric.

Reading between the lines

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

  • Beyond the paper's experiments, the same embedding-stage fusion should transfer to other domains with irregular inter-event times, such as news reading, health tracking, or financial transactions, where order-only positional encodings are equally blind to elapsed time.
  • Beyond the paper's reported datasets, the gap between the huge relative gains on short category sequences and the modest gains on full MobileRec suggests the benefit scales with sequence sparsity, which could be tested by varying the maximum sequence length and the gap distribution.
  • Beyond the paper's choices, a continuous rhythm encoding could replace the clipped lookup table (category gaps normalized by 0.2, MobileRec gaps clipped at 800) to test whether the model exploits fine-grained interval differences or just a few coarse regimes.
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

5 major / 6 minor

Summary. The paper proposes INTERPOS, a family of positional-morphing strategies that inject user interaction rhythm (time gaps between consecutive interactions) into the position embeddings of autoregressive Transformer-based sequential recommenders. Three fusion mechanisms are introduced: basic additive fusion (BF), MLP-based fusion (MF), and gated fusion (GF). INTERPOS is integrated into LightSANs and SASRec and evaluated on seven mobile app recommendation datasets (six category subsets of MobileRec plus the full MobileRec) using NDCG@K and HIT@K. The authors report large relative gains over strong sequential and time-aware baselines, and they release the source code.

Significance. If the reported gains are attributable to the rhythm signal, the paper would make a useful contribution: it demonstrates that temporal gap information is better injected at the embedding layer for sparse, slow-paced mobile app interaction sequences, where existing time-aware self-attention mechanisms underperform. The work also extends evaluation to a relatively underexplored domain. The paper provides open-source code, evaluates on seven datasets including a large-scale dataset, and includes time-aware baselines such as TiSASRec and FEARec, which is commendable. However, the central interpretation—that the improvements are driven by rhythm information rather than by added model capacity—is not yet supported by the experimental design.

major comments (5)
  1. [Section V, 'Summary of Results' and Section IV.A] The central claim that interaction rhythm drives the large improvements is not isolated from the increase in model capacity. Every INTERPOS variant adds parameters beyond the base model: a rhythm embedding table whose size depends on the maximum normalized time gap, and for MF and GF one or more MLP/gating layers. The baselines do not have these parameters. Report a capacity-matched control, for example by permuting the Δt values within each user sequence while keeping the architecture and parameter count identical. If performance remains at the reported INTERPOS level after permutation, the gains cannot be attributed to rhythm; if it drops to the base LightSANs/SASRec level, the rhythm signal is shown to be load-bearing. Also test an equal-capacity variant that replaces the rhythm embedding table with a randomly initialized learnable table independent of Δt.
  2. [Section IV.A and Section V, 'Summary of Results'] If the authors keep the significance claim, they must report the test procedure and the resulting p-values; otherwise the claim is unverifiable.
  3. [Section V, 'Performance on RolePlaying dataset' and Section I] These inconsistencies undermine the reader's ability to trust the quantitative claims, even though the direction of the results is consistent.
  4. [Section IV.A, 'Experimental Setup'] This is important because the method is specifically about temporal gaps; a non-chronological split could artificially favor models that use time information.
  5. [Section IV.A, last paragraph] The normalization factor (0.2) and clipping threshold (800) for the interaction rhythm are chosen constants, and no sensitivity analysis is provided. The paper should report how performance varies with these hyperparameters over a reasonable range, since they directly control the granularity of the rhythm embedding space. Without this analysis, the robustness of the method to these two free parameters is unclear.
minor comments (6)
  1. [Section II] In the definition of absolute positions, the set is written as P = {P1, P1, ..., Pn}, where 'P1' is repeated; this appears to be a typo for P2.
  2. [Section IV.B] The list of selected categories reads 'including (Action, RolePlaying, Puzzle, Casual, Simulation, Strategy, and Simulation)' — 'Simulation' is listed twice; the set of six categories plus the full MobileRec should be stated correctly.
  3. [Section V, 'Performance on Casual dataset'] There is a typo 'INTREPOS-MF' that should be 'INTERPOS-MF'.
  4. [Section V, 'Summary of Results'] The sentence 'the results of these strategies are statistically insignificant when compared with with another' contains a duplicated 'with' and a grammatical error; also 'another' should be 'each other'.
  5. [Section I and Section V] The percentage values quoted for improvements on the Action dataset in the Introduction appear to be a mixture of NDCG@10 and NDCG@20 values; please separate them clearly and align them with the tables.
  6. [Figure 2] Figure 2 reports the percentage of same-day interactions but does not show the actual values or the number of consecutive-interaction pairs per dataset; adding these details would improve reproducibility and interpretability.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity; INTERPOS's rhythm embeddings are derived from timestamps and evaluated on external ranking metrics, and the missing capacity-control ablation is an experimental concern rather than a circular step.

full rationale

INTERPOS's construction chain is transparent and non-circular: user timestamps define Δti = ti − ti−1 (Eq. 5), fΩ maps these gaps to a learnable rhythm embedding Ω (Eq. 6), and the morphed position M is a deterministic fusion f(Θ,Ω) of the absolute position Θ and rhythm embedding (Eqs. 7–13). The downstream next-item prediction is trained with cross-entropy and evaluated with NDCG@K and HIT@K, neither of which is defined in terms of the rhythm embedding or the fusion parameters. No fitted parameter is renamed as a prediction: the model's output is the next app, and the rhythm signal is an input feature. The only self-citation, MobileRec [29], supplies the benchmark dataset and does not justify the method; it is not load-bearing. The lack of a parameter-matched or permutation ablation means the reported gains are not fully attributed to the rhythm signal, but that is an experimental confound, not a circular derivation. Therefore the paper does not exhibit definitional, fitted-input, or self-citation circularity.

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

The central claim depends on the assumption that time gaps are informative, that fusing them into position embeddings is an effective encoding, and that the evaluation protocol is leakage-free. The only fitted inputs are the normalization and clipping constants, which are ad hoc and not justified with sensitivity analysis.

free parameters (2)
  • Rhythm normalization factor = 0.2
    Used to scale interaction time differences for the six category datasets; chosen without reported sensitivity analysis, and the value directly affects the rhythm embedding input.
  • Rhythm clipping threshold = 800
    Used to clip interaction time differences for the MobileRec dataset; chosen without reported sensitivity analysis, and the value directly affects the rhythm embedding input.
assumptions (3)
  • domain assumption Time intervals between consecutive app interactions carry predictive signal for the next app.
    Motivates the entire method; if intervals are noise, the rhythm embedding cannot help.
  • ad hoc to paper Fusing rhythm embeddings with position embeddings via addition, MLP, or gating is an effective way for transformers to exploit temporal gaps.
    Architectural assumption specific to this method; not proven by theory or a controlled ablation.
  • domain assumption The evaluation protocol (leave-one-out on the full item set) reflects the true next-app prediction task.
    If the split is not chronological, results could be inflated by future information leakage.

how reviews work

0 comments
Cite this review

Pith. "Pith review of INTERPOS: Interaction Rhythm Guided Positional Morphing for Mobile App Recommender Systems." pith.science (2026). https://pith.science/paper/YGLAU4QW

@misc{pith2026250612661,
  author       = {Pith},
  title        = {Pith review of: INTERPOS: Interaction Rhythm Guided Positional Morphing for Mobile App Recommender Systems},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/YGLAU4QW}},
  note         = {Machine review of arXiv:2506.12661}
}
read the original abstract

The mobile app market has expanded exponentially, offering millions of apps with diverse functionalities, yet research in mobile app recommendation remains limited. Traditional sequential recommender systems utilize the order of items in users' historical interactions to predict the next item for the users. Position embeddings, well-established in transformer-based architectures for natural language processing tasks, effectively distinguish token positions in sequences. In sequential recommendation systems, position embeddings can capture the order of items in a user's historical interaction sequence. Nevertheless, this ordering does not consider the time elapsed between two interactions of the same user (e.g., 1 day, 1 week, 1 month), referred to as "user rhythm". In mobile app recommendation datasets, the time between consecutive user interactions is notably longer compared to other domains like movies, posing significant challenges for sequential recommender systems. To address this phenomenon in the mobile app domain, we introduce INTERPOS, an Interaction Rhythm Guided Positional Morphing strategy for autoregressive mobile app recommender systems. INTERPOS incorporates rhythm-guided position embeddings, providing a more comprehensive representation that considers both the sequential order of interactions and the temporal gaps between them. This approach enables a deep understanding of users' rhythms at a fine-grained level, capturing the intricacies of their interaction patterns over time. We propose three strategies to incorporate the morphed positional embeddings in two transformer-based sequential recommendation system architectures. Our extensive evaluations show that INTERPOS outperforms state-of-the-art models using 7 mobile app recommendation datasets on NDCG@K and HIT@K metrics. The source code of INTERPOS is available at https://github.com/dlgrad/INTERPOS.

Figures

Figures reproduced from arXiv: 2506.12661 by the authors.

Figure 1
Figure 1. INTERPOS considers user interaction rhythm with [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Percentage of consecutive user interactions on the same [PITH_FULL_IMAGE:figures/full_fig_p002_2.png] view at source ↗
Figure 3
Figure 3. Overview of INTERPOS Fusion Architectures. III. APPROACH First, we conceptualize and represent the mathematical formulation of our proposed approach. A. User’s Interaction Rhythm A user-item interaction is represented by a sequence S Ui for a user Ui . We assume that a user’s interaction sequence emerges across a particular period, and we call it the Activity Window. Referring back to Equation 1, we can rewrite the … view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

50 extracted references · 35 canonical work pages

  1. [1]

    Apple app store,

    Apple, “Apple app store,” https://apps.apple.com/, 2024, accessed: 2024- 01-06

  2. [2]

    Google play store,

    Google, “Google play store,” https://play.google.com/store/apps, 2022, accessed: 2024-01-06

  3. [3]

    Number of apps available in leading app store,

    L. Ceci, “Number of apps available in leading app store,” https://www.statista.com/statistics/276623/ number-of-apps-available-in-leading-app-stores/, accessed: 2024- 01-06

  4. [4]

    Image-based recommendations on styles and substitutes,

    J. McAuley, C. Targett, Q. Shi, and A. Van Den Hengel, “Image-based recommendations on styles and substitutes,” in Proceedings of the 38th international ACM SIGIR conference on research and development in information retrieval, 2015, pp. 43–52

  5. [5]

    Ups and downs: Modeling the visual evolution of fashion trends with one-class collaborative filtering,

    R. He and J. McAuley, “Ups and downs: Modeling the visual evolution of fashion trends with one-class collaborative filtering,” in proceedings of the 25th international conference on world wide web , 2016, pp. 507– 517

  6. [6]

    Justifying recommendations using distantly-labeled reviews and fine-grained aspects,

    J. Ni, J. Li, and J. McAuley, “Justifying recommendations using distantly-labeled reviews and fine-grained aspects,” in Proceedings of the 2019 conference on empirical methods in natural language pro- cessing and the 9th international joint conference on natural language processing (EMNLP-IJCNLP), 2019, pp. 188–197

  7. [7]

    The movielens datasets: History and context,

    F. M. Harper and J. A. Konstan, “The movielens datasets: History and context,” Acm transactions on interactive intelligent systems (tiis), vol. 5, no. 4, pp. 1–19, 2015

  8. [8]

    Time interval aware self-attention for sequential recommendation,

    J. Li, Y . Wang, and J. McAuley, “Time interval aware self-attention for sequential recommendation,” in Proceedings of the 13th international conference on web search and data mining , 2020, pp. 322–330

Show all 50 references
  1. [9]

    Frequency enhanced hybrid attention network for sequential recommendation,

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

  2. [10]

    Lighter and better: low-rank decomposed self-attention networks for next-item recommendation,

    X. Fan, Z. Liu, J. Lian, W. X. Zhao, X. Xie, and J.-R. Wen, “Lighter and better: low-rank decomposed self-attention networks for next-item recommendation,” in Proceedings of the 44th international ACM SIGIR conference on research and development in information retrieval , 2021...

  3. [11]

    Self-attentive sequential recommenda- tion,

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

  4. [12]

    Attention is all you need,

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

  5. [13]

    Improving language understanding by generative pre-training,

    A. Radford, K. Narasimhan, T. Salimans, I. Sutskever et al., “Improving language understanding by generative pre-training,” 2018

  6. [14]

    Exploring the limits of transfer learning with a unified text-to-text transformer,

    A. Roberts, C. Raffel, K. Lee, M. Matena, N. Shazeer, P. J. Liu, S. Narang, W. Li, and Y . Zhou, “Exploring the limits of transfer learning with a unified text-to-text transformer,” 2019

  7. [15]

    Bert: Pre-training of deep bidirectional transformers for language understanding,

    J. Devlin, M.-W. Chang, K. Lee, and K. Toutanova, “Bert: Pre-training of deep bidirectional transformers for language understanding,” arXiv preprint arXiv:1810.04805, 2018

  8. [16]

    Xlnet: Generalized autoregressive pretraining for language understanding,

    Z. Yang, Z. Dai, Y . Yang, J. Carbonell, R. R. Salakhutdinov, and Q. V . Le, “Xlnet: Generalized autoregressive pretraining for language understanding,” Advances in neural information processing systems , vol. 32, 2019

  9. [17]

    Ctrl: A conditional transformer language model for controllable gen- eration,

    N. S. Keskar, B. McCann, L. R. Varshney, C. Xiong, and R. Socher, “Ctrl: A conditional transformer language model for controllable gen- eration,” arXiv preprint arXiv:1909.05858 , 2019

  10. [18]

    Unified language model pre-training for natural language understanding and generation,

    L. Dong, N. Yang, W. Wang, F. Wei, X. Liu, Y . Wang, J. Gao, M. Zhou, and H.-W. Hon, “Unified language model pre-training for natural language understanding and generation,” Advances in neural information processing systems , vol. 32, 2019

  11. [19]

    Roberta: A robustly optimized bert pretraining approach,

    Y . Liu, M. Ott, N. Goyal, J. Du, M. Joshi, D. Chen, O. Levy, M. Lewis, L. Zettlemoyer, and V . Stoyanov, “Roberta: A robustly optimized bert pretraining approach,” arXiv preprint arXiv:1907.11692 , 2019

  12. [20]

    Deberta: Decoding-enhanced bert with disentangled attention,

    P. He, X. Liu, J. Gao, and W. Chen, “Deberta: Decoding-enhanced bert with disentangled attention,” arXiv preprint arXiv:2006.03654 , 2020

  13. [21]

    Improved recurrent neural networks for session-based recommendations,

    Y . K. Tan, X. Xu, and Y . Liu, “Improved recurrent neural networks for session-based recommendations,” in Proceedings of the 1st workshop on deep learning for recommender systems , 2016, pp. 17–22

  14. [22]

    Sparse- interest network for sequential recommendation,

    Q. Tan, J. Zhang, J. Yao, N. Liu, J. Zhou, H. Yang, and X. Hu, “Sparse- interest network for sequential recommendation,” in Proceedings of the 14th ACM international conference on web search and data mining , 2021, pp. 598–606

  15. [23]

    Hierarchical gating networks for sequential recommendation,

    C. Ma, P. Kang, and X. Liu, “Hierarchical gating networks for sequential recommendation,” in Proceedings of the 25th ACM SIGKDD interna- tional conference on knowledge discovery & data mining , 2019, pp. 825–833

  16. [24]

    Graph contextualized self-attention network for session-based recommendation

    C. Xu, P. Zhao, Y . Liu, V . S. Sheng, J. Xu, F. Zhuang, J. Fang, and X. Zhou, “Graph contextualized self-attention network for session-based recommendation.” in IJCAI, vol. 19, 2019, pp. 3940–3946

  17. [25]

    Bert4rec: Sequential recommendation with bidirectional encoder representations from transformer,

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

  18. [26]

    Recbole: Towards a unified, comprehensive and efficient framework for recommendation algorithms,

    W. X. Zhao, S. Mu, Y . Hou, Z. Lin, Y . Chen, X. Pan, K. Li, Y . Lu, H. Wang, C. Tian, Y . Min, Z. Feng, X. Fan, X. Chen, P. Wang, W. Ji, Y . Li, X. Wang, and J. Wen, “Recbole: Towards a unified, comprehensive and efficient framework for recommendation algorithms,” in CIKM. AC...

  19. [27]

    Towards a more user-friendly and easy-to-use benchmark library for recommender systems,

    L. Xu, Z. Tian, G. Zhang, J. Zhang, L. Wang, B. Zheng, Y . Li, J. Tang, Z. Zhang, Y . Hou, X. Pan, W. X. Zhao, X. Chen, and J.-R. Wen, “Towards a more user-friendly and easy-to-use benchmark library for recommender systems,” 2023, p. 2837–2847

  20. [28]

    Recbole 2.0: Towards a more up-to-date recommendation library,

    W. X. Zhao, Y . Hou, X. Pan, C. Yang, Z. Zhang, Z. Lin, J. Zhang, S. Bian, J. Tang, W. Sun et al., “Recbole 2.0: Towards a more up-to-date recommendation library,” in Proceedings of the 31st ACM International Conference on Information & Knowledge Management, 2022, pp. 4722– 4726

  21. [29]

    Mobilerec: A large scale dataset for mobile apps recommendation,

    M. H. Maqbool, U. Farooq, A. Mosharrof, A. B. Siddique, and H. Foroosh, “Mobilerec: A large scale dataset for mobile apps recommendation,” p. 3007–3016, 2023. [Online]. Available: https://doi.org/10.1145/3539618.3591906

  22. [30]

    Personalized complementary product recommendation,

    A. Yan, C. Dong, Y . Gao, J. Fu, T. Zhao, Y . Sun, and J. McAuley, “Personalized complementary product recommendation,” in Companion Proceedings of the Web Conference 2022 , 2022, pp. 146–151

  23. [31]

    Attentive sequential models of latent intent for next item recommen- dation,

    M. M. Tanjim, C. Su, E. Benjamin, D. Hu, L. Hong, and J. McAuley, “Attentive sequential models of latent intent for next item recommen- dation,” in Proceedings of The Web Conference 2020 , 2020, pp. 2528– 2534

  24. [32]

    Mind: A large-scale dataset for news recommendation,

    F. Wu, Y . Qiao, J.-H. Chen, C. Wu, T. Qi, J. Lian, D. Liu, X. Xie, J. Gao, W. Wu et al., “Mind: A large-scale dataset for news recommendation,” in Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, 2020, pp. 3597–3606

  25. [33]

    Jointly modeling aspects, ratings and sentiments for movie recommendation (jmars),

    Q. Diao, M. Qiu, C.-Y . Wu, A. J. Smola, J. Jiang, and C. Wang, “Jointly modeling aspects, ratings and sentiments for movie recommendation (jmars),” in Proceedings of the 20th ACM SIGKDD international con- ference on Knowledge discovery and data mining , 2014, pp. 193–202

  26. [34]

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

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

  27. [35]

    Fusing similarity models with markov chains for sparse sequential recommendation,

    R. He and J. McAuley, “Fusing similarity models with markov chains for sparse sequential recommendation,” in 2016 IEEE 16th international conference on data mining (ICDM) . IEEE, 2016, pp. 191–200

  28. [36]

    Core: simple and effective session-based recommendation within consistent representation space,

    Y . Hou, B. Hu, Z. Zhang, and W. X. Zhao, “Core: simple and effective session-based recommendation within consistent representation space,” in Proceedings of the 45th international ACM SIGIR conference on research and development in information retrieval, 2022, pp. 1796–1801

  29. [37]

    Repeatnet: A repeat aware neural recommendation machine for session-based recommendation,

    P. Ren, Z. Chen, J. Li, Z. Ren, J. Ma, and M. De Rijke, “Repeatnet: A repeat aware neural recommendation machine for session-based recommendation,” in Proceedings of the AAAI Conference on Artificial Intelligence, vol. 33, no. 01, 2019, pp. 4806–4813

  30. [38]

    Stamp: short-term attention/memory priority model for session-based recommendation,

    Q. Liu, Y . Zeng, R. Mokhosi, and H. Zhang, “Stamp: short-term attention/memory priority model for session-based recommendation,” in Proceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining , 2018, pp. 1831–1839

  31. [39]

    S3-rec: Self-supervised learning for sequential recom- mendation with mutual information maximization,

    K. Zhou, H. Wang, W. X. Zhao, Y . Zhu, S. Wang, F. Zhang, Z. Wang, and J.-R. Wen, “S3-rec: Self-supervised learning for sequential recom- mendation with mutual information maximization,” in Proceedings of the 29th ACM international conference on information & knowledge managem...

  32. [40]

    Personalized top-n sequential recommendation via convolutional sequence embedding,

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

  33. [41]

    Parallel recurrent neural network architectures for feature-rich session-based recommen- dations,

    B. Hidasi, M. Quadrana, A. Karatzoglou, and D. Tikk, “Parallel recurrent neural network architectures for feature-rich session-based recommen- dations,” in Proceedings of the 10th ACM conference on recommender systems, 2016, pp. 241–248

  34. [42]

    Sequential recommender system based on hierarchical attention network,

    H. Ying, F. Zhuang, F. Zhang, Y . Liu, G. Xu, X. Xie, H. Xiong, and J. Wu, “Sequential recommender system based on hierarchical attention network,” in IJCAI International Joint Conference on Artificial Intelligence, 2018

  35. [43]

    A simple convolutional generative network for next item recommendation,

    F. Yuan, A. Karatzoglou, I. Arapakis, J. M. Jose, and X. He, “A simple convolutional generative network for next item recommendation,” in Proceedings of the twelfth ACM international conference on web search and data mining , 2019, pp. 582–590

  36. [44]

    Feature-level deeper self-attention network for sequential recom- mendation

    T. Zhang, P. Zhao, Y . Liu, V . S. Sheng, J. Xu, D. Wang, G. Liu, X. Zhou et al., “Feature-level deeper self-attention network for sequential recom- mendation.” in IJCAI, 2019, pp. 4320–4326

  37. [45]

    Session-based recommendation with graph neural networks,

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

  38. [46]

    Npe: neural personalized embedding for collaborative filtering,

    T. Nguyen and A. Takasu, “Npe: neural personalized embedding for collaborative filtering,” arXiv preprint arXiv:1805.06563 , 2018

  39. [47]

    Augmenting sequential rec- ommendation with pseudo-prior items via reversely pre-training trans- former,

    Z. Liu, Z. Fan, Y . Wang, and P. S. Yu, “Augmenting sequential rec- ommendation with pseudo-prior items via reversely pre-training trans- former,” in Proceedings of the 44th international ACM SIGIR conference on Research and development in information retrieval , 2021, pp. 1608– 1612

  40. [48]

    App- aware response synthesis for user reviews,

    U. Farooq, A. B. Siddique, F. Jamour, Z. Zhao, and V . Hristidis, “App- aware response synthesis for user reviews,” in 2020 IEEE International Conference on Big Data (Big Data) , 2020, pp. 699–708

  41. [49]

    Proactive prioritization of app issues via contrastive learning,

    M. Fereidouni, A. Mosharrof, U. Farooq, and A. Siddique, “Proactive prioritization of app issues via contrastive learning,” in 2022 IEEE International Conference on Big Data (Big Data) , 2022, pp. 535–544

  42. [50]

    Mobileconvrec: A conversational dataset for mobile apps recommendations,

    S. Maji, M. Fereidouni, V . Chhetri, U. Farooq, and A. B. Siddique, “Mobileconvrec: A conversational dataset for mobile apps recommendations,” 2024. [Online]. Available: https://arxiv.org/abs/2405. 17740

Pith tools

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