Pith. sign in

REVIEW 4 major objections 7 minor 43 references

Future Link Prediction Without Memory or Aggregation

T0 review · 4 major / 7 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read CRAFT predicts future links without memory or aggregation, using node identifiers and cross-attention to beat memory-based models on most benchmarks.

desk verdict CRAFT is a clean and provocative simplification of temporal graph models, but it never embeds the source node itself, so the 'unique identifiers' story is incomplete and the k-window assumption is untested. read the letter →

arxiv 2505.19408 v1 pith:MGGUIKLM submitted 2025-05-26 cs.LG

classification cs.LG
keywords futurelinkpredictiontemporalgraphslearnablenodeembeddingscross-attentiontarget-awarematchingseenandunseenedgesmemory-freearchitectureCRAFT
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

This paper argues that the heavy machinery of temporal-graph models, specifically learnable memory states and neighbor aggregation, is not what makes future link prediction work. It proposes CRAFT, which keeps only two ingredients: a learnable embedding for every node that acts as a unique identifier, and cross-attention that lets each candidate destination attend directly to the source's k most recent neighbors. On 17 datasets spanning both repeated and never-before-seen edges, CRAFT reports the best MRR on the majority of them, with relative improvements over the second-best baseline exceeding 10% on 10 of the 17 datasets. The point is that a deliberately simple, target-aware architecture can outperform complex memory-augmented models while being faster to train and run.

What carries the argument

The load-bearing component is the cross-attention layer between a candidate destination and the source's k recent neighbors: each destination vector is the query, and the source's neighbor embeddings with learnable positional encodings are the keys and values. This makes the score of an edge explicitly depend on how well the destination matches the source's interaction history, rather than on independently computed node states. The learnable node embeddings provide the unique identifiers that let the model tell nodes apart when raw node or edge features are missing or sparse. The elapsed-time and repeat-time projections supply the temporal context that attention alone does not encode.

What would settle it

Take a temporal graph with strong periodic re-engagement, where a node interacts with a particular contact only after a long gap and with more than k other events in between, and train CRAFT with the largest tested k. If a full-history memory model or a variant that reads the entire neighbor history predicts those re-engagements while CRAFT does not, the recent-window premise fails.

Watch

Extended reading notes

Core claim

The central claim is that future link prediction does not need memory modules or aggregation modules, provided each node has a unique learnable identifier and the model evaluates candidate destinations against the source's recent behavior. CRAFT realizes this with trainable node embeddings used as identifiers and a stacked cross-attention module in which each candidate destination attends to the k most recent neighbors of the source before the query time. The destination's elapsed time since its last activity is appended before an MLP scores the edge, and on seen-edge-heavy datasets a repeat-time encoding is added. With this minimal design, CRAFT reports top MRR on the majority of the 17 datasets and consistently outperforms memory-based baselines on unseen-dominant datasets, where models that cannot identify nodes or match targets are claimed to fail.

Load-bearing premise

The model assumes that everything needed to predict a future edge is contained in the source's k most recent interactions before the prediction time, together with the destination's last-activity time; any signal older than that window is invisible to the model.

Editorial extensions

If this is right

  • Memory and aggregation modules can be removed from future-link-prediction architectures without sacrificing accuracy; the two requirements that remain are node identifiers and target-aware matching.
  • On datasets dominated by never-before-seen edges, where prior models degrade, CRAFT's design is claimed to give large relative gains, suggesting that identifier-based expressiveness and target-conditioned scoring are key to generalizing to unseen edges.
  • Because CRAFT only retrieves the source's k recent neighbors and scores all candidate destinations jointly via one cross-attention pass, inference cost scales more cheaply than methods that retrieve and aggregate neighbors for both endpoints.
  • Seen-edge-heavy datasets can absorb a repeat-time encoding, and the same architecture then remains competitive even where co-occurrence-based baselines currently lead.

Reading between the lines

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

  • A direct test of the k-window premise would be to construct a dataset with long-range periodic re-engagements, links that recur after more than k intervening events, and compare CRAFT against a memory-augmented model; if CRAFT fails there, the recent-neighbor window is the limiting factor.
  • The architecture resembles a session-based recommender whose 'session' is the source's recent neighborhood; adapting CRAFT's cross-attention scoring to cold-start nodes or to session-based recommendation may inherit its efficiency without needing temporal-graph machinery.
  • The paper's comparisons with DyGFormer variants suggest that how the destination conditions the representation matters more than the encoder family; one could test whether any lightweight target-aware pooling rule, not just attention, recovers most of the gain.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 7 minor

Summary. Future link prediction on temporal graphs requires ranking candidate destinations for a source at a future time. The paper proposes CRAFT, an architecture that replaces memory and aggregation modules with learnable node embeddings (as unique identifiers) and cross-attention between the candidate destination set and the source's k most recent neighbors. A variant CRAFT-R adds repeat-time encoding for datasets with a high seen-edge ratio. The paper reports MRR results on 17 datasets, compares against seven baselines, provides ablations on the two proposed components, gives a time-complexity analysis, and claims consistent superior performance with high efficiency. The code is publicly available.

Significance. The paper's central claim is provocative: if true, it shows that the memory/aggregation paradigm is not necessary for strong future link prediction, and that a simple cross-attention model over a fixed-size neighbor window suffices. The strengths are the breadth of the evaluation (17 datasets including large-scale TGB/TGB-Seq), the public code, the efficiency analysis, and the controlled ablations showing that learnable embeddings and cross-attention improve over featureless baselines. However, the significance is tempered by three protocol issues: the source node never receives its own learnable embedding, the baseline numbers on TGB-Seq/TGB are transferred from prior papers rather than re-run under the same protocol, and the model switches between CRAFT and CRAFT-R based on the seen-edge ratio. These issues do not necessarily invalidate the method, but they affect the strength of the 'consistently superior' claim and the paper's conceptual narrative.

major comments (4)
  1. [Section 4.1, Eqs. (4)-(7)] The source node s is never embedded: the query H(0)=D contains only candidate destination embeddings, and the keys/values S contain only the k recent neighbor embeddings. The claimed 'unique node identifiers' therefore apply to destinations and neighbors but not to the source. Two sources with identical recent-neighbor sequences (same nodes, same order) receive identical cross-attention context, so the model cannot distinguish them. This is a load-bearing point for the paper's motivation that learnable embeddings provide the unique-identifier capability that memory/aggregation lack. Please add an ablation that includes e(s) in the key/value sequence (or uses it as an additional query) and report whether MRR changes; if it does, the claim that memory and aggregation can be discarded needs qualification.
  2. [Section 5.1, Experimental Setup; Appendix B.4] The results for all baselines on TGB-Seq and TGB datasets are taken directly from [40,41] rather than re-run under identical conditions. Meanwhile, the paper states that collision checks are applied to small datasets and that this 'may lead to different results compared to prior works.' Since the collision-check protocol is known to improve most methods, transferring baseline numbers from papers that did not use this protocol makes the comparison potentially biased in CRAFT's favor. Please re-run the baselines under the same collision-check and negative-sampling protocol, or at least quantify the impact of collision checks on the transferred baseline numbers.
  3. [Tables 2 and 3; Section 5.1] The evaluation uses two different models: CRAFT without repeat-time encoding on unseen-dominant datasets (Table 2) and CRAFT-R with repeat-time encoding on seen-dominant datasets (Table 3). The abstract and introduction claim that 'CRAFT consistently achieves superior performance,' but this is a claim about a model family with per-dataset variant selection. Moreover, on three seen-dominant datasets (wikipedia, uci, Flights) CRAFT-R is worse than DyGFormer by 0.44-1.50 MRR points. Please present results for a single unified configuration, or explicitly frame the contribution as CRAFT/CRAFT-R with the selection rule disclosed as part of the method, and soften the 'consistently' language accordingly.
  4. [Section 4.1; Table 6] The k-neighbor window (k in {30,60,90,120} after tuning) is the only channel through which the source's history enters the model, and the paper never tests whether this window is sufficient. There is no sensitivity analysis over k beyond the tuning grid, no comparison with full-history sequences, and no variant with a memory module to check what information is lost. This is the load-bearing assumption of the architecture: if longer windows or full histories materially improve MRR, the claim that memory and aggregation can be discarded would need to be qualified. Please add at least a k-sensitivity curve and a full-history or sliding-window comparison.
minor comments (7)
  1. [Section 4.1, Eq. (7) text] The phrase 'edge presentation' should be 'edge representation'.
  2. [Table 4] The dataset is named 'tgbl-flight' in Table 4 but 'tgbl-flights' in Tables 2 and 3; please unify the naming.
  3. [Section 4.2.1] The text refers to 'the example shown in Figure 1' as a graph with nodes a and f, but Figure 1 is the architecture diagram; the figure numbering appears to be off.
  4. [Section 5.2] For Yelp, TGAT-LE uses one layer while the reported TGAT baseline uses two layers; the comparison of TGAT vs TGAT-LE on Yelp is not fully controlled.
  5. [Appendix B.4] It is unclear whether the collision check is applied at test time or only during training and validation; please clarify, since it affects the validity of the reported test MRR.
  6. [Section 4.1] The description 'we first extract the k recent neighbors of s before t' should clarify that this is a fixed-size window, and the paper should state the default window size used when reporting results.
  7. [Section 3] The repeated phrase 'the termstargetanddestinationinterchangeably' is missing spaces; a formatting typo.

Circularity Check

0 steps flagged · score 2.0 of 10

No circular derivation: CRAFT's predictions are scored by an external BPR/MRR pipeline; the only self-citation (TGB-Seq) is a public benchmark, not a load-bearing reduction.

full rationale

I walked the derivation chain from the architecture (Eqs. 1-7) to the empirical claims. The model is defined by learnable node embeddings, positional encoding of the source's k recent neighbors, cross-attention with destination embeddings, elapsed-time and repeat-time features, and an MLP scoring head trained with BPR. None of these equations is defined in terms of the MRR it is later evaluated against, and no predicted quantity is a fitted parameter renamed as a result. The k-window and transductive-embedding choices are architectural assumptions, acknowledged in C.2 and C.5, but they are not reductions: the paper does not derive 'memory and aggregation are unnecessary' from the architecture itself; it supports that claim with external MRR comparisons on 17 datasets. The one self-referential element is that TGB-Seq [40] is the authors' own benchmark and is used both for motivation and for baseline numbers, while other TGB baseline numbers come from [41]. This is a public, reproducible benchmark rather than an unverified uniqueness theorem, so it does not make the central claim circular. The ablation studies (TGAT-LE, DyGFormer-LE, w/o PosEnc/w/o Elapsed/w/o Repeat) are empirical and could in principle falsify the design. No equation equals another by construction; I therefore find no significant circularity, only a minor convenience self-citation, which the scoring rubric places at 2.

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

CRAFT introduces no new physical or theoretical entities; its 'inventions' are design choices (learnable embeddings, cross-attention, repeat-time encoding). The main burden is empirical: the model's inductive bias that recent neighbor context is sufficient.

free parameters (4)
  • learnable node embeddings = d=64 or 128 per dataset
    Trained jointly as unique node identifiers; central to expressiveness, but they are learned parameters, not derived.
  • neighbor window size k = 30, 60, 90, or 120 per dataset (Table 6)
    Chosen by grid search on validation set; determines how much source history the model sees.
  • repeat-time encoding flag = enabled for seen-dominant, disabled for unseen-dominant
    Model variant CRAFT-R vs CRAFT is chosen based on dataset repeat ratio, a post-hoc selection.
  • embedding dimension F = 64 (small) or 128 (large)
    Chosen per dataset, not justified by analysis.
assumptions (4)
  • domain assumption The k most recent neighbors of the source contain sufficient context for future link prediction.
    Section 4.1 extracts only k recent neighbors; no evidence that longer histories help.
  • domain assumption Cross-attention between destination and source's neighbors captures compatibility better than neighborhood co-occurrence or independent node encoding.
    Section 4.2.2 argues this via examples and ablations, not a formal guarantee.
  • domain assumption Prior-reported baseline numbers are comparable to CRAFT's runs.
    Section 5.1 takes baseline results from [40,41] without re-running all under identical hardware and negative sampling.
  • standard math Standard transformer building blocks (softmax attention, FFN, GELU) behave as expected.
    Equations 2-6 rely on standard attention and MLP components.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Future Link Prediction Without Memory or Aggregation." pith.science (2026). https://pith.science/paper/MGGUIKLM

@misc{pith2026250519408,
  author       = {Pith},
  title        = {Pith review of: Future Link Prediction Without Memory or Aggregation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/MGGUIKLM}},
  note         = {Machine review of arXiv:2505.19408}
}
read the original abstract

Future link prediction on temporal graphs is a fundamental task with wide applicability in real-world dynamic systems. These scenarios often involve both recurring (seen) and novel (unseen) interactions, requiring models to generalize effectively across both types of edges. However, existing methods typically rely on complex memory and aggregation modules, yet struggle to handle unseen edges. In this paper, we revisit the architecture of existing temporal graph models and identify two essential but overlooked modeling requirements for future link prediction: representing nodes with unique identifiers and performing target-aware matching between source and destination nodes. To this end, we propose Cross-Attention based Future Link Predictor on Temporal Graphs (CRAFT), a simple yet effective architecture that discards memory and aggregation modules and instead builds on two components: learnable node embeddings and cross-attention between the destination and the source's recent interactions. This design provides strong expressive power and enables target-aware modeling of the compatibility between candidate destinations and the source's interaction patterns. Extensive experiments on diverse datasets demonstrate that CRAFT consistently achieves superior performance with high efficiency, making it well-suited for large-scale real-world applications.

Figures

Figures reproduced from arXiv: 2505.19408 by the authors.

Figure 1
Figure 1. The general model architecture of existing temporal graph learning methods. [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Model architecture of our proposed method, CRAFT: representing nodes with learnable [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Illustration of different source-destination matching schemes for predicting whether [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (8 more)
Figure 4
Figure 4. Figure 4: Test set inference time of CRAFT and baselines on Flights, Yelp and WikiLink. [PITH_FULL_IMAGE:figures/full_fig_p008_4.png]
Figure 5
Figure 5. Figure 5: Evaluating the impact of learnable node embeddings and cross-attention: CRAFT vs. [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Evaluating the impact of positional encoding, elapsed time encoding, repeat time encoding. [PITH_FULL_IMAGE:figures/full_fig_p009_6.png]
Figure 7
Figure 7. Figure 7: Evaluating the impact of learnable node embeddings and cross-attention: CRAFT and more [PITH_FULL_IMAGE:figures/full_fig_p014_7.png]
Figure 8
Figure 8. Figure 8: Comparisons of positional encoding vs. time encoding and BPR loss vs. BCE loss. [PITH_FULL_IMAGE:figures/full_fig_p015_8.png]
Figure 9
Figure 9. Figure 9: MRR scores of CRAFT-R, SASRec and SGNN-HN on seen-dominant bipartite datasets. [PITH_FULL_IMAGE:figures/full_fig_p016_9.png]
Figure 10
Figure 10. Figure 10: MRR scores of CRAFT, SASRec and SGNN-HN on unseen-dominant bipartite datasets. [PITH_FULL_IMAGE:figures/full_fig_p016_10.png]
Figure 11
Figure 11. Figure 11: Training time per epoch of CRAFT and baselines on Flights, Yelp and WikiLink. [PITH_FULL_IMAGE:figures/full_fig_p017_11.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

43 extracted references · 30 canonical work pages

  1. [1]

    The sur- prising power of graph neural networks with random node initialization.arXiv preprint arXiv:2010.01179, 2020

    Ralph Abboud, Ismail Ilkan Ceylan, Martin Grohe, and Thomas Lukasiewicz. The sur- prising power of graph neural networks with random node initialization.arXiv preprint arXiv:2010.01179, 2020

  2. [2]

    Temporal graph neural networks for social recommendation

    Ting Bai, Youjie Zhang, Bin Wu, and Jian-Yun Nie. Temporal graph neural networks for social recommendation. In2020 IEEE International Conference on Big Data (Big Data), pages 898–903. IEEE, 2020

  3. [3]

    Towards invariance to node identifiers in graph neural networks.arXiv preprint arXiv:2502.13660, 2025

    Maya Bechler-Speicher, Moshe Eliasof, Carola-Bibiane Schonlieb, Ran Gilad-Bachrach, and Amir Globerson. Towards invariance to node identifiers in graph neural networks.arXiv preprint arXiv:2502.13660, 2025

  4. [4]

    Hot: Higher-order dynamic graph representation learning with efficient transformers

    Maciej Besta, Afonso Claudino Catarino, Lukas Gianinazzi, Nils Blach, Piotr Nyczyk, Hubert Niewiadomski, and Torsten Hoefler. Hot: Higher-order dynamic graph representation learning with efficient transformers. InLearning on Graphs Conference, pages 15–1. PMLR, 2024

  5. [5]

    Learning phrase representations using rnn encoder- decoder for statistical machine translation.arXiv preprint arXiv:1406.1078, 2014

    Kyunghyun Cho, Bart Van Merriënboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Holger Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder- decoder for statistical machine translation.arXiv preprint arXiv:1406.1078, 2014

  6. [6]

    Weilin Cong, Si Zhang, Jian Kang, Baichuan Yuan, Hao Wu, Xin Zhou, Hanghang Tong, and Mehrdad Mahdavi. Do we really need complicated model architectures for temporal networks? InThe Eleventh International Conference on Learning Representations, ICLR 2023, Kigali, Rwanda, May 1-5, 2023, 2023. URL https://openreview.net/forum?id=ayPPc0SyLv1

  7. [7]

    Applications of link prediction in social networks: A review.Journal of Network and Computer Applications, 166:102716, 2020

    Nur Nasuha Daud, Siti Hafizah Ab Hamid, Muntadher Saadoon, Firdaus Sahran, and Nor Badrul Anuar. Applications of link prediction in social networks: A review.Journal of Network and Computer Applications, 166:102716, 2020

  8. [8]

    Temporal link prediction: A survey.New Generation Computing, 38(1):213–258, 2020

    Aswathy Divakaran and Anuraj Mohan. Temporal link prediction: A survey.New Generation Computing, 38(1):213–258, 2020

Show all 43 references
  1. [9]

    Machine learning on dynamic graphs: a survey on applications.2023 IEEE Ninth Multimedia Big Data (BigMM), pages 32–39, 2023

    Sanaz Hasanzadeh Fard. Machine learning on dynamic graphs: a survey on applications.2023 IEEE Ninth Multimedia Big Data (BigMM), pages 32–39, 2023

  2. [10]

    A systemic analysis of link prediction in social network.Artificial Intelligence Review, 52:1961–1995, 2019

    Sogol Haghani and Mohammad Reza Keyvanpour. A systemic analysis of link prediction in social network.Artificial Intelligence Review, 52:1961–1995, 2019

  3. [11]

    Alan G. Hawkes. Spectra of some self-exciting and mutually exciting point processes. Biometrika, 58:83–90, 1971

  4. [12]

    Tempo- ral graph benchmark for machine learning on temporal graphs.Advances in Neural Information Processing Systems, 36, 2024

    Shenyang Huang, Farimah Poursafaei, Jacob Danovitch, Matthias Fey, Weihua Hu, Emanuele Rossi, Jure Leskovec, Michael Bronstein, Guillaume Rabusseau, and Reihaneh Rabbany. Tempo- ral graph benchmark for machine learning on temporal graphs.Advances in Neural Information Processi...

  5. [13]

    Self-attentive sequential recommendation

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

  6. [14]

    Representation learning for dynamic graphs: A survey.Journal of Machine Learning Research, 21(70):1–73, 2020

    Seyed Mehran Kazemi, Rishab Goel, Kshitij Jain, Ivan Kobyzev, Akshay Sethi, Peter Forsyth, and Pascal Poupart. Representation learning for dynamic graphs: A survey.Journal of Machine Learning Research, 21(70):1–73, 2020

  7. [15]

    Learning temporal attention in dynamic graphs with bilinear interactions.Plos one, 16(3):e0247936, 2021

    Boris Knyazev, Carolyn Augusta, and Graham W Taylor. Learning temporal attention in dynamic graphs with bilinear interactions.Plos one, 16(3):e0247936, 2021. 10

  8. [16]

    Predicting dynamic embedding trajectory in temporal interaction networks

    Srijan Kumar, Xikun Zhang, and Jure Leskovec. Predicting dynamic embedding trajectory in temporal interaction networks. InProceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD 2019, Anchorage, AK, USA, August 4-8, 2019, pages 126...

  9. [17]

    Revisiting recommendation loss functions through contrastive learning (technical report).arXiv preprint arXiv:2312.08520, 2023

    Dong Li, Ruoming Jin, and Bin Ren. Revisiting recommendation loss functions through contrastive learning (technical report).arXiv preprint arXiv:2312.08520, 2023

  10. [18]

    What graph neural networks cannot learn: depth vs width.arXiv preprint arXiv:1907.03199, 2019

    Andreas Loukas. What graph neural networks cannot learn: depth vs width.arXiv preprint arXiv:1907.03199, 2019

  11. [19]

    Neighborhood-aware scalable temporal network representation learning

    Yuhong Luo and Pan Li. Neighborhood-aware scalable temporal network representation learning. InLearning on Graphs Conference, pages 1–1. PMLR, 2022

  12. [20]

    The neural hawkes process: A neurally self-modulating multivariate point process.Advances in neural information processing systems, 30, 2017

    Hongyuan Mei and Jason M Eisner. The neural hawkes process: A neurally self-modulating multivariate point process.Advances in neural information processing systems, 30, 2017

  13. [21]

    de Rijke

    Zhiqiang Pan, Fei Cai, Wanyu Chen, Honghui Chen, and M. de Rijke. Star graph neural networks for session-based recommendation.Proceedings of the 29th ACM International Conference on Information & Knowledge Management, 2020. URL https://api.semanticscholar.org/ CorpusID:221339954

  14. [22]

    Pietro Panzarasa, Tore Opsahl, and Kathleen M Carley. Patterns and dynamics of users’ behavior and interaction: Network analysis of an online community.Journal of the American Society for Information Science and Technology, 60(5):911–932, 2009

  15. [23]

    Towards better evaluation for dynamic link prediction.Advances in Neural Information Processing Systems, 35:32928–32941, 2022

    Farimah Poursafaei, Shenyang Huang, Kellin Pelrine, and Reihaneh Rabbany. Towards better evaluation for dynamic link prediction.Advances in Neural Information Processing Systems, 35:32928–32941, 2022

  16. [24]

    Temporal graph learning for financial world: Algorithms, scalability, explainability & fairness

    Nitendra Rajput and Karamjit Singh. Temporal graph learning for financial world: Algorithms, scalability, explainability & fairness. InProceedings of the 28th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, pages 4818–4819, 2022

  17. [25]

    Bpr: Bayesian personalized ranking from implicit feedback.arXiv preprint arXiv:1205.2618, 2012

    Steffen Rendle, Christoph Freudenthaler, Zeno Gantner, and Lars Schmidt-Thieme. Bpr: Bayesian personalized ranking from implicit feedback.arXiv preprint arXiv:1205.2618, 2012

  18. [26]

    Temporal graph networks for deep learning on dynamic graphs

    Emanuele Rossi, Ben Chamberlain, Fabrizio Frasca, Davide Eynard, Federico Monti, and Michael Bronstein. Temporal graph networks for deep learning on dynamic graphs. InICML 2020 Workshop on Graph Representation Learning, 2020

  19. [27]

    Methods and metrics for cold-start recommendations

    Andrew I Schein, Alexandrin Popescul, Lyle H Ungar, and David M Pennock. Methods and metrics for cold-start recommendations. InProceedings of the 25th annual international ACM SIGIR conference on Research and development in information retrieval, pages 253–260, 2002

  20. [28]

    Foundations and modeling of dynamic networks using dynamic graph neural networks: A survey.iEEE Access, 9:79143–79168, 2021

    Joakim Skarding, Bogdan Gabrys, and Katarzyna Musial. Foundations and modeling of dynamic networks using dynamic graph neural networks: A survey.iEEE Access, 9:79143–79168, 2021

  21. [29]

    Co-author rela- tionship prediction in heterogeneous bibliographic networks

    Yizhou Sun, Rick Barber, Manish Gupta, Charu C Aggarwal, and Jiawei Han. Co-author rela- tionship prediction in heterogeneous bibliographic networks. In2011 international conference on advances in social networks analysis and mining, pages 121–128. IEEE, 2011

  22. [30]

    Mlp-mixer: An all-mlp architecture for vision.Advances in neural information processing systems, 34: 24261–24272, 2021

    Ilya O Tolstikhin, Neil Houlsby, Alexander Kolesnikov, Lucas Beyer, Xiaohua Zhai, Thomas Unterthiner, Jessica Yung, Andreas Steiner, Daniel Keysers, Jakob Uszkoreit, et al. Mlp-mixer: An all-mlp architecture for vision.Advances in neural information processing systems, 34: 242...

  23. [31]

    Dyrep: Learn- ing representations over dynamic graphs

    Rakshit Trivedi, Mehrdad Farajtabar, Prasenjeet Biswal, and Hongyuan Zha. Dyrep: Learn- ing representations over dynamic graphs. In7th International Conference on Learning Representations, ICLR 2019, New Orleans, LA, USA, May 6-9, 2019, 2019. URL https: //openreview.net/forum?...

  24. [32]

    Attention is all you need.Advances in Neural Information Processing Systems, 2017

    A Vaswani. Attention is all you need.Advances in Neural Information Processing Systems, 2017

  25. [33]

    Tcl: Transformer-based dynamic graph modelling via contrastive learning.arXiv preprint arXiv:2105.07944, 2021

    Lu Wang, Xiaofu Chang, Shuang Li, Yunfei Chu, Hui Li, Wei Zhang, Xiaofeng He, Le Song, Jingren Zhou, and Hongxia Yang. Tcl: Transformer-based dynamic graph modelling via contrastive learning.arXiv preprint arXiv:2105.07944, 2021

  26. [34]

    Inductive representation learning in temporal networks via causal anonymous walks

    Yanbang Wang, Yen-Yu Chang, Yunyu Liu, Jure Leskovec, and Pan Li. Inductive representation learning in temporal networks via causal anonymous walks. In9th International Conference on Learning Representations, ICLR 2021, Virtual Event, Austria, May 3-7, 2021, 2021. URL https://...

  27. [35]

    Trend: Temporal event and node dynamics for graph representation learning

    Zhihao Wen and Yuan Fang. Trend: Temporal event and node dynamics for graph representation learning. InProceedings of the ACM Web Conference 2022, pages 1159–1169, 2022

  28. [36]

    Recurrent recommender networks

    Chao-Yuan Wu, Amr Ahmed, Alex Beutel, Alexander J Smola, and How Jing. Recurrent recommender networks. InProceedings of the tenth ACM international conference on web search and data mining, pages 495–503, 2017

  29. [37]

    On the feasibility of simple transformer for dynamic graph modeling

    Yuxia Wu, Yuan Fang, and Lizi Liao. On the feasibility of simple transformer for dynamic graph modeling. InProceedings of the ACM on Web Conference 2024, pages 870–880, 2024

  30. [38]

    Inductive representation learning on temporal graphs

    Da Xu, Chuanwei Ruan, Evren Körpeoglu, Sushant Kumar, and Kannan Achan. Inductive representation learning on temporal graphs. In8th International Conference on Learning Representations, ICLR 2020, Addis Ababa, Ethiopia, April 26-30, 2020, 2020. URL https: //openreview.net/foru...

  31. [39]

    Towards ideal temporal graph neural networks: Evaluations and conclusions after 10,000 gpu hours.arXiv preprint arXiv:2412.20256, 2024

    Yuxin Yang, Hongkuan Zhou, Rajgopal Kannan, and Viktor Prasanna. Towards ideal temporal graph neural networks: Evaluations and conclusions after 10,000 gpu hours.arXiv preprint arXiv:2412.20256, 2024

  32. [40]

    Tgb-seq benchmark: Challenging temporal gnns with complex sequential dynamics

    Lu Yi, Jie Peng, Yanping Zheng, Fengran Mo, Zhewei Wei, Yuhang Ye, Yue Zixuan, and Zengfeng Huang. Tgb-seq benchmark: Challenging temporal gnns with complex sequential dynamics. InThe Thirteenth International Conference on Learning Representations

  33. [41]

    An empirical evaluation of temporal graph benchmark.arXiv preprint arXiv:2307.12510, 2023

    Le Yu. An empirical evaluation of temporal graph benchmark.arXiv preprint arXiv:2307.12510, 2023

  34. [42]

    Towards better dynamic graph learning: New ar- chitecture and unified library

    Le Yu, Leilei Sun, Bowen Du, and Weifeng Lv. Towards better dynamic graph learning: New ar- chitecture and unified library. InAdvances in Neural Information Processing Systems 36: Annual Conference on Neural Information Processing Systems 2023, NeurIPS 2023, New Orleans, LA, U...

  35. [43]

    A survey of dynamic graph neural networks.arXiv preprint arXiv:2404.18211, 2024

    Yanping Zheng, Lu Yi, and Zhewei Wei. A survey of dynamic graph neural networks.arXiv preprint arXiv:2404.18211, 2024. 12 Table 4: Datasets statistics: seven TGB-Seq datasets, four TGB datasets, and six commonly used datasets. This table is partially adopted from TGB-Seq [40]....

Pith tools

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