REVIEW 4 major objections 4 minor 166 references
A Survey on GNN-based Link Prediction: Techniques, Applications, and Challenges
T0 review · 4 major / 4 minor · reviewed 2026-08-02 · deepseek-v4-flash
Pith's one-line read This survey claims that GNN-based link prediction is best understood through a two-dimensional taxonomy: four backbone architectures (GCN, GAE, GAT, GFormer) and two application areas (knowledge graphs and recommender systems), making the s
desk verdict A useful survey map of GNN-based link prediction, but its four-way taxonomy doesn't cleanly partition the field because GAE is a wrapper around GCN and the other categories sit at different levels of abstraction. 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 organizing device is the two-dimensional taxonomy (techniques × applications). On the technique axis, the four backbone families are defined by their message-aggregation mechanism: GCN aggregates neighbor features with a normalized adjacency matrix; GAE learns node embeddings by reconstructing the adjacency matrix; GAT weights neighbors by learned attention coefficients; GFormer applies transformer self-attention to graph structure. On the application axis, knowledge-graph link prediction (completion, inductive reasoning, complex query answering) and recommender-system link prediction (session-based recommendation as a special case) anchor the real-world deployment discussion. Th
What would settle it
A concrete test: take a random sample of 100 recent GNN-based link prediction papers and check whether each can be assigned unambiguously to exactly one of the four categories. If a large fraction (say, more than 20 percent) falls outside the taxonomy or straddles multiple categories, the claim of a complete two-dimensional framework fails. Additionally, locating an earlier review that already systematically surveys link prediction from a dedicated GNN perspective would falsify the 'one of the first' assertion.
Extended reading notes
Core claim
On its own terms, the paper's central claim is that previous link prediction surveys are fragmented, and that a unified 'GNN perspective' fills the gap: it categorizes recent methods into GCN-based (node-wise, pair-wise, and position-encoding), GAE-based (unsupervised reconstruction), GAT-based (local and global attention), and GFormer-based (global self-attention) families, then maps those onto knowledge-graph completion and reasoning and onto session-based and personalized recommendation. The survey further claims that this architecture-centric framing reveals a methodological evolution from local neighborhood aggregation to global dependency modeling, and that comparing the four families
Load-bearing premise
The load-bearing premise is that the four-way backbone taxonomy (GCN, GAE, GAT, GFormer) is a valid and complete way to partition GNN-based link prediction; if important methods do not fit cleanly into these categories, or if the categories overlap, the survey's central organizing contribution weakens.
Editorial extensions
If this is right
- If the taxonomy is right, the relevant design choice for a link-prediction practitioner is the backbone family: GCN and GAE for homogeneous and large-scale graphs, GAT for heterogeneous, dynamic, or noisy graphs, GFormer when long-range dependencies matter.
- The survey's comparison implies that no single architecture dominates: GCN suffers from over-smoothing, GAE from limited expressiveness and transductive bias, and GAT and GFormer from computational cost, so model selection should be driven by graph type and scale.
- The open challenges named in the paper—complex graph structures, structural feature expressiveness, self-supervised learning, and scalability—become the agenda for the next generation of GNN link predictors.
- Treating session-based recommendation as a link prediction problem means advances in GNN link prediction can transfer directly to recommender systems, and vice versa.
Reading between the lines
- A reader might infer that the taxonomy's 'GFormer-based' bucket is the most fluid: as graph transformers absorb attention and position-encoding ideas from the other families, the boundaries between the four categories may blur in future work.
- The survey's emphasis on distinguishing isomorphic links points to a testable benchmark: comparing GCN-based against GFormer-based methods on graphs with many isomorphic node pairs would directly probe the expressiveness gap the paper describes.
- One consequence the authors leave implicit is that the same encoder-decoder pipeline (GNN encoder plus MLP decoder) could make GNN-based link prediction a drop-in component for graph foundation models, since it already separates representation from prediction.
- The paper's challenge list suggests that scalability, not accuracy alone, is the binding constraint; a practical extension would be to measure the four backbone families on a common large-scale dynamic graph benchmark.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper is a survey of GNN-based link prediction. Its stated contribution is a two-dimensional taxonomy: a technique axis with four categories (GCN-based, GAE-based, GAT-based, GFormer-based) and an application axis covering knowledge graphs and recommender systems. The survey describes preliminaries and graph types, summarizes representative methods in Table 1, discusses each technique family and both application domains, and closes with challenges (complex graphs, structural features, self-supervised learning, scalability). The central claim is that this is among the first reviews to organize link prediction from a dedicated GNN-architecture perspective and to offer a prescriptive, comparative framework.
Significance. If the proposed taxonomy were sound, the survey would fill a genuine gap: prior reviews treat GNNs as generic encoders or focus on classic link prediction, while this paper attempts to organize methods by architectural backbone. The manuscript has a broad reference list, a public GitHub repository, and a useful discussion of applications and open problems. These are real strengths. However, the central taxonomy is internally inconsistent: the four technique categories are not mutually exclusive, not all at the same level of abstraction, and are applied in ways that misclassify or mischaracterize particular methods. Because the taxonomy is the paper's main claimed novelty, the contribution needs substantial repair rather than minor polishing.
major comments (4)
- [Section 3, Table 1, Eq. (4)] The four-way technique taxonomy is not a valid partition. Section 2.2 defines GAE as an encoder–decoder whose encoder is exactly GCN (Eq. 4: Z = GCN(X,A)), so any GAE-based model is also GCN-based by construction. The categories therefore overlap, and Table 1 assigns methods to one bucket only: Labeling Trick and NCNC are listed as GAE-based although their core mechanisms are a labeling scheme and common-neighbor pooling, while xGCN is listed under GCN despite being unsupervised. GAT is a layer architecture, GFormer is a broad hybrid family, and GAE is a training objective/decoder; these are not comparable axes. The text says the categories are 'based on their backbone networks' and presents the taxonomy as fine-grained and prescriptive. The authors should either redefine the taxonomy as multi-label/non-exclusive or justify the chosen grouping as a pragmatic clustering; otherwise the cen
- [Section 4.1, Table 1] The description of Ran et al. (2024) is inconsistent with the cited paper. Table 1 labels the entry DPLP under GCN-based pair-wise methods, and the text states that 'Ran et al. propose an innovative path subgraph extraction method to replace the neighborhood subgraph.' The reference, however, is titled 'Differentially Private Graph Neural Networks for Link Prediction' and, by its title and venue, is about differential privacy, not path subgraph extraction. This appears to be a mismatch between the cited work and the summary. For a survey promising a 'rigorous comparative framework,' accurate method-to-reference mapping is load-bearing, and this error needs correction.
- [Section 5.1] Two method names in the knowledge-graph section are not expanded and appear garbled. 'FAGA' is introduced without an acronym definition and is cited to Li et al. (2024), whose title is 'Causal Subgraph Learning for Generalizable Inductive Relation Prediction' — there is no named FAGA model in that citation. Similarly, 'CEKF A' is not expanded; it presumably refers to the canonicalization-enhanced known-fact-aware framework of Wang et al. (2023c), but the spacing and letter are unexplained. Since the survey's utility depends on correctly linking method names to the original papers, these citation/terminology errors must be fixed.
- [Sections 2.2, 4.4] The GFormer category is conceptually vague and partly outside the stated 'GNN perspective.' Section 2.2 defines GFormer as 'a model that combines GNNs with the Transformer architecture' and cites the authors' own prior survey (Sun et al., 2023) rather than original graph-transformer works. Section 4.4 then discusses pure Transformer architectures (LPFormer, SIEG) as GFormer-based methods. If the survey's scope is GNN-based link prediction, non-GNN Transformers should either be excluded or explicitly argued to be part of the GNN family. At minimum, the definition must be sharpened and grounded in primary sources; as written, this category further undermines the taxonomy's exclusivity.
minor comments (4)
- [Throughout] The manuscript needs copyediting. Examples include 'Mutilayer' (Section 2.1), 'Recommendtion' (Figure 4), 'caculated' (Eq. 4 and surrounding text), 'exiting calssic' (Introduction), and inconsistent use of spaces around citations such as 'F AGA' and 'CEKF A.'
- [Table 1] A few table entries are inconsistent with the reference list. For example, 'PA' is listed as a model name for Subramonian et al. (2025), but the cited paper is titled 'Networked Inequality: Preferential Attachment Bias in Graph Neural Network Link Prediction' and the reference itself is dated ICML 2024; 'PA' is a concept, not a model name. The year discrepancy should also be reconciled.
- [Section 2.2] The GFormer definition cites Sun et al. (2023), a prior survey by the same authors, when introducing the combination of GNNs and Transformers. Citing the original architectural works (e.g., Graphormer, Dwivedi et al.'s graph transformer benchmark) would be more appropriate and would help establish that the category is independently grounded.
- [Section 6.2] The statement that GNNs 'have been shown to be incapable of differentiating node pairs that contain isomorphic nodes' is attributed to Zhang et al. (2021). That citation is appropriate, but the sentence should more precisely say 'node pairs whose endpoints are isomorphic in the enclosing subgraph' to avoid overgeneralizing; the current wording could be misread as a claim about all isomorphic nodes.
Circularity Check
No circular derivation: self-cited GFormer label and overlapping GAE/GCN categories affect taxonomy precision, but no result reduces to its inputs.
full rationale
This is a survey, so the relevant 'derivation chain' is the justification of the central organizing taxonomy, not a mathematical derivation. The paper's technique axis divides methods into GCN-, GAE-, GAT-, and GFormer-based backbones; this classification is an organizational choice, not a fitted or derived quantity. The GFormer category is introduced with a self-reference to the authors' prior survey ('GFormer is a model that combines GNNs with the Transformer architecture Sun et al. (2023)'), and the paper cites the authors' own LGAT/xGCN/LHGNN work in the preliminaries and Table 1. These are self-citations, but none is load-bearing in the sense of supplying an unverified premise on which a prediction rests: the Transformer self-attention mechanism is defined independently in Eqs. (7)-(10), and the surveyed GFormer-type methods (Graphormer, LPFormer, SIEG, etc.) are external works with published results. The GAE category is defined in Eq. (4) with a GCN encoder, so GAE-based and GCN-based categories overlap; Labeling Trick and NCNC are placed under GAE despite being labeling/pooling techniques. This is an internal-consistency weakness of the taxonomy, not a circular step: no parameter is fitted to one subset and then presented as a prediction on a related subset, and no conclusion follows by construction from the GFormer label. The central collecting/claiming function is supported by approximately eighty external references. Score 2 reflects the presence of self-citations at definitional points; no higher score is warranted because no derived or predicted result reduces to the survey's own prior work.
Assumptions & free parameters
assumptions (3)
- domain assumption GNN-based methods are the leading paradigm for link prediction (Section 1).
- ad hoc to paper The four backbone categories GCN, GAE, GAT, and GFormer are mutually exclusive and jointly exhaustive for GNN-based link prediction methods (Section 3, Figure 4).
- domain assumption The selected references in Table 1 are representative of the field (Section 3).
Cite this review
Pith. "Pith review of A Survey on GNN-based Link Prediction: Techniques, Applications, and Challenges." pith.science (2026). https://pith.science/paper/CI7AUTLP
@misc{pith2026260716198,
author = {Pith},
title = {Pith review of: A Survey on GNN-based Link Prediction: Techniques, Applications, and Challenges},
year = {2026},
howpublished = {\url{https://pith.science/paper/CI7AUTLP}},
note = {Machine review of arXiv:2607.16198}
}
read the original abstract
Graph Neural Networks (GNNs) have emerged as the leading paradigm for link prediction, enabling the inference of missing connections and the anticipation of potential future links. However, existing reviews lack systematic exploration specifically targeting underlying GNN architectures and diverse graph structures. To address this critical gap, this paper provides a comprehensive review of GNN-based link prediction from a novel and dedicated GNN perspective. We propose an innovative taxonomy that categorizes recent advancements based on techniques and applications. From a technique perspective, we focus on key GNN encoder architectures, including GCN-based, GAE-based, GAT-based, and GFormer-based methods, discussing their strengths and limitations. From an application perspective, we highlight prominent use cases of link prediction in knowledge graphs and recommendation systems, demonstrating their real-world impact. In addition, we examine the current challenges and discuss promising future directions.
Reference graph
Works this paper leans on
-
[4]
In: Proceedings of the 2013 Conference on Empirical Methods in Natural Language Processing
Berant J, Chou A, Frostig R, et al (2013) Semantic parsing on freebase from question-answer pairs. In: Proceedings of the 2013 Conference on Empirical Methods in Natural Language Processing. Association for Computational Linguistics, pp 1533--1544
2013
-
[5]
In: The Eleventh International Conference on Learning Representations, pp 1--12, ://openreview.net/forum?id=m1oqEOAozQU
Chamberlain BP, Shirobokov S, Rossi E, et al (2023) Graph neural networks for link prediction with subgraph sketching. In: The Eleventh International Conference on Learning Representations, pp 1--12, ://openreview.net/forum?id=m1oqEOAozQU
2023
-
[8]
Chen Z, Chen L, Villar S, et al (2020) Can graph neural networks count substructures? Advances in neural information processing systems 33:10383--10395
2020
-
[14]
In: Proceedings of the First Learning on Graphs Conference, vol 198
Dong K, Tian Y, Guo Z, et al (2022) Fakeedge: Alleviate dataset shift in link prediction. In: Proceedings of the First Learning on Graphs Conference, vol 198. PMLR, pp 56:1--56:19, ://openreview.net/forum?id=QDN0jSXuvtX
2022
-
[25]
Expert Systems with Applications 264:125919
Jiang F, Hu Q, Yang Z, et al (2025) A neighborhood rough sets-based ensemble method, with application to software fault prediction. Expert Systems with Applications 264:125919
2025
-
[26]
Information Processing & Management 63(2):104483
Jiang F, Yu X, Hu Q, et al (2026) An ensemble method using neighborhood granular combination entropy for software defect prediction. Information Processing & Management 63(2):104483
2026
-
[31]
arXiv preprint arXiv:161107308
Kipf TN, Welling M (2016) Variational graph auto-encoders. arXiv preprint arXiv:161107308
2016
-
[32]
In: International Conference on Learning Representations, pp 1--14, ://openreview.net/forum?id=SJU4ayYgl
Kipf TN, Welling M (2017) Semi-supervised classification with graph convolutional networks. In: International Conference on Learning Representations, pp 1--14, ://openreview.net/forum?id=SJU4ayYgl
2017
Show all 166 references
-
[33]
In: International Conference on Learning Representations, pp 1--21, ://openreview.net/forum?id=YicbFdNTTy
Kolesnikov A, Dosovitskiy A, Weissenborn D, et al (2021) An image is worth 16x16 words: Transformers for image recognition at scale. In: International Conference on Learning Representations, pp 1--21, ://openreview.net/forum?id=YicbFdNTTy
2021
-
[42]
IEEE Transactions on Pattern Analysis and Machine Intelligence
Liu J, Yang C, Lu Z, et al (2025) Graph foundation models: Concepts, opportunities and challenges. IEEE Transactions on Pattern Analysis and Machine Intelligence
2025
-
[46]
arXiv preprint arXiv:190711692
Liu Y, Ott M, Goyal N, et al (2019) Roberta: A robustly optimized bert pretraining approach. arXiv preprint arXiv:190711692
2019
-
[52]
In: Proceedings of the Thirty-Second International Joint Conference on Artificial Intelligence, IJCAI '23, doi:10.24963/ijcai.2023/248, ://doi.org/10.24963/ijcai.2023/248
Luo S, Li H, Huang J (2023 b ) Dynamic group link prediction in continuous-time interaction network. In: Proceedings of the Thirty-Second International Joint Conference on Artificial Intelligence, IJCAI '23, doi:10.24963/ijcai.2023/248, ://doi.org/10.24963/ijcai.2023/248
2023 doi
-
[54]
Advances in Neural Information Processing Systems 36:79594--79612
Luo Z, Huang H, Lian J, et al (2023 d ) Cross-links matter for link prediction: rethinking the debiased gnn from a data perspective. Advances in Neural Information Processing Systems 36:79594--79612
2023
-
[57]
In: Proceedings of the 34th ACM International Conference on Information and Knowledge Management
Ma W, Wang Y, Wang X, et al (2025) Reconsidering the performance of gae in link prediction. In: Proceedings of the 34th ACM International Conference on Information and Knowledge Management. Association for Computing Machinery, New York, NY, USA, CIKM '25, p 2052–2062, doi:10.1...
2025
-
[65]
In: International Conference on Learning Representations, pp 1--18, ://openreview.net/forum?id=CCu6RcUMwK0
Pan L, Shi C, Dokmani \'c I (2022) Neural link prediction with walk pooling. In: International Conference on Learning Representations, pp 1--18, ://openreview.net/forum?id=CCu6RcUMwK0
2022
-
[72]
Social Network Analysis and Mining 10(1):67
Rehman SU, Asghar S (2020) Online social network trend discovery using frequent subgraph mining. Social Network Analysis and Mining 10(1):67
2020
-
[73]
In: Seventh International Conference on Digital Information Management (ICDIM 2012), IEEE, pp 88--92
Rehman SU, Khan AU, Fong S (2012) Graph mining: A survey of graph mining techniques. In: Seventh International Conference on Digital Information Management (ICDIM 2012), IEEE, pp 88--92
2012
-
[74]
Mathematical problems in engineering 2014(1):869198
Rehman SU, Asghar S, Zhuang Y, et al (2014) Performance evaluation of frequent subgraph discovery techniques. Mathematical problems in engineering 2014(1):869198
2014
-
[75]
In: Proceedings of the 2018 10th international conference on machine learning and computing, pp 257--262
Rehman SU, Asghar S, Fong S (2018) An efficient ranking scheme for frequent subgraph patterns. In: Proceedings of the 2018 10th international conference on machine learning and computing, pp 257--262
2018
-
[76]
Research Updates in Mathematics and Computer Science 4:33--63
Rehman SU, Khalil MI, Kundi M, et al (2024) A study on frequent subgraph mining approaches: Challenges and future directions. Research Updates in Mathematics and Computer Science 4:33--63
2024
-
[78]
EAI Endorsed Transactions on Industrial Networks and Intelligent Systems 7(23)
Samad A, Qadir M, Nawaz I, et al (2020) A comprehensive survey of link prediction techniques for social network. EAI Endorsed Transactions on Industrial Networks and Intelligent Systems 7(23). doi:10.4108/eai.13-7-2018.163988
2020
-
[81]
In: Companion Proceedings of the ACM Web Conference 2024, pp 1264--1267
Shi C, Yang C, Fang Y, et al (2024 a ) Lecture-style tutorial: Towards graph foundation models. In: Companion Proceedings of the ACM Web Conference 2024, pp 1264--1267
2024
-
[84]
In: International Conference on Learning Representations, pp 1--17
Skarding J, Hellmich M, Gabrys B, et al (2022) Benchmarking graph neural networks on dynamic link prediction. In: International Conference on Learning Representations, pp 1--17
2022
-
[88]
In: Proceedings of the 41st International Conference on Machine Learning , ICML '24, vol 235
Subramonian A, Sagun L, Sun Y (2025) Networked inequality: preferential attachment bias in graph neural network link prediction. In: Proceedings of the 41st International Conference on Machine Learning , ICML '24, vol 235. JMLR.org, Vienna, Austria, pp 46891--46925
2025
-
[92]
arXiv preprint arXiv:241001802
Tola A, Myrick J, Coskunuzer B (2024) Proxi: Challenging the gnns for link prediction. arXiv preprint arXiv:241001802
2024
-
[93]
In: Proceedings of the 31st International Conference on Neural Information Processing Systems
Vaswani A, Shazeer N, Parmar N, et al (2017) Attention is all you need. In: Proceedings of the 31st International Conference on Neural Information Processing Systems. Curran Associates Inc., Red Hook, NY, USA, NIPS'17, pp 6000--6010
2017
-
[94]
In: International Conference on Learning Representations, pp 1--12, ://openreview.net/forum?id=rJXMpikCZ
Veličković P, Cucurull G, Casanova A, et al (2018) Graph attention networks. In: International Conference on Learning Representations, pp 1--12, ://openreview.net/forum?id=rJXMpikCZ
2018
-
[96]
In: International Conference on Learning Representations, pp 1--24, ://openreview.net/forum?id=e95i1IHcWj
Wang H, Yin H, Zhang M, et al (2022) Equivariant and stable positional encoding for more powerful graph neural networks. In: International Conference on Learning Representations, pp 1--24, ://openreview.net/forum?id=e95i1IHcWj
2022
-
[98]
In: The Twelfth International Conference on Learning Representations, pp 1--17
Wang X, Yang H, Zhang M (2024 a ) Neural common neighbor with completion for link prediction. In: The Twelfth International Conference on Learning Representations, pp 1--17
2024
-
[101]
In: The Twelfth International Conference on Learning Representations, pp 1--39
Wang Y, Zhao T, Zhao Y, et al (2024 c ) A topological perspective on demystifying gnn-based link prediction performance. In: The Twelfth International Conference on Learning Representations, pp 1--39
2024
-
[110]
Curran Associates, Inc., pp 28877--28888
Ying C, Cai T, Luo S, et al (2021) Do transformers really perform badly for graph representation ? In: Advances in Neural Information Processing Systems , vol 34. Curran Associates, Inc., pp 28877--28888
2021
-
[116]
arXiv preprint arXiv:240607926
Zhang X, Wang Y, Wang X, et al (2024 b ) Efficient neural common neighbor for temporal graph link prediction. arXiv preprint arXiv:240607926
2024
-
[124]
arXiv preprint arXiv:220801820
Zhou S, Guo Z, Aggarwal C, et al (2022) Link prediction on heterophilic graphs via disentangled representation learning. arXiv preprint arXiv:220801820
2022
-
[126]
Advances in Neural Information Processing Systems 36:21368--21414
Zhou Z, Yao J, Liu J, et al (2023) Combating bilateral edge noise for robust link prediction. Advances in Neural Information Processing Systems 36:21368--21414
2023
-
[127]
Semantic Parsing on Freebase from Question-Answer Pairs
Berant, Jonathan and Chou, Andrew and Frostig, Roy and Liang, Percy. Semantic Parsing on Freebase from Question-Answer Pairs. Proceedings of the 2013 Conference on Empirical Methods in Natural Language Processing. 2013
2013
-
[128]
Advances in Neural Information Processing Systems , volume=
Cross-links matter for link prediction: rethinking the debiased GNN from a data perspective , author=. Advances in Neural Information Processing Systems , volume=
-
[129]
and Shah, Neil and Zhao, Tong , month = jul, year =
Guo, Zhichun and Shiao, William and Zhang, Shichang and Liu, Yozen and Chawla, Nitesh V. and Shah, Neil and Zhao, Tong , month = jul, year =. Linkless link prediction via relational distillation , volume =. Proceedings of the 40th
-
[130]
Do Transformers Really Perform Badly for Graph Representation ? , volume =
Ying, Chengxuan and Cai, Tianle and Luo, Shengjie and Zheng, Shuxin and Ke, Guolin and He, Di and Shen, Yanming and Liu, Tie-Yan , year =. Do Transformers Really Perform Badly for Graph Representation ? , volume =. Advances in
-
[131]
Networked inequality: preferential attachment bias in graph neural network link prediction , volume =
Subramonian, Arjun and Sagun, Levent and Sun, Yizhou , month = jan, year =. Networked inequality: preferential attachment bias in graph neural network link prediction , volume =. Proceedings of the 41st
-
[132]
and Kaiser,
Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and Uszkoreit, Jakob and Jones, Llion and Gomez, Aidan N. and Kaiser,. Attention is all you need , year =. Proceedings of the 31st International Conference on Neural Information Processing Systems , pages =
-
[133]
Advances in Neural Information Processing Systems , author =
Combating Bilateral Edge Noise for Robust Link Prediction , volume =. Advances in Neural Information Processing Systems , author =. 2023 , pages =
2023
-
[134]
The Twelfth International Conference on Learning Representations , year=
A topological perspective on demystifying gnn-based link prediction performance , author=. The Twelfth International Conference on Learning Representations , year=
-
[135]
arXiv preprint arXiv:2410.01802 , year=
PROXI: Challenging the GNNs for Link Prediction , author=. arXiv preprint arXiv:2410.01802 , year=
-
[136]
IEEE Transactions on Knowledge and Data Engineering , volume=
GTRL: An entity group-aware temporal knowledge graph representation learning method , author=. IEEE Transactions on Knowledge and Data Engineering , volume=. 2023 , publisher=
2023
-
[137]
arXiv preprint arXiv:1907.11692 , year=
Roberta: A robustly optimized bert pretraining approach , author=. arXiv preprint arXiv:1907.11692 , year=
1907 arXiv
-
[138]
The Twelfth International Conference on Learning Representations , year =
Neural Common Neighbor with Completion for Link Prediction , author =. The Twelfth International Conference on Learning Representations , year =
-
[139]
arXiv preprint arXiv:2208.01820 , year=
Link prediction on heterophilic graphs via disentangled representation learning , author=. arXiv preprint arXiv:2208.01820 , year=
-
[140]
arXiv preprint arXiv:2406.07926 , year=
Efficient Neural Common Neighbor for Temporal Graph Link Prediction , author=. arXiv preprint arXiv:2406.07926 , year=
-
[141]
Advances in neural information processing systems , volume=
Can graph neural networks count substructures? , author=. Advances in neural information processing systems , volume=
-
[142]
arXiv preprint arXiv:1611.07308 , year=
Variational graph auto-encoders , author=. arXiv preprint arXiv:1611.07308 , year=
-
[143]
International Conference on Learning Representations , month = oct, year =
Benchmarking Graph Neural Networks on Dynamic Link Prediction , author =. International Conference on Learning Representations , month = oct, year =
-
[144]
International Conference on Learning Representations , year=
Semi-Supervised Classification with Graph Convolutional Networks , author=. International Conference on Learning Representations , year=
-
[145]
International Conference on Learning Representations , year=
Graph Attention Networks , author=. International Conference on Learning Representations , year=
-
[146]
Physical Review E , volume =
Clustering and preferential attachment in growing networks , author =. Physical Review E , volume =. 2001 , month =. doi:10.1103/PhysRevE.64.025102
2001 doi
-
[147]
Proceedings of the 20th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining , pages =
Perozzi, Bryan and Al-Rfou, Rami and Skiena, Steven , title =. Proceedings of the 20th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining , pages =. 2014 , publisher =. doi:10.1145/2623330.2623732
2014
-
[148]
Expert Systems with Applications , volume=
Link prediction by deep non-negative matrix factorization , author=. Expert Systems with Applications , volume=. 2022 , publisher=. doi:10.1016/j.eswa.2021.115991
2022
-
[149]
Journal of Big Data , volume=
A review of graph neural networks: concepts, architectures, techniques, challenges, datasets, applications, and future directions , author=. Journal of Big Data , volume=. 2024 , publisher=. doi:10.1186/s40537-023-00876-4
2024 doi
-
[150]
EAI Endorsed Transactions on Industrial Networks and Intelligent Systems , volume=
Abdul Samad and Mamoona Qadir and Ishrat Nawaz and Muhammad Arshad Islam and Muhammad Aleem , title=. EAI Endorsed Transactions on Industrial Networks and Intelligent Systems , volume=. 2020 , month=
2020
-
[151]
Journal of Machine Learning Research , volume=
Benchmarking graph neural networks , author=. Journal of Machine Learning Research , volume=. doi:10.5555/3648699.3648742
-
[152]
ACM Computing Surveys (CSUR) , volume=
A survey on embedding dynamic graphs , author=. ACM Computing Surveys (CSUR) , volume=. 2021 , publisher=. doi:10.1145/3483595
2021 doi
-
[153]
Knowledge-Based Systems , volume=
Community preserving adaptive graph convolutional networks for link prediction in attributed networks , author=. Knowledge-Based Systems , volume=. 2023 , publisher=. doi:10.1016/j.knosys.2023.110589
2023
-
[154]
Information Processing & Management , author =
Edge contrastive learning for link prediction , volume =. Information Processing & Management , author =. 2024 , pages =. doi:10.1016/j.ipm.2024.103847
2024
-
[155]
Advances in Neural Information Processing Systems , volume=
Neo-gnns: Neighborhood overlap-aware graph neural networks for link prediction , author=. Advances in Neural Information Processing Systems , volume=. doi:10.5555/3540261.3541309
-
[156]
Computing , volume=
LGAT: a light graph attention network focusing on message passing for semi-supervised node classification , author=. Computing , volume=. doi:10.1007/s00607-024-01261-6
-
[157]
Advances in Neural Information Processing Systems , volume=
Labeling trick: A theory of using graph neural networks for multi-node representation learning , author=. Advances in Neural Information Processing Systems , volume=. doi:10.5555/3540261.3540954
-
[158]
Proceedings of the 34th ACM International Conference on Information and Knowledge Management , pages =
Ma, Weishuo and Wang, Yanbo and Wang, Xiyuan and Zhang, Muhan , title =. Proceedings of the 34th ACM International Conference on Information and Knowledge Management , pages =. 2025 , isbn =
2025
-
[159]
International Conference on Learning Representations , year=
An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale , author=. International Conference on Learning Representations , year=
-
[160]
Sun, Chengcheng and Li, Chenhao and Lin, Xiang and Zheng, Tianji and Meng, Fanrong and Rui, Xiaobin and Wang, Zhixiao , title =. Artif. Intell. Rev. , month = aug, pages =. 2023 , issue_date =. doi:10.1007/s10462-023-10577-2
2023 doi
-
[161]
Bert: Pre-training of deep bidirectional transformers for language understanding , author=. Proceedings of the 2019 conference of the North American chapter of the association for computational linguistics: human language technologies, volume 1 (long and short papers) , pages=...
2019 doi
-
[162]
Information Processing & Management , author =
Knowledge graph embedding based on dynamic adaptive atrous convolution and attention mechanism for link prediction , volume =. Information Processing & Management , author =. 2024 , pages =. doi:10.1016/j.ipm.2024.103642
2024
-
[163]
Applied Soft Computing , volume=
A double attention graph network for link prediction on temporal graph , author=. Applied Soft Computing , volume=. 2023 , publisher=. doi:10.1016/j.asoc.2023.110059
2023
-
[164]
Proceedings of the Thirty-Second International Joint Conference on Artificial Intelligence , articleno =
Luo, Shijie and Li, He and Huang, Jianbin , title =. Proceedings of the Thirty-Second International Joint Conference on Artificial Intelligence , articleno =. 2023 , isbn =
2023
-
[165]
Expert Systems with Applications , volume=
Link prediction in heterogeneous networks based on metapath projection and aggregation , author=. Expert Systems with Applications , volume=. 2023 , publisher=. doi:10.1016/j.eswa.2023.120325
2023
-
[166]
FakeEdge: Alleviate Dataset Shift in Link Prediction , volume =
Dong, Kaiwen and Tian, Yijun and Guo, Zhichun and Yang, Yang and Chawla, Nitesh , month = dec, year =. FakeEdge: Alleviate Dataset Shift in Link Prediction , volume =. Proceedings of the First Learning on Graphs Conference , publisher =
-
[167]
International Conference on Learning Representations , year=
Equivariant and Stable Positional Encoding for More Powerful Graph Neural Networks , author=. International Conference on Learning Representations , year=
-
[168]
Pattern Recognition , volume=
Line graph contrastive learning for link prediction , author=. Pattern Recognition , volume=. 2023 , publisher=. doi:10.1016/j.patcog.2023.109537
2023
-
[169]
International Conference on Learning Representations , year=
Neural Link Prediction with Walk Pooling , author=. International Conference on Learning Representations , year=
-
[170]
The Eleventh International Conference on Learning Representations , year=
Graph Neural Networks for Link Prediction with Subgraph Sketching , author=. The Eleventh International Conference on Learning Representations , year=
-
[171]
Proceedings of the 32nd International Conference on Neural Information Processing Systems , pages =
Zhang, Muhan and Chen, Yixin , title =. Proceedings of the 32nd International Conference on Neural Information Processing Systems , pages =. 2018 , publisher =. doi:10.5555/3327345.3327423
2018
-
[172]
Technological Forecasting and Social Change , volume=
Two-stage technology opportunity discovery for firm-level decision making: GCN-based link-prediction approach , author=. Technological Forecasting and Social Change , volume=. 2022 , publisher=. doi:10.1016/j.techfore.2022.121934
2022
-
[173]
Advanced Engineering Informatics , author =
From technology opportunities to solutions generation via patent analysis: Application of machine learning-based link prediction , volume =. Advanced Engineering Informatics , author =. 2024 , pages =. doi:10.1016/j.aei.2024.102944
2024
-
[174]
Proceedings of INTERSPEECH , year=
Leveraging knowledge graphs for web-scale unsupervised semantic parsing , author=. Proceedings of INTERSPEECH , year=. doi:10.21437/Interspeech.2013-401
2013 doi
-
[175]
Proceedings of the National Academy of Sciences of the United States of America , author =
Link recommendation algorithms and dynamics of polarization in online social networks , volume =. Proceedings of the National Academy of Sciences of the United States of America , author =. 2021 , pages =. doi:10.1073/pnas.2102141118
2021 doi
-
[176]
Efficient On-Device Session-Based Recommendation , journal =
Xia, Xin and Yu, Junliang and Wang, Qinyong and Yang, Chaoqun and Hung, Nguyen Quoc Viet and Yin, Hongzhi , month = jan, year =. Efficient On-Device Session-Based Recommendation , journal =. doi:10.1145/3580364
-
[177]
Knowledge-Based Systems , author =
HAGERec: Hierarchical Attention Graph Convolutional Network Incorporating Knowledge Graph for Explainable Recommendation , volume =. Knowledge-Based Systems , author =. 2020 , pages =. doi:10.1016/j.knosys.2020.106194
2020
-
[178]
Advances in Neural Information Processing Systems , volume=
Learning rule-induced subgraph representations for inductive relation prediction , author=. Advances in Neural Information Processing Systems , volume=. doi:10.5555/3666122.3666278
-
[179]
Advances in Neural Information Processing Systems , volume=
Adapting neural link predictors for data-efficient complex query answering , author=. Advances in Neural Information Processing Systems , volume=. doi:10.5555/3666122.3667300
-
[180]
Proceedings of the 31st International Conference on Neural Information Processing Systems , pages=
Inductive representation learning on large graphs , author=. Proceedings of the 31st International Conference on Neural Information Processing Systems , pages=. doi:10.5555/3294771.3294869
-
[182]
Decision Support Systems , author =
Recommendation as link prediction in bipartite graphs:. Decision Support Systems , author =. 2013 , pages =. doi:10.1016/j.dss.2012.09.019
2013 doi
-
[183]
Proceedings of the Focused Retrieval and Evaluation, and 8th International Conference on Initiative for the Evaluation of XML Retrieval , pages =
Kc, Milly and Chau, Rowena and Hagenbuchner, Markus and Tsoi, Ah Chung and Lee, Vincent , title =. Proceedings of the Focused Retrieval and Evaluation, and 8th International Conference on Initiative for the Evaluation of XML Retrieval , pages =. 2009 , isbn =. doi:10.1007/978-...
2009 doi
-
[184]
Towards Flexible and Adaptive Neural Process for Cold-Start Recommendation , year=
Lin, Xixun and Zhou, Chuan and Wu, Jia and Zou, Lixin and Pan, Shirui and Cao, Yanan and Wang, Bin and Wang, Shuaiqiang and Yin, Dawei , journal=. Towards Flexible and Adaptive Neural Process for Cold-Start Recommendation , year=. doi:10.1109/TKDE.2023.3304839
2023
-
[185]
Etude de la distribution florale dans une portion des Alpes et du Jura , volume =
Jaccard, Paul , year =. Etude de la distribution florale dans une portion des Alpes et du Jura , volume =. doi:10.5169/seals-266450
-
[186]
Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining , pages =
Grover, Aditya and Leskovec, Jure , title =. Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining , pages =. 2016 , publisher =. doi:10.1145/2939672.2939754
2016
-
[187]
Proceedings of the National Academy of Sciences , author =
Solving the apparent diversity-accuracy dilemma of recommender systems , volume =. Proceedings of the National Academy of Sciences , author =. 2010 , pages =. doi:10.1073/pnas.1000488107
2010 doi
-
[188]
Social Networks , author =
Friends and neighbors on the Web , volume =. Social Networks , author =. 2003 , pages =. doi:10.1016/S0378-8733(03)00009-1
2003 doi
-
[189]
Link Prediction via Matrix Factorization , isbn =
Menon, Aditya Krishna and Elkan, Charles , year =. Link Prediction via Matrix Factorization , isbn =. Machine. doi:10.1007/978-3-642-23783-6_28
-
[190]
Physica A: Statistical Mechanics and its Applications , author =
Link prediction in complex networks: A survey , volume =. Physica A: Statistical Mechanics and its Applications , author =. 2011 , pages =. doi:10.1016/j.physa.2010.11.027
2011 doi
-
[191]
ACM Computing Surveys , author =
A Survey of Link Prediction in Complex Networks , volume =. ACM Computing Surveys , author =. 2017 , pages =. doi:10.1145/3012704
2017 doi
-
[192]
Jaya and Bhavani, S
Lakshmi, T. Jaya and Bhavani, S. Durga , month = aug, year =. Link Prediction Measures in Various Types of Information Networks: A Review , booktitle =. doi:10.1109/ASONAM.2018.8508295
2018
-
[193]
IEEE Transactions on Neural Networks and Learning Systems , author =
A Survey on Hyperlink Prediction , volume =. IEEE Transactions on Neural Networks and Learning Systems , author =. 2024 , pages =. doi:10.1109/TNNLS.2023.3286280
2024
-
[194]
xGCN: An Extreme Graph Convolutional Network for Large-scale Social Link Prediction , booktitle =
Song, Xiran and Lian, Jianxun and Huang, Hong and Luo, Zihan and Zhou, Wei and Lin, Xue and Wu, Mingqi and Li, Chaozhuo and Xie, Xing and Jin, Hai , month = apr, year =. xGCN: An Extreme Graph Convolutional Network for Large-scale Social Link Prediction , booktitle =. doi:10.1...
-
[197]
Optimizing Long-tailed Link Prediction in Graph Neural Networks through Structure Representation Enhancement , booktitle =
Wang, Yakun and Wang, Daixin and Liu, Hongrui and Hu, Binbin and Yan, Yingcui and Zhang, Qiyang and Zhang, Zhiqiang , month = aug, year =. Optimizing Long-tailed Link Prediction in Graph Neural Networks through Structure Representation Enhancement , booktitle =. doi:10.1145/36...
-
[201]
LightGCN: Simplifying and Powering Graph Convolution Network for Recommendation , booktitle =
He, Xiangnan and Deng, Kuan and Wang, Xiang and Li, Yan and Zhang, YongDong and Wang, Meng , month = jul, year =. LightGCN: Simplifying and Powering Graph Convolution Network for Recommendation , booktitle =. doi:10.1145/3397271.3401063
-
[203]
Interpretable Signed Link Prediction With Signed Infomax Hyperbolic Graph , year=
Luo, Yadan and Huang, Zi and Chen, Hongxu and Yang, Yang and Yin, Hongzhi and Baktashmotlagh, Mahsa , journal=. Interpretable Signed Link Prediction With Signed Infomax Hyperbolic Graph , year=. doi:10.1109/TKDE.2021.3139035
2021
-
[204]
Stabilizing and Enhancing Link Prediction through Deepened Graph Auto-Encoders , booktitle =
Wu, Xinxing and Cheng, Qiang , month = jul, year =. Stabilizing and Enhancing Link Prediction through Deepened Graph Auto-Encoders , booktitle =. doi:10.24963/ijcai.2022/498
2022 doi
-
[206]
IEEE Transactions on Pattern Analysis and Machine Intelligence , author =
Co-Embedding of Nodes and Edges With Graph Neural Networks , volume =. IEEE Transactions on Pattern Analysis and Machine Intelligence , author =. 2023 , pages =. doi:10.1109/TPAMI.2020.3029762
2023
-
[207]
Paths2Pair: Meta-path Based Link Prediction in Billion-Scale Commercial Heterogeneous Graphs , booktitle =
Hang, Jinquan and Hong, Zhiqing and Feng, Xinyue and Wang, Guang and Yang, Guang and Li, Feng and Song, Xining and Zhang, Desheng , month = aug, year =. Paths2Pair: Meta-path Based Link Prediction in Billion-Scale Commercial Heterogeneous Graphs , booktitle =. doi:10.1145/3637...
-
[208]
LPFormer: An Adaptive Graph Transformer for Link Prediction , isbn =
Shomer, Harry and Ma, Yao and Mao, Haitao and Li, Juanhui and Wu, Bo and Tang, Jiliang , month = aug, year =. LPFormer: An Adaptive Graph Transformer for Link Prediction , isbn =. Proceedings of the 30th. doi:10.1145/3637528.3672025
-
[209]
Proceedings of the AAAI Conference on Artificial Intelligence , author =
Structural Information Enhanced Graph Representation for Link Prediction , volume =. Proceedings of the AAAI Conference on Artificial Intelligence , author =. 2024 , pages =. doi:10.1609/aaai.v38i13.29417
2024 doi
-
[210]
ACM Trans
BehaviorNet: A Fine-grained Behavior-aware Network for Dynamic Link Prediction , volume =. ACM Trans. Web , author =. 2024 , pages =. doi:10.1145/3580514
2024 doi
-
[211]
2021 IEEE/CVF International Conference on Computer Vision (ICCV) , year=
Swin Transformer: Hierarchical Vision Transformer using Shifted Windows , author=. 2021 IEEE/CVF International Conference on Computer Vision (ICCV) , year=. doi:10.1109/ICCV48922.2021.00986
2021
-
[212]
IEEE Transactions on Knowledge and Data Engineering , author =
A Multi-Type Transferable Method for Missing Link Prediction in Heterogeneous Social Networks , volume =. IEEE Transactions on Knowledge and Data Engineering , author =. 2023 , pages =. doi:10.1109/TKDE.2022.3233481
2023
-
[213]
LPNL: Scalable Link Prediction with Large Language Models , booktitle =
Bi, Baolong and Liu, Shenghua and Wang, Yiwei and Mei, Lingrui and Cheng, Xueqi , year =. LPNL: Scalable Link Prediction with Large Language Models , booktitle =. doi:10.18653/v1/2024.findings-acl.215
2024 doi
-
[214]
Nature , volume=
Hierarchical structure and the prediction of missing links in networks , author=. Nature , volume=. 2008 , publisher=. doi:10.1038/nature06830
2008 doi
-
[215]
Nature , volume=
Teasing out the missing links , author=. Nature , volume=. 2008 , publisher=. doi:10.1038/453047a
2008 doi
-
[216]
Computer Communications , volume=
Triad link prediction method based on the evolutionary analysis with IoT in opportunistic social networks , author=. Computer Communications , volume=. 2022 , publisher=. doi:10.1016/j.comcom.2021.10.009
2022 doi
-
[217]
Inductive Link Prediction for Sequential-emerging Knowledge Graph , booktitle =
Zhang, Yufeng and Chen, Wei and Chen, Xi and Ma, Qingzhi and Zhao, Lei , month = may, year =. Inductive Link Prediction for Sequential-emerging Knowledge Graph , booktitle =. doi:10.1109/ICDE60146.2024.10637914
2024
-
[218]
IEEE Transactions on Knowledge and Data Engineering , author =
Schema-Aware Hyper-Relational Knowledge Graph Embeddings for Link Prediction , volume =. IEEE Transactions on Knowledge and Data Engineering , author =. 2024 , pages =. doi:10.1109/TKDE.2023.3323499
2024
-
[219]
Robust Link Prediction over Noisy Hyper-Relational Knowledge Graphs via Active Learning , booktitle =
Yu, Weijian and Yang, Jie and Yang, Dingqi , month = may, year =. Robust Link Prediction over Noisy Hyper-Relational Knowledge Graphs via Active Learning , booktitle =. doi:10.1145/3589334.3645686
-
[220]
UniLP: Unified Topology-aware Generative Framework for Link Prediction in Knowledge Graph , booktitle =
Liu, Ben and Peng, Miao and Xu, Wenjie and Jia, Xu and Peng, Min , month = may, year =. UniLP: Unified Topology-aware Generative Framework for Link Prediction in Knowledge Graph , booktitle =. doi:10.1145/3589334.3645592
-
[221]
Causal Subgraph Learning for Generalizable Inductive Relation Prediction , booktitle =
Li, Mei and Liu, Xiaoguang and Ji, Hua and Zheng, Shuangjia , month = aug, year =. Causal Subgraph Learning for Generalizable Inductive Relation Prediction , booktitle =. doi:10.1145/3637528.3671972
-
[222]
Link Prediction on N-ary Relational Data , booktitle =
Guan, Saiping and Jin, Xiaolong and Wang, Yuanzhuo and Cheng, Xueqi , month = may, year =. Link Prediction on N-ary Relational Data , booktitle =. doi:10.1145/3308558.3313414
-
[223]
AAAI , author =
Learning Representations of Bi-level Knowledge Graphs for Reasoning beyond Link Prediction , volume =. AAAI , author =. 2023 , pages =. doi:10.1609/aaai.v37i4.25538
2023 doi
-
[224]
A Canonicalization-Enhanced Known Fact-Aware Framework For Open Knowledge Graph Link Prediction , booktitle =
Wang, Yilin and Hu, Minghao and Huang, Zhen and Li, Dongsheng and Luo, Wei and Yang, Dong and Lu, Xicheng , month = aug, year =. A Canonicalization-Enhanced Known Fact-Aware Framework For Open Knowledge Graph Link Prediction , booktitle =. doi:10.24963/ijcai.2023/259
2023 doi
-
[225]
EnhancE: Enhanced Entity and Relation Embedding for Knowledge Hypergraph Link Prediction , booktitle =
Wang, Chenxu and Li, Zhao and Wang, Xin and Chen, Zirui , month = apr, year =. EnhancE: Enhanced Entity and Relation Embedding for Knowledge Hypergraph Link Prediction , booktitle =. doi:10.1145/3543873.3587326
-
[226]
AAAI , author =
DHGE: Dual-View Hyper-Relational Knowledge Graph Embedding for Link Prediction and Entity Typing , volume =. AAAI , author =. 2023 , pages =. doi:10.1609/aaai.v37i5.25795
2023 doi
-
[227]
IEEE Transactions on Knowledge and Data Engineering , author =
OAG: Linking Entities Across Large-Scale Heterogeneous Knowledge Graphs , volume =. IEEE Transactions on Knowledge and Data Engineering , author =. 2023 , pages =. doi:10.1109/TKDE.2022.3222168
2023
-
[228]
Disconnected Emerging Knowledge Graph Oriented Inductive Link Prediction , booktitle =
Zhang, Yufeng and Wang, Weiqing and Yin, Hongzhi and Zhao, Pengpeng and Chen, Wei and Zhao, Lei , month = apr, year =. Disconnected Emerging Knowledge Graph Oriented Inductive Link Prediction , booktitle =. doi:10.1109/ICDE55515.2023.00036
2023
-
[229]
Pattern Recognition Letters , author =
Locality-aware subgraphs for inductive link prediction in knowledge graphs , volume =. Pattern Recognition Letters , author =. 2023 , pages =. doi:10.1016/j.patrec.2023.02.004
2023 doi
-
[230]
UltraGCN: Ultra Simplification of Graph Convolutional Networks for Recommendation , booktitle =
Mao, Kelong and Zhu, Jieming and Xiao, Xi and Lu, Biao and Wang, Zhaowei and He, Xiuqiang , month = oct, year =. UltraGCN: Ultra Simplification of Graph Convolutional Networks for Recommendation , booktitle =. doi:10.1145/3459637.3482291
-
[231]
Temporal Conformity-aware Hawkes Graph Network for Recommendations , booktitle =
Ma, Chenglong and Ren, Yongli and Castells, Pablo and Sanderson, Mark , month = may, year =. Temporal Conformity-aware Hawkes Graph Network for Recommendations , booktitle =. doi:10.1145/3589334.3645354
-
[232]
IEEE Trans
Beyond Co-Occurrence: Multi-Modal Session-Based Recommendation , volume =. IEEE Trans. Knowl. Data Eng. , author =. 2024 , pages =. doi:10.1109/TKDE.2023.3309995
2024
-
[233]
ACM Trans
Bi-preference Learning Heterogeneous Hypergraph Networks for Session-based Recommendation , volume =. ACM Trans. Inf. Syst. , author =. 2024 , pages =. doi:10.1145/3631940
2024 doi
-
[234]
ACM Trans
H3GNN: Hybrid Hierarchical HyperGraph Neural Network for Personalized Session-based Recommendation , volume =. ACM Trans. Inf. Syst. , author =. 2024 , pages =. doi:10.1145/3630002
2024 doi
-
[235]
IEEE Transactions on Knowledge and Data Engineering , author =
Exploiting Group-Level Behavior Pattern for Session-Based Recommendation , volume =. IEEE Transactions on Knowledge and Data Engineering , author =. 2024 , pages =. doi:10.1109/TKDE.2023.3280310
2024
-
[236]
IEEE Transactions on Knowledge and Data Engineering , author =
Incorporating Link Prediction into Multi-Relational Item Graph Modeling for Session-Based Recommendation , volume =. IEEE Transactions on Knowledge and Data Engineering , author =. 2023 , pages =. doi:10.1109/TKDE.2021.3111436
2023
-
[237]
Friend Recommendations with Self-Rescaling Graph Neural Networks , booktitle =
Song, Xiran and Lian, Jianxun and Huang, Hong and Wu, Mingqi and Jin, Hai and Xie, Xing , month = aug, year =. Friend Recommendations with Self-Rescaling Graph Neural Networks , booktitle =. doi:10.1145/3534678.3539192
-
[238]
Bioinformatics , volume=
Pre-training graph neural networks for link prediction in biomedical networks , author=. Bioinformatics , volume=. 2022 , publisher=. doi:10.1093/bioinformatics/btac100
2022 doi
-
[239]
Computer Vision--ECCV 2020: 16th European Conference, Glasgow, UK, August 23--28, 2020, Proceedings, Part XXIII 16 , pages=
Bridging knowledge graphs to generate scene graphs , author=. Computer Vision--ECCV 2020: 16th European Conference, Glasgow, UK, August 23--28, 2020, Proceedings, Part XXIII 16 , pages=. 2020 , organization=. doi:10.1007/978-3-030-58592-1_36
2020 doi
-
[240]
Proceedings of the Twelfth ACM International Conference on Web Search and Data Mining , pages =
Huang, Xiao and Zhang, Jingyuan and Li, Dingcheng and Li, Ping , title =. Proceedings of the Twelfth ACM International Conference on Web Search and Data Mining , pages =. 2019 , publisher =. doi:10.1145/3289600.3290956
2019
-
[241]
Complex Query Answering with Neural Link Predictors , booktitle =
Minervini, Pasquale and Arakelyan, Erik and Daza, Daniel and Cochez, Michael , month = jul, year =. Complex Query Answering with Neural Link Predictors , booktitle =. doi:10.24963/ijcai.2022/741
2022 doi
-
[242]
Proceedings of the AAAI conference on artificial intelligence , volume=
Session-based recommendation with graph neural networks , author=. Proceedings of the AAAI conference on artificial intelligence , volume=. doi:10.1609/aaai.v33i01.3301346
-
[243]
Proceedings of the fifteenth ACM international conference on web search and data mining , pages=
Heterogeneous global graph neural networks for personalized session-based recommendation , author=. Proceedings of the fifteenth ACM international conference on web search and data mining , pages=. doi:10.1145/3488560.3498505
-
[244]
ACM Transactions on Information Systems (TOIS) , volume=
Exploiting cross-session information for session-based recommendation with graph neural networks , author=. ACM Transactions on Information Systems (TOIS) , volume=. 2020 , publisher=. doi:10.1145/3382764
2020 doi
-
[245]
Proceedings of the 43rd international ACM SIGIR conference on research and development in information retrieval , pages=
Global context enhanced graph neural networks for session-based recommendation , author=. Proceedings of the 43rd international ACM SIGIR conference on research and development in information retrieval , pages=. doi:10.1145/3397271.3401142
-
[246]
Proceedings of the 2017 ACM on Conference on Information and Knowledge Management , pages=
Neural attentive session-based recommendation , author=. Proceedings of the 2017 ACM on Conference on Information and Knowledge Management , pages=. doi:10.1145/3132847.3132926
2017
-
[247]
Proceedings of the 10th international conference on World Wide Web , pages=
Item-based collaborative filtering recommendation algorithms , author=. Proceedings of the 10th international conference on World Wide Web , pages=. doi:10.1109/CSSS.2012.507
2012 doi
-
[248]
Proceedings of the 14th ACM SIGKDD international conference on Knowledge discovery and data mining , pages=
Factorization meets the neighborhood: a multifaceted collaborative filtering model , author=. Proceedings of the 14th ACM SIGKDD international conference on Knowledge discovery and data mining , pages=. doi:10.1145/1401890.1401944
-
[249]
An AMR-based Link Prediction Approach for Document-level Event Argument Extraction , booktitle =
Yang, Yuqing and Guo, Qipeng and Hu, Xiangkun and Zhang, Yue and Qiu, Xipeng and Zhang, Zheng , editor =. An AMR-based Link Prediction Approach for Document-level Event Argument Extraction , booktitle =. 2023 , pages =. doi:10.18653/v1/2023.acl-long.720
2023 doi
-
[250]
Mathematical problems in engineering , volume=
Performance evaluation of frequent subgraph discovery techniques , author=. Mathematical problems in engineering , volume=. 2014 , publisher=
2014
-
[251]
Proceedings of the 2018 10th international conference on machine learning and computing , pages=
An efficient ranking scheme for frequent subgraph patterns , author=. Proceedings of the 2018 10th international conference on machine learning and computing , pages=
2018
-
[252]
Social Network Analysis and Mining , volume=
Online social network trend discovery using frequent subgraph mining , author=. Social Network Analysis and Mining , volume=. 2020 , publisher=
2020
-
[253]
Research Updates in Mathematics and Computer Science , volume=
A study on frequent subgraph mining approaches: Challenges and future directions , author=. Research Updates in Mathematics and Computer Science , volume=
-
[254]
AAAI , author =
Revisiting Document-Level Relation Extraction with Context-Guided Link Prediction , volume =. AAAI , author =. 2024 , pages =. doi:10.1609/aaai.v38i16.29792
2024 doi
-
[255]
Proceedings of the Sixteenth ACM International Conference on Web Search and Data Mining , pages=
Bring your own view: Graph neural networks for link prediction with personalized subgraph selection , author=. Proceedings of the Sixteenth ACM International Conference on Web Search and Data Mining , pages=. doi:10.1145/3539597.3570407
-
[256]
Proceedings of the 31st ACM International Conference on Information & Knowledge Management , pages=
Sampling enclosing subgraphs for link prediction , author=. Proceedings of the 31st ACM International Conference on Information & Knowledge Management , pages=. doi:10.1145/3511808.3557688
-
[257]
Proceedings of the ACM Web Conference 2023 , pages=
Link prediction on latent heterogeneous graphs , author=. Proceedings of the ACM Web Conference 2023 , pages=. doi:10.1145/3543507.3583284
2023
-
[258]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
Spear and shield: adversarial attacks and defense methods for model-based link prediction on continuous-time dynamic graphs , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=. doi:10.1609/aaai.v38i12.29239
-
[259]
IEEE Transactions on Knowledge and Data Engineering , volume=
High-quality temporal link prediction for weighted dynamic graphs via inductive embedding aggregation , author=. IEEE Transactions on Knowledge and Data Engineering , volume=. 2023 , publisher=. doi:10.1109/TKDE.2023.3238360
2023
-
[260]
International Journal of Machine Learning and Cybernetics , author =
Higher-order link prediction via light hypergraph neural network and hybrid aggregator , volume =. International Journal of Machine Learning and Cybernetics , author =. 2025 , pages =. doi:10.1007/s13042-024-02414-x
2025 doi
-
[261]
Expert Systems with Applications , volume=
A neighborhood rough sets-based ensemble method, with application to software fault prediction , author=. Expert Systems with Applications , volume=. 2025 , publisher=
2025
-
[262]
Information Processing & Management , volume=
An ensemble method using neighborhood granular combination entropy for software defect prediction , author=. Information Processing & Management , volume=. 2026 , publisher=
2026
-
[263]
Seventh International Conference on Digital Information Management (ICDIM 2012) , pages=
Graph mining: A survey of graph mining techniques , author=. Seventh International Conference on Digital Information Management (ICDIM 2012) , pages=. 2012 , organization=
2012
-
[264]
IEEE Transactions on Pattern Analysis and Machine Intelligence , year=
Graph foundation models: Concepts, opportunities and challenges , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , year=
-
[265]
Companion Proceedings of the ACM Web Conference 2024 , pages=
Lecture-style tutorial: Towards graph foundation models , author=. Companion Proceedings of the ACM Web Conference 2024 , pages=
2024
-
[266]
2025 , isbn =
Yang, Jinyu and Yang, Liangwei and Guo, Zeyuan and Gao, Jiayi and Wu, Jing and Chai, Tianhao and Huang, Hai and Yang, Cheng and Shi, Chuan , title =. 2025 , isbn =. doi:10.1145/3711896.3737410 , booktitle =
2025
Reviewed August 2, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.