REVIEW 3 major objections 5 minor 1 cited by
NLGCL: Naturally Existing Neighbor Layers Graph Contrastive Learning for Recommendation
T0 review · 3 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read This paper claims that graph contrastive learning for recommendation can be built from the naturally existing views between adjacent GNN layers, without augmentation, and reports consistent gains in accuracy and speed on four public…
desk verdict A genuinely useful augmentation-free contrastive view idea with believable empirical gains, but the appendix proof of Theorem 1 is invalid and the first-G choice is currently ungrounded; worth a serious referee only if the authors fix or drop that theorem. 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 central object is the neighbor-layer contrastive pair: for each user $u$ at layer $l-1$, the positive set is $\{e^{(l)}_{\tilde i}: \tilde i \in \mathcal N_u\}$, the next-layer embeddings of items $u$ interacted with, and symmetrically for items. Message passing makes each next-layer neighbor embedding a weighted aggregation that includes the anchor node itself, so the pair is semantically linked rather than randomly augmented. The final objective adds this neighbor-layer InfoNCE-style loss to the BPR ranking loss and an L2 regularizer, with a hyperparameter $G$ controlling how many of the $L$ layer groups are used. This mechanism carries the argument by supplying the positive signal for free: no augmented graph, no noise injection, and no extra view storage.
What would settle it
Estimate the mutual information (or a practical proxy such as the cosine similarity between layer-$l$ and layer-$(l+1)$ embeddings) on Yelp and Pinterest and check whether it decreases monotonically as $l$ grows; if it does not, Theorem 1 is false. A second check: train NLGCL with $G$ chosen from layers 2 through 4 instead of the first $G$ layers; if later-layer views ever match or beat the first-$G$ choice, the paper's central design rule is falsified.
Extended reading notes
Core claim
The paper claims that adjacent layers of a LightGCN-style encoder form contrastive views naturally: layer $l-1$ embeddings of a user or item are positively paired with layer $l$ embeddings of its neighbors, because those neighbor embeddings are aggregated from the same node and semantically similar users or items. All other nodes serve as negatives, either restricted to same-type nodes in the heterogeneous scope or spanning all users and items in the entire scope. The contrastive loss is averaged over the first $G$ layer groups, a selection justified by a theorem asserting that earlier-layer views carry more mutual information. On four public datasets, the method is reported to outperform all compared baselines on Recall@K and NDCG@K, including augmentation-based contrastive learning methods, while converging in less wall-clock time.
Load-bearing premise
The argument that only the first $G$ layer groups should be used depends on the theorem that earlier-layer contrastive views are always more informative; if that theorem does not hold, the layer-selection rule is unproven, though the empirical method could still be useful.
Editorial extensions
If this is right
- Graph contrastive learning for collaborative filtering can be defined without any augmentation operator; the encoder's own layer outputs already supply the positives and negatives.
- Training cost drops substantially: on Yelp, the heterogeneous-scope NLGCL converged in 49 minutes with NDCG@10 of 0.0713, while the strongest augmentation-based competitor took over four hours.
- Treating all nodes as negatives in the entire scope is consistently worse than restricting negatives to same-type nodes in the heterogeneous scope, so cross-type negatives add semantic noise rather than signal.
- The number $G$ of layer groups acts as a direct accuracy-efficiency dial: $G=2$ was optimal on all four datasets, and even $G=1$ already exceeded every baseline in the comparison.
Reading between the lines
- Beyond the paper, the same neighbor-layer objective should transfer to any GNN-based encoder, not just the LightGCN backbone, because the positive pairs are read off the forward pass; this is a testable extension the authors do not run.
- The reported uniformity of learned embeddings suggests a direct test of popularity-bias reduction: compare long-tail item Recall for NLGCL against SimGCL on the same four datasets.
- If Theorem 1 does not survive scrutiny, an alternative design is to learn per-layer-group weights rather than committing to the first $G$ groups, which could adapt to datasets of different densities.
- Validating the optimal $G=2$ on a held-out split or additional datasets would clarify whether the layer-group count is a stable property of the approach or a per-dataset tuning artifact.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes NLGCL, a graph contrastive learning method for collaborative filtering that avoids explicit data augmentation by using the embeddings produced at adjacent GNN layers as naturally existing contrastive views. Positive pairs are formed between a node at layer l-1 and its neighbors at layer l, while negatives are other nodes in the layer-l view; a heterogeneous and an entire scope are defined. The method is evaluated on four datasets and is reported to outperform state-of-the-art CF and CL baselines in both ranking metrics and training efficiency. The authors also claim a theoretical proof, in Theorem 1 of Appendix A.1, that the first G layer groups are the optimal choice for contrastive learning.
Significance. If the empirical results hold, the paper makes a useful practical contribution: an augmentation-free contrastive objective that reuses GNN layer outputs, reducing the storage and computation overhead of view construction while improving accuracy. The experiments are broad (four datasets, eleven baselines), the improvements are consistent, and the authors provide code. The main weakness is that the theoretical justification for the architecture choice, Theorem 1, is invalid as stated. The empirical claims may still stand, but the paper currently overstates its theoretical support. The central method is simple and plausible, so the contribution is worth considering after a major revision that repairs or removes the faulty proof and replaces it with direct evidence for the first-G design choice.
major comments (3)
- [Section 4.2 / Appendix A.1] The proof of Theorem 1 is invalid, and the theorem is load-bearing because Section 4.2 states that the first G groups are optimal 'by theoretical proof.' In Eq. (13), the Gaussian mutual information formula is written as 1/2 log(|Σ(l-1)|/|Σ(l)|), but for jointly Gaussian variables the correct expression is 1/2 log(|Σ_X||Σ_Y|/|Σ_XY|). For the deterministic map E(l) = ÃE(l-1), Eq. (14) substitutes Σ(l) = òΣ(l-1), whereas the covariance update is Σ(l) = ÃΣ(l-1)Ãᵀ; the simplification assumes commutativity and ignores the cross-covariance term. Eq. (15) then yields an expression independent of l, directly contradicting the claimed O(λ_max^{2l}) decay. The theorem's conclusion therefore has no valid derivation, and the architecture choice G ≤ L and the associated efficiency argument are not theoretically grounded.
- [Appendix A.1, Lemma 1] The entropy-reduction lemma is not proven as stated. The proof invokes the entropy-power inequality, which applies to sums of independent random variables under additive noise, but the propagation E(l) = ÃE(l-1) is a deterministic linear transformation. The inequality does not apply in this setting without additional assumptions, and the covariance update used in the proof is again incorrect because Cov(ÃE) = ÃCov(E)Ãᵀ, not òCov(E). The lemma needs a correct proof or should be removed.
- [Section 4.2 / Theorem 1] Even if a correct statement that I(E(l-1);E(l)) decreases with l were available, it would not establish that lower-layer contrastive pairs are 'more effective' for contrastive learning. The proof asserts without derivation that the signal-to-noise ratio is proportional to this mutual information and that this translates directly to recommendation performance. This missing link is central to the claim that the first G groups are optimal. The paper should either provide a rigorous connection between layerwise mutual information and the InfoNCE objective or replace the theoretical claim with an empirical study. Figure 6 only varies G for the first G groups; it does not compare first-G groups against last-G or randomly selected groups, so the claimed optimality of the first groups is not empirically established either.
minor comments (5)
- [Section 5.2, Observation1] The quoted NDCG@10 improvements do not match Table 3: for Pinterest the 5.69% value corresponds to NDCG@20, for QB-Video the 2.52% value is NDCG@20, and for Alibaba the 12.11% value is NDCG@20; the text should report the corresponding NDCG@10 values or clarify which metric is used.
- [Table 4, Alibaba block] The N@10 values listed for NCL (0.0477) and LightGCL (0.0459) are identical to their Recall@10 values in Table 3, while the NDCG@10 values in Table 3 are 0.0259 and 0.0239, respectively; the table appears to have mixed in Recall values, so the efficiency comparison needs to be corrected.
- [Figure 3] The second subplot is labeled 'Time on QB-Video/minutes' but the text and the surrounding figure panels indicate that the second dataset is Pinterest; the axis labels and panel ordering should be checked and corrected.
- [Equations (6)-(9)] The use of a product symbol inside the logarithm for the positive-pair terms is unusual for an InfoNCE-style loss; if a sum over positive samples is intended, the notation should be changed to a sum, and the normalization by 1/|N_u| should be explained.
- [Section 2.1] The notation R+ ∈ {R_u,i | u ∈ U, i ∈ I, R_u,i = 1} is ambiguous because R+ is described as a matrix but the set contains scalar entries; it would be clearer to define the sets of observed and unobserved interaction entries directly.
Circularity Check
No circular derivation: the CL objective is trained jointly with BPR, no fitted value is renamed as a prediction, and self-citations are related-work only.
full rationale
NLGCL's central empirical claim (outperforming baselines on four datasets) is established by held-out evaluation against external benchmarks, not by construction from its own loss. The contrastive loss is a regularizer trained jointly with the BPR loss, so there is no fitted parameter that is later 'predicted.' The positive-pair definition (a node with its next-layer neighbors) is a structural choice derived from GCN message passing rather than a quantity fitted to the target metric; the statement that such pairs are semantically relevant follows from the aggregation equation but does not by itself force the reported accuracy improvements. Related-work citations to the authors' own prior papers are contextual and not load-bearing for the method's correctness. The Appendix A.1 proof of Theorem 1 contains mathematical errors (the Gaussian MI formula and the l-independent expression in Eq. 15), but an invalid proof is a correctness or rigor issue, not circularity: Theorem 1 is not assumed as an input, and the paper does not cite an external uniqueness theorem from the authors to forbid alternatives. The efficiency analysis is a complexity comparison, and the empirical efficiency results are measured. Hence no step in the derivation chain reduces, by definition or by self-citation, to its own inputs.
Assumptions & free parameters
free parameters (6)
- lambda_1 (CL loss weight) =
1e-5 (optimal on all datasets)
- tau (temperature) =
0.2
- L (number of GNN layers) =
2 (Yelp, Alibaba), 3 (Pinterest, QB-Video)
- G (number of contrastive view groups) =
2 (all datasets)
- lambda_2 (L2 regularization weight) =
1e-4
- embedding size d =
64
assumptions (4)
- ad hoc to paper Entropy reduction via low-pass filtering: propagation E^(l) = A_tilde E^(l-1) reduces entropy, i.e., H(E^(l)) <= H(E^(l-1)).
- domain assumption Users and items with similar interaction histories share similar semantic information after neighbor aggregation.
- standard math The normalized adjacency matrix A_tilde has eigenvalues bounded by 1, with lambda_max < 1, so that propagation acts as a contraction.
- domain assumption Mutual information between adjacent layers can be computed via Gaussian differential entropy formula.
Cite this review
Pith. "Pith review of NLGCL: Naturally Existing Neighbor Layers Graph Contrastive Learning for Recommendation." pith.science (2026). https://pith.science/paper/ERXMV33L
@misc{pith2026250707522,
author = {Pith},
title = {Pith review of: NLGCL: Naturally Existing Neighbor Layers Graph Contrastive Learning for Recommendation},
year = {2026},
howpublished = {\url{https://pith.science/paper/ERXMV33L}},
note = {Machine review of arXiv:2507.07522}
}
read the original abstract
Graph Neural Networks (GNNs) are widely used in collaborative filtering to capture high-order user-item relationships. To address the data sparsity problem in recommendation systems, Graph Contrastive Learning (GCL) has emerged as a promising paradigm that maximizes mutual information between contrastive views. However, existing GCL methods rely on augmentation techniques that introduce semantically irrelevant noise and incur significant computational and storage costs, limiting effectiveness and efficiency. To overcome these challenges, we propose NLGCL, a novel contrastive learning framework that leverages naturally contrastive views between neighbor layers within GNNs. By treating each node and its neighbors in the next layer as positive pairs, and other nodes as negatives, NLGCL avoids augmentation-based noise while preserving semantic relevance. This paradigm eliminates costly view construction and storage, making it computationally efficient and practical for real-world scenarios. Extensive experiments on four public datasets demonstrate that NLGCL outperforms state-of-the-art baselines in effectiveness and efficiency.
Figures
Figures from the paper (3 more)
Forward citations
Cited by 1 Pith paper
-
The Best is Yet to Come: Graph Convolution in the Testing Phase for Multimodal Recommendation
A multimodal recommender that trains without graph convolution and applies it only at test time outperforms graph-trained baselines while training much faster.
Reference graph
Works this paper leans on
-
[1]
Markus Bayer, Marc-André Kaufhold, and Christian Reuter. 2022. A survey on data augmentation for text classification. Comput. Surveys 55, 7 (2022), 1–39
work page 2022
-
[2]
Xuheng Cai, Chao Huang, Lianghao Xia, and Xubin Ren. 2023. LightGCL: Simple Yet Effective Graph Contrastive Learning for Recommendation. In The Eleventh International Conference on Learning Representations
2023
-
[3]
Lei Chen, Le Wu, Richang Hong, Kun Zhang, and Meng Wang. 2020. Revisiting graph based collaborative filtering: A linear residual graph convolutional network approach. In Proceedings of the AAAI conference on artificial intelligence , Vol. 34. 27–34
work page 2020
-
[4]
Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. 2020. A simple framework for contrastive learning of visual representations. In Interna- tional conference on machine learning . PMLR, 1597–1607
2020
-
[5]
Tong Chen, Hongzhi Yin, Jing Long, Quoc Viet Hung Nguyen, Yang Wang, and Meng Wang. 2022. Thinking inside the box: learning hypercube representations for group recommendation. In Proceedings of the 45th International ACM SIGIR Conference on Research and Development in Information Retrieval . 1664–1673
work page 2022
-
[6]
Wen Chen, Pipei Huang, Jiaming Xu, Xin Guo, Cheng Guo, Fei Sun, Chao Li, Andreas Pfadler, Huan Zhao, and Binqiang Zhao. 2019. POG: personalized outfit generation for fashion recommendation at Alibaba iFashion. In Proceedings of the 25th ACM SIGKDD international conference on knowledge discovery & data mining. 2662–2670
work page 2019
-
[7]
Yen-Chi Chen. 2017. A tutorial on kernel density estimation and recent advances. Biostatistics & Epidemiology 1, 1 (2017), 161–187
work page 2017
-
[8]
Zheyu Chen, Jinfeng Xu, and Haibo Hu. 2025. Don’t Lose Yourself: Boosting Multimodal Recommendation via Reducing Node-neighbor Discrepancy in Graph Convolutional Network. In ICASSP 2025-2025 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) . IEEE, 1–5
2025
Show all 63 references
-
[9]
Zheyu Chen, Jinfeng Xu, Yutong Wei, and Ziyue Peng. 2025. Squeeze and Excita- tion: A Weighted Graph Contrastive Learning for Collaborative Filtering. arXiv preprint arXiv:2504.04443 (2025)
2025 arXiv
-
[10]
Thomas M Cover. 1999. Elements of information theory . John Wiley & Sons
1999
-
[11]
Paul Covington, Jay Adams, and Emre Sargin. 2016. Deep neural networks for youtube recommendations. In Proceedings of the 10th ACM conference on recommender systems. 191–198
2016
-
[12]
Wenqi Fan, Yao Ma, Qing Li, Yuan He, Eric Zhao, Jiliang Tang, and Dawei Yin
-
[13]
Xue Geng, Hanwang Zhang, Jingwen Bian, and Tat-Seng Chua. 2015. Learning image and user features for recommendation in social networks. In Proceedings of the IEEE international conference on computer vision . 4274–4282
2015
-
[14]
Xavier Glorot and Yoshua Bengio. 2010. Understanding the difficulty of training deep feedforward neural networks. In Proceedings of the thirteenth international conference on artificial intelligence and statistics . JMLR Workshop and Conference Proceedings, 249–256
2010
-
[15]
Fréderic Godin, Viktor Slavkovikj, Wesley De Neve, Benjamin Schrauwen, and Rik Van de Walle. 2013. Using topic models for twitter hashtag recommendation. In Proceedings of the 22nd international conference on world wide web . 593–596
2013
-
[16]
Zhiqiang Guo, Jianjun Li, Guohui Li, Chaoyang Wang, Si Shi, and Bin Ruan. 2024. LGMRec: Local and Global Graph Learning for Multimodal Recommendation. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 38. 8454–8462
2024
-
[17]
Xiangnan He, Kuan Deng, Xiang Wang, Yan Li, Yongdong Zhang, and Meng Wang. 2020. Lightgcn: Simplifying and powering graph convolution network for recommendation. In Proceedings of the 43rd International ACM SIGIR conference on research and development in Information Retrieval ...
2020
-
[18]
Mengyuan Jing, Yanmin Zhu, Tianzi Zang, and Ke Wang. 2023. Contrastive self-supervised learning in recommender systems: A survey. ACM Transactions on Information Systems 42, 2 (2023), 1–39
2023
-
[19]
Diederik P Kingma and Jimmy Ba. 2014. Adam: A method for stochastic opti- mization. arXiv preprint arXiv:1412.6980 (2014)
2014 arXiv
-
[20]
Thomas N Kipf and Max Welling. 2017. Semi-Supervised Classification with Graph Convolutional Networks. In International Conference on Learning Repre- sentations
2017
-
[21]
Zongwei Li, Lianghao Xia, and Chao Huang. 2024. Recdiff: Diffusion model for social recommendation. In Proceedings of the 33rd ACM International Conference on Information and Knowledge Management . 1346–1355
2024
-
[22]
Zihan Lin, Changxin Tian, Yupeng Hou, and Wayne Xin Zhao. 2022. Improving graph collaborative filtering with neighborhood-enriched contrastive learning. In Proceedings of the ACM web conference 2022 . 2320–2329
2022
-
[23]
Fan Liu, Zhiyong Cheng, Lei Zhu, Zan Gao, and Liqiang Nie. 2021. Interest-aware message-passing GCN for recommendation. In Proceedings of the web conference
2021
-
[24]
Xiao Liu, Fanjin Zhang, Zhenyu Hou, Li Mian, Zhaoyu Wang, Jing Zhang, and Jie Tang. 2021. Self-supervised learning: Generative or contrastive. IEEE transactions on knowledge and data engineering 35, 1 (2021), 857–876
2021
-
[25]
Yixin Liu, Ming Jin, Shirui Pan, Chuan Zhou, Yu Zheng, Feng Xia, and S Yu Philip
-
[26]
Aaron van den Oord, Yazhe Li, and Oriol Vinyals. 2018. Representation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748 (2018)
2018 arXiv
-
[27]
Yuhan Quan, Jingtao Ding, Chen Gao, Lingling Yi, Depeng Jin, and Yong Li. 2023. Robust preference-guided denoising for graph based social recommendation. In Proceedings of the ACM Web Conference 2023 . 1097–1108
2023
-
[28]
Sylvestre-Alvise Rebuffi, Sven Gowal, Dan Andrei Calian, Florian Stimberg, Olivia Wiles, and Timothy A Mann. 2021. Data augmentation can improve robustness. Advances in Neural Information Processing Systems 34 (2021), 29935–29948
2021
-
[29]
Xubin Ren, Lianghao Xia, Jiashu Zhao, Dawei Yin, and Chao Huang. 2023. Disen- tangled contrastive collaborative filtering. In Proceedings of the 46th International ACM SIGIR Conference on Research and Development in Information Retrieval . 1137–1146
2023
-
[31]
Steffen Rendle, Christoph Freudenthaler, Zeno Gantner, and Lars Schmidt-Thieme
-
[32]
Aravind Sankar, Yanhong Wu, Yuhang Wu, Wei Zhang, Hao Yang, and Hari Sundaram. 2020. Groupim: A mutual information maximization framework for neural group recommendation. InProceedings of the 43rd International ACM SIGIR conference on research and development in Information Re...
2020
-
[33]
Brent Smith and Greg Linden. 2017. Two decades of recommender systems at Amazon. com. Ieee internet computing 21, 3 (2017), 12–18
2017
-
[34]
Laurens Van der Maaten and Geoffrey Hinton. 2008. Visualizing data using t-SNE. Journal of machine learning research 9, 11 (2008)
2008
-
[35]
Chenyang Wang, Yuanqing Yu, Weizhi Ma, Min Zhang, Chong Chen, Yiqun Liu, and Shaoping Ma. 2022. Towards representation alignment and uniformity in collaborative filtering. In Proceedings of the 28th ACM SIGKDD conference on knowledge discovery and data mining . 1816–1825
2022
-
[36]
Tongzhou Wang and Phillip Isola. 2020. Understanding contrastive representation learning through alignment and uniformity on the hypersphere. In International conference on machine learning . PMLR, 9929–9939
2020
-
[37]
Xiang Wang, Xiangnan He, Meng Wang, Fuli Feng, and Tat-Seng Chua. 2019. Neural graph collaborative filtering. In Proceedings of the 42nd international ACM SIGIR conference on Research and development in Information Retrieval . 165–174
2019
-
[38]
Wei Wei, Chao Huang, Lianghao Xia, and Chuxu Zhang. 2023. Multi-Modal Self-Supervised Learning for Recommendation. In Proceedings of the ACM Web Conference 2023. 790–800
2023
-
[39]
Felix Wu, Amauri Souza, Tianyi Zhang, Christopher Fifty, Tao Yu, and Kilian Weinberger. 2019. Simplifying graph convolutional networks. In International conference on machine learning . PMLR, 6861–6871
2019
-
[40]
Jiancan Wu, Xiang Wang, Fuli Feng, Xiangnan He, Liang Chen, Jianxun Lian, and Xing Xie. 2021. Self-supervised graph learning for recommendation. In Proceed- ings of the 44th international ACM SIGIR conference on research and development in information retrieval. 726–735
2021
-
[41]
Xixi Wu, Yun Xiong, Yao Zhang, Yizhu Jiao, Jiawei Zhang, Yangyong Zhu, and Philip S Yu. 2023. Consrec: Learning consensus behind interactions for group recommendation. In Proceedings of the ACM Web Conference 2023 . 240–250
2023
-
[42]
Lianghao Xia, Chao Huang, Yong Xu, Jiashu Zhao, Dawei Yin, and Jimmy Huang
-
[43]
Jinfeng Xu, Zheyu Chen, Jinze Li, Shuo Yang, Hewei Wang, Yijie Li, Mengran Li, Puzhen Wu, and Edith CH Ngai. 2025. MDVT: Enhancing Multimodal Rec- ommendation with Model-Agnostic Multimodal-Driven Virtual Triplets. arXiv preprint arXiv:2505.16665 (2025)
2025 arXiv
-
[44]
Jinfeng Xu, Zheyu Chen, Jinze Li, Shuo Yang, Hewei Wang, and Edith CH Ngai
-
[45]
Jinfeng Xu, Zheyu Chen, Jinze Li, Shuo Yang, Wei Wang, Xiping Hu, and Edith C-H Ngai. 2024. FourierKAN-GCF: Fourier Kolmogorov-Arnold Network–An Effective and Efficient Feature Transformation for Graph Collaborative Filtering. arXiv preprint arXiv:2406.01034 (2024)
2024 arXiv
-
[46]
Jinfeng Xu, Zheyu Chen, Zixiao Ma, Jiyi Liu, and Edith CH Ngai. 2024. Im- proving Consumer Experience With Pre-Purify Temporal-Decay Memory-Based Collaborative Filtering Recommendation for Graduate School Application. IEEE Transactions on Consumer Electronics (2024)
2024
-
[47]
In Proceedings of the 45th International ACM SIGIR conference on research and development in information retrieval
Hypergraph contrastive collaborative filtering. In Proceedings of the 45th International ACM SIGIR conference on research and development in information retrieval. 70–79
-
[48]
Jinfeng Xu, Zheyu Chen, Shuo Yang, Jinze Li, Hewei Wang, and Edith CH Ngai
-
[49]
Jinfeng Xu, Zheyu Chen, Shuo Yang, Jinze Li, Wei Wang, Xiping Hu, Steven Hoi, and Edith Ngai. 2025. A Survey on Multimodal Recommender Systems: Recent Advances and Future Directions. arXiv preprint arXiv:2502.15711 (2025)
2025 arXiv
-
[50]
Junliang Yu, Xin Xia, Tong Chen, Lizhen Cui, Nguyen Quoc Viet Hung, and Hongzhi Yin. 2023. XSimGCL: Towards extremely simple graph contrastive learning for recommendation. IEEE Transactions on Knowledge and Data Engi- neering (2023)
2023
-
[51]
Junliang Yu, Hongzhi Yin, Xin Xia, Tong Chen, Lizhen Cui, and Quoc Viet Hung Nguyen. 2022. Are graph augmentations necessary? simple graph contrastive learning for recommendation. In Proceedings of the 45th international ACM SIGIR conference on research and development in info...
2022
-
[52]
Guanghu Yuan, Fajie Yuan, Yudong Li, Beibei Kong, Shujie Li, Lei Chen, Min Yang, Chenyun Yu, Bo Hu, Zang Li, et al . 2022. Tenrec: A large-scale multipurpose benchmark dataset for recommender systems. Advances in Neural Information Processing Systems 35 (2022), 11480–11493
2022
-
[53]
Jinfeng Xu, Zheyu Chen, Wei Wang, Xiping Hu, Sang-Wook Kim, and Edith CH Ngai. 2025. COHESION: Composite Graph Convolutional Network with Dual- Stage Fusion for Multimodal Recommendation. arXiv preprint arXiv:2504.04452 (2025)
2025 arXiv
-
[54]
Yi Zhang, Lei Sang, and Yiwen Zhang. 2024. Exploring the Individuality and Collectivity of Intents behind Interactions for Graph Collaborative Filtering. In Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval . 1253–1262
2024
-
[55]
Wayne Xin Zhao, Yupeng Hou, Xingyu Pan, Chen Yang, Zeyu Zhang, Zihan Lin, Jingsen Zhang, Shuqing Bian, Jiakai Tang, Wenqi Sun, et al. 2022. RecBole 2.0: towards a more up-to-date recommendation library. In Proceedings of the 31st ACM International Conference on Information & K...
2022
-
[56]
Xin Zhou, Donghui Lin, Yong Liu, and Chunyan Miao. 2023. Layer-refined graph convolutional networks for recommendation. In 2023 IEEE 39th International Conference on Data Engineering (ICDE) . IEEE, 1247–1259
2023
-
[57]
Xin Zhou and Zhiqi Shen. 2023. A tale of two graphs: Freezing and denoising graph structures for multimodal recommendation. In Proceedings of the 31st ACM International Conference on Multimedia . 935–943
2023
-
[60]
Dan Zhang, Yangliao Geng, Wenwen Gong, Zhongang Qi, Zhiyu Chen, Xing Tang, Ying Shan, Yuxiao Dong, and Jie Tang. 2024. RecDCL: Dual Contrastive Learning for Recommendation. In Proceedings of the ACM on Web Conference
2024
-
[2009]
In Proceedings of the Twenty-Fifth Conference on Uncertainty in Artificial Intelligence
BPR: Bayesian personalized ranking from implicit feedback. In Proceedings of the Twenty-Fifth Conference on Uncertainty in Artificial Intelligence . 452–461
-
[2012]
arXiv preprint arXiv:1205.2618 (2012)
BPR: Bayesian personalized ranking from implicit feedback. arXiv preprint arXiv:1205.2618 (2012)
2012 arXiv
-
[2019]
In The world wide web conference
Graph neural networks for social recommendation. In The world wide web conference. 417–426
-
[2022]
IEEE transactions on knowledge and data engineering 35, 6 (2022), 5879–5900
Graph self-supervised learning: A survey. IEEE transactions on knowledge and data engineering 35, 6 (2022), 5879–5900
2022
-
[2024]
In Proceedings of the 33rd ACM International Conference on Information and Knowledge Management
AlignGroup: Learning and Aligning Group Consensus with Member Pref- erences for Group Recommendation. In Proceedings of the 33rd ACM International Conference on Information and Knowledge Management . 2682–2691
-
[2025]
In Proceedings of the AAAI Conference on Artificial Intelligence , Vol
Mentor: multi-level self-supervised learning for multimodal recommen- dation. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 39. 12908–12917. NLGCL RecSys ’25, September 22–26, 2025, Prague, Czech Republic
2025
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.