REVIEW 4 major objections 3 minor 36 references
FITTER: Vocabulary-Agnostic Cross-Domain Inference on Temporal Knowledge Graphs
T0 review · 4 major / 3 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read This paper claims that a vocabulary-agnostic structural model, FITTER, can perform temporal knowledge graph link prediction on a target graph with entirely unseen entities, relations, and timestamps, and reports consistent gains over…
desk verdict A genuinely new setting and an honest leakage appendix, but the fully-inductive claim rests on a disjoint-vocabulary protocol that the ICEWS-to-ICEWS rows likely violate. 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 machinery has three coordinated pieces. First, a vocabulary-agnostic relation interaction graph treats relations as nodes and connects them by head-to-head, head-to-tail, tail-to-head, and tail-to-tail interaction types; message passing on this graph produces query-conditioned relation representations that work for relation names never seen in training. Second, a sinusoidal temporal encoding $\mathrm{TE}(i)$ over snapshot index $i$ is time-shift invariant, meaning $\|\mathrm{TE}(\tau_2)-\mathrm{TE}(\tau_1)\|$ depends only on $\tau_2-\tau_1$, which is what lets a one-step temporal relation transfer across graphs with different timestamp vocabularies. Third, temporal-aware message passing runs on both a global entity graph and a local snapshot-window graph, fusing the two with a learned weight $\alpha$, and a multilayer perceptron scores the fused representation together with the temporal encoding. Together these components eliminate the need for any dataset-specific entity, relation, or timestamp embedding.
What would settle it
Construct two synthetic temporal knowledge graphs with identical snapshot counts, relation interactions, and recurrence statistics but different true time scales (for example, hourly versus yearly snapshots), train FITTER on one, and evaluate on the other; if transfer MRR stays flat the ordinal assumption survives, and if it drops sharply the relative-snapshot representation is not sufficient for cross-domain time.
Extended reading notes
Core claim
FITTER's central claim is that temporal link prediction can be made fully inductive by replacing absolute vocabularies with relative structure. Relation names are encoded through a relation interaction graph whose edges are structural interaction types, so a predicate is described by how it connects to other predicates rather than by a learned name embedding. Timestamps are encoded by sinusoidal positional encodings of their snapshot index, and the paper proves a time-shift invariance property: the Euclidean distance between two such encodings depends only on the difference in snapshot indices, not on the absolute values. Message passing over a global entity graph and a local windowed entity graph injects these temporal encodings into every propagation step, and the two views are fused before an MLP scores candidate quadruples. On the paper's evaluation, FITTER outperforms the compared inductive baselines on all 15 cross-domain transfer settings while recovering roughly 71-96 percent of the MRR of fully trained transductive models on in-domain benchmarks, using a model whose parameter count does not grow with the vocabulary.
Load-bearing premise
The load-bearing premise is that one snapshot of separation carries the same temporal meaning in every graph, so relative snapshot position can stand in for absolute time; if real duration or granularity affects the patterns being predicted, this encoding cannot transfer them.
Editorial extensions
If this is right
- A model trained on one temporal knowledge graph can be applied directly to a newly built target graph with no shared entities, relations, or timestamps, enabling cold-start link prediction.
- Training can be done on small, inexpensive graphs and transferred to large dense ones; the paper reports a model trained on the small ICEWS14 graph reaching 26.1 MRR on GDELT without retraining.
- Because the approach is purely structural, cross-domain temporal transfer is available even when the target graph has no textual descriptions or language-model assistance.
- The same fixed-size model handles both interpolation targets and extrapolation targets, so a single vocabulary-agnostic encoder covers settings that previously required separate transductive architectures.
- Parameter count is independent of dataset size, so adding more temporal graphs does not require additional per-dataset embedding tables.
- editorial extension: The ordinal snapshot encoding treats 'one snapshot apart' as the same temporal relationship whether the snapshots are 15 minutes or one year apart; a natural boundary test is to build synthetic graphs with identical snapshot counts and structure but different real durations and see whether transfer survives.
- editorial extension: The paper's per-relation analysis suggests the temporal encoding matters most for relations whose events cluster in short windows, implying that for temporally uniform relations, structural transfer alone may be doing most of the work.
- editorial extension: The time-shift invariance theorem implies the model can represent periodic patterns whose periods align with snapshot counts, but it cannot represent absolute elapsed time; systems that need real-duration reasoning would need an auxiliary duration channel.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes FITTER, a vocabulary-agnostic structural model for temporal knowledge graph link prediction. It represents relations via ULTRA-style relation interaction graphs, encodes time via sinusoidal positional encodings over snapshot indices, and performs message passing over local and global entity graphs before scoring with an MLP. The authors claim FITTER is the first fully-inductive structural model for TKG link prediction, supporting cross-domain transfer to graphs with entirely unseen entities, relations, and timestamps. They prove a time-shift invariance property of the sinusoidal encoder and evaluate on 15 cross-dataset transfer settings across six benchmarks, reporting consistent improvements over INGRAM, ULTRA, and TRIX, plus transductive comparisons and ablations. Code, checkpoints, and datasets are released, and the appendix documents and corrects two data-leakage bugs in the GraphOracle baseline.
Significance. If the central claims are correct, FITTER would be a meaningful contribution to cold-start TKG reasoning and Semantic Web interoperability: it has a dataset-size-independent parameter count, a clean local/global temporal decomposition, and an unusually transparent appendix that identifies and fixes baseline leakage. The release of code and checkpoints is also a strength. However, the central empirical claim currently rests on three unverified pillars: strict disjointness of training and inference vocabularies, the transferability of snapshot-index time encodings across heterogeneous granularities, and the statistical stability of the reported gains. The baseline set is also limited to static-KG fully-inductive models retrained on temporal data, so the 'first fully-inductive' claim is not benchmarked against any temporal structural fully-inductive method; this is a contextual caveat rather than an error. The paper has the potential to be a solid contribution, but the reported evidence does not yet establish the headline claim.
major comments (4)
- [Section 6 / Table 6 / Table 1] The fully-inductive condition defined in Section 2.1, V_train ∩ V_inf = ∅, R_train ∩ R_inf = ∅, T_train ∩ T_inf = ∅, is not demonstrated for several reported settings and is likely violated. For example, the row 'Trained on ICEWS14 → ICEWS05-15' and its reverse pair both involve ICEWS subsets: ICEWS14 is the 2014 slice of ICEWS05-15, so under standard splits the entity and relation vocabularies overlap heavily and the 2014 timestamps appear in ICEWS05-15's validation and test periods. Table 6 reports only standard dataset statistics and no overlap counts or a disjoint-vocabulary preprocessing step. Unless such preprocessing was applied, these settings are at least partially transductive, and the claim of fully-inductive inference on entirely unseen entities, relations, and timestamps is not established for the settings where the paper most needs it. The authors should report exact overlap statistics for all 15 settings or rerun the experiments with explicit disjointness filters.
- [Section 6 / Table 1] The experimental protocol states that Q_valid on the target TKG is used to tune inference-time hyperparameters, including the local window size k and fusion weight α. This contradicts the Table 1 caption's 'without fine-tuning' and weakens the transfer claim: the model is not applied to the target graph in a fully parameter-frozen manner. More seriously, in the overlapping ICEWS settings, the target validation set contains the same entities, relations, and timestamps as the source training graph, so tuning k and α on it can leak source temporal statistics into the reported target numbers. Even for genuinely disjoint settings, choosing hyperparameters on the target validation split is a form of target adaptation and should be disclosed as such, with an analysis of how sensitive the reported conclusions are to this choice.
- [Section 5.1 / Appendix I, Theorem 1] The transferable time representation is based solely on the snapshot index i, not on actual timestamps. Theorem 1 proves only that the Euclidean distance between sinusoidal embeddings of two indices depends on the index difference; it says nothing about whether equal index differences in different graphs correspond to equal real time intervals. Since GDELT uses 15-minute snapshots and YAGO uses yearly snapshots, 'one snapshot apart' has entirely different temporal semantics in the two graphs. The paper calls this 'granularity-agnostic', but the ordinal encoding cannot transfer duration-dependent temporal patterns such as 'within one week' or 'after four years'. The theoretical analysis therefore does not validate cross-domain transfer; it only verifies a trigonometric identity. A controlled experiment with rescaled or relabeled timestamps would be needed to support the granularity-agnostic claim.
- [Section 7 / Table 1] All results are reported as single runs without error bars, confidence intervals, or significance tests. Some of the reported advantages are small relative to the likely run-to-run variance: for example, trained on ICEWS05-15 and tested on GDELT, FITTER's MRR is 18.9 versus 17.9 for both ULTRA and TRIX, and on ICEWS18 FITTER's Hits@10 is 29.7 versus 32.1 for ULTRA and TRIX, i.e., FITTER is worse. The phrase 'consistently outperforms' is not supported without multi-seed results or at least a significance analysis. The authors should report mean and standard deviation over multiple seeds, or otherwise quantify the stability of the 15-setting comparison.
minor comments (3)
- [Section 7.1 / Takeaway 1] The text says the time span ranges 'from just 1 month (GDELT) to 189 years (YAGO)', but Table 6 lists GDELT with Times = 366, which is consistent with one year at daily granularity, not one month; Section 6 also describes GDELT as covering one year. This internal inconsistency should be corrected.
- [Appendix I / Theorem 3] The proof of Theorem 3 claims that d_PE ≥ T guarantees solvability of M w = g for arbitrary g, using a Moore-Penrose right inverse. This is incorrect unless M has full row rank; d_PE ≥ T alone does not ensure that, and the Moore-Penrose inverse gives a least-squares solution, not an exact solution, when rows are dependent. The theorem needs a full-rank assumption on M or a construction of frequencies that guarantees it.
- [Table 2] The table reports ICL and GenTKG results as fixed regardless of training source, with only '–' for MRR; the absence of MRR and the fact that these models are evaluated only on extrapolation tasks should be stated more prominently in the main text, since it makes the comparison less direct than Table 2's layout suggests.
Circularity Check
No significant circularity: the cross-domain transfer claim is empirical and self-contained against external benchmarks, and the theoretical analysis is not an input to the model.
full rationale
The central claim—FITTER transfers across unseen entity, relation, and timestamp vocabularies—is an empirical result measured on six external benchmarks with held-out target test splits, and no fitted value is relabeled as a prediction. The model's components are externally sourced: relation interaction graphs from ULTRA [5], NBFNet-style message passing [36], T-ComplEx/TNT-ComplEx temporal scoring [13], and standard sinusoidal positional encodings; only the loss (Eq. 9) and the architecture glue are new, and nothing in the training objective depends on the target test facts. Theorem 1 (time-shift invariance) is a true trigonometric identity that is entailed by the definition of TE and is referenced (Appendix I) as support for transferability, but it is not used to define, train, or select the model; the load-bearing premise that ordinal snapshot position is a sufficient cross-domain time representation is assumed in Section 5.1, which is an unvalidated assumption rather than a circular step. Self-citations [26] (HGE, temporal pattern subset in Section 7.3) and [32] (TERO, candidate-generation protocol in Section 6) are evaluation details, not load-bearing derivation. Two caveats are correctness risks, not circularity: the Section 6 assertion of disjoint vocabularies ('ensuring no overlap in entities, relations, or timestamps between training and inference graphs') is unverified for the ICEWS14 to ICEWS05-15 pairs, whose standard splits plausibly share 2014 timestamps and heavily overlapping entity/relation vocabularies, and hyperparameters alpha and k tuned on the target validation split mean 'without retraining' still uses per-target validation signal; neither reduces the reported predictions to the model's inputs by construction.
Assumptions & free parameters
free parameters (3)
- beta, sinusoidal frequency scale =
10,000
- alpha, local/global fusion weight =
0.5 for ICEWS14, 0.8 for ICEWS05-15 and GDELT
- k, local window size =
0 for ICEWS14, 1 for ICEWS05-15 and GDELT
assumptions (5)
- domain assumption Relative snapshot index is a transferable representation of time across datasets with different granularities and spans.
- domain assumption Training and inference graphs have disjoint entities, relations, and timestamps in all 15 scenarios.
- domain assumption ULTRA's relation interaction graph remains a valid vocabulary-agnostic relation encoder when applied to temporal facts and trained with the FITTER objective.
- ad hoc to paper The Euclidean distance property in Theorem 1 implies practical cross-domain transferability of temporal patterns.
- domain assumption A scalar convex combination of local and global entity representations is sufficient to fuse short-term and long-range temporal evidence.
Cite this review
Pith. "Pith review of FITTER: Vocabulary-Agnostic Cross-Domain Inference on Temporal Knowledge Graphs." pith.science (2026). https://pith.science/paper/LWBJDVPX
@misc{pith2026260810668,
author = {Pith},
title = {Pith review of: FITTER: Vocabulary-Agnostic Cross-Domain Inference on Temporal Knowledge Graphs},
year = {2026},
howpublished = {\url{https://pith.science/paper/LWBJDVPX}},
note = {Machine review of arXiv:2608.10668}
}
read the original abstract
Temporal knowledge graphs are central to many uses of the Semantic Web, but existing completion methods assume the entities, relation names, and timestamps to be reasoned about are already known at training time, restricting each model to a single graph and vocabulary. We propose FITTER, the first fully-inductive structural model for temporal knowledge graph link prediction that supports cross-domain transfer: the inference graph may contain entirely unseen entities, relation names, and timestamps drawn from a different domain. FITTER represents each predicate by its interaction patterns with others and time through encodings of relative rather than absolute ordering; message-passing fuses local and global temporal context to produce vocabulary-agnostic embeddings. We prove the temporal encoding is time-shift invariant and evaluate FITTER on cross-domain, cross-graph transfer over six temporal knowledge graph benchmarks of diverse domains, granularities, and time spans. FITTER consistently outperforms inductive baselines without retraining, indicating that vocabulary-agnostic structural learning is a viable foundation for inference over the heterogeneous knowledge graphs of the Semantic Web.
Figures
Figures from the paper (2 more)
Reference graph
Works this paper leans on
-
[1]
Cai, L., Mao, X., Zhou, Y., Long, Z., Wu, C., Lan, M.: A survey on temporal knowledge graph: Representation learning and applications (2024), https://arxiv. org/abs/2403.04782
arXiv 2024
-
[2]
Chen, M., Zhang, W., Zhu, Y., Zhou, H., Yuan, Z., Xu, C., Chen, H.: Meta- knowledge transfer for inductive knowledge graph embedding. In: Proceedings of the 45th international ACM SIGIR conference on research and development in information retrieval. pp. 927–937 (2022)
work page 2022
-
[3]
Ding, Z., Cai, H., Wu, J., Ma, Y., Liao, R., Xiong, B., Tresp, V.: zrllm: Zero-shot relational learning on temporal knowledge graphs with large language models. In: FITTER: Vocabulary-Agnostic Cross-Domain Inference on TKGs 17 Proceedings of the 2024 Conference of the North American Chapter of the Asso- ciation for Computational Linguistics: Human Languag...
work page 2024
-
[4]
In: Proceedings of the AAAI Conference on Artificial Intelligence
Du, E., Liu, S., Zhang, Y.: Graphoracle: Efficient fully-inductive knowledge graph reasoning via relation-dependency graphs. In: Proceedings of the AAAI Conference on Artificial Intelligence. vol. 40, pp. 19055–19063 (2026)
work page 2026
-
[5]
In: The Twelfth International Conference on Learning Representations (2024)
Galkin, M., Yuan, X., Mostafa, H., Tang, J., Zhu, Z.: Towards foundation mod- els for knowledge graph reasoning. In: The Twelfth International Conference on Learning Representations (2024)
2024
-
[6]
In: Proceedings of the 2018 conference on em- pirical methods in natural language processing
García-Durán, A., Dumančić, S., Niepert, M.: Learning sequence encoders for tem- poral knowledge graph completion. In: Proceedings of the 2018 conference on em- pirical methods in natural language processing. pp. 4816–4821 (2018)
work page 2018
-
[7]
Gastinger, J., Meilicke, C., Errica, F., Sztyler, T., Schülke, A., Stuckenschmidt, H.: History repeats itself: A baseline for temporal knowledge graph forecasting. In: IJCAI (2024)
work page 2024
-
[8]
In: Proceedings of the AAAI Conference on Artificial Intelligence
Goel, R., Kazemi, S.M., Brubaker, M., Poupart, P.: Diachronic embedding for temporal knowledge graph completion. In: Proceedings of the AAAI Conference on Artificial Intelligence. vol. 34, pp. 3988–3995 (2020)
work page 2020
Show all 36 references
-
[9]
In: International conference on learning representations (2020)
Han, Z., Chen, P., Ma, Y., Tresp, V.: Explainable subgraph reasoning for fore- casting on temporal knowledge graphs. In: International conference on learning representations (2020)
2020
-
[10]
Artificial intelligence194, 28–61 (2013)
Hoffart, J., Suchanek, F.M., Berberich, K., Weikum, G.: Yago2: A spatially and temporally enhanced knowledge base from wikipedia. Artificial intelligence194, 28–61 (2013)
2013
-
[11]
In: Proceedings of the 30th ACM international conference on information & knowledge management
Jia, Z., Pramanik, S., Saha Roy, R., Weikum, G.: Complex temporal question answering on knowledge graphs. In: Proceedings of the 30th ACM international conference on information & knowledge management. pp. 792–802 (2021)
2021
-
[12]
In: Proceedings of the 2020 Confer- ence on Empirical Methods in Natural Language Processing (EMNLP)
Jin, W., Qu, M., Jin, X., Ren, X.: Recurrent event network: Autoregressive struc- ture inferenceover temporal knowledge graphs. In: Proceedings of the 2020 Confer- ence on Empirical Methods in Natural Language Processing (EMNLP). pp. 6669– 6683 (2020)
2020
-
[13]
In: International Conference on Learning Representations (2020), https://openreview.net/forum?id=rke2P1BFwS
Lacroix, T., Obozinski, G., Usunier, N.: Tensor decompositions for temporal knowl- edge base completion. In: International Conference on Learning Representations (2020), https://openreview.net/forum?id=rke2P1BFwS
2020
-
[14]
Harvard Dataverse3(595), 28 (2015)
Lautenschlager, J., Shellman, S., Ward, M.: Icews event aggregations. Harvard Dataverse3(595), 28 (2015)
2015
-
[15]
In: Compan- ion proceedings of the the web conference 2018
Leblay, J., Chekol, M.W.: Deriving validity time in knowledge graph. In: Compan- ion proceedings of the the web conference 2018. pp. 1771–1776 (2018)
2018
-
[16]
In: Proceedings of the 2023 conference on empirical methods in natural language processing
Lee, D.H., Ahrabian, K., Jin, W., Morstatter, F., Pujara, J.: Temporal knowledge graph forecasting without knowledge using in-context learning. In: Proceedings of the 2023 conference on empirical methods in natural language processing. pp. 544–557 (2023)
2023
-
[17]
In: International Conference on Machine Learning
Lee, J., Chung, C., Whang, J.J.: Ingram: Inductive knowledge graph embedding via relation graphs. In: International Conference on Machine Learning. pp. 18796– 18809. PMLR (2023)
2023
-
[18]
Semantic web6(2), 167–195 (2015) 18 J
Lehmann, J., Isele, R., Jakob, M., Jentzsch, A., Kontokostas, D., Mendes, P.N., Hellmann, S., Morsey, M., Van Kleef, P., Auer, S., et al.: Dbpedia–a large-scale, multilingual knowledge base extracted from wikipedia. Semantic web6(2), 167–195 (2015) 18 J. Pan et al
2015
-
[19]
In: IJCAI
Li, Y., Sun, S., Zhao, J.: Tirgn: Time-guided recurrent graph network with local- global historical patterns for temporal knowledge graph reasoning. In: IJCAI. pp. 2152–2158 (2022)
2022
-
[20]
In: Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers)
Li,Z.,Guan,S.,Jin,X.,Peng, W.,Lyu,Y.,Zhu,Y.,Bai,L.,Li,W.,Guo,J., Cheng, X.: Complex evolutional pattern learning for temporal knowledge graph reasoning. In: Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers). pp. 29...
2022
-
[21]
In: Proceedings of the 46th international ACM SIGIR conference on re- search and development in information retrieval
Liang, K., Meng, L., Liu, M., Liu, Y., Tu, W., Wang, S., Zhou, S., Liu, X.: Learn from relational correlations and periodic events for temporal knowledge graph rea- soning. In: Proceedings of the 46th international ACM SIGIR conference on re- search and development in informat...
2023
-
[22]
Liao, R., Jia, X., Li, Y., Ma, Y., Tresp, V.: Gentkg: Generative forecasting on temporalknowledgegraphwithlargelanguagemodels.In:NAACL-HLT(Findings) (2024)
2024
-
[23]
Advances in Neural Information Processing Systems34, 2034–2045 (2021)
Liu, S., Grau, B., Horrocks, I., Kostylev, E.: Indigo: Gnn-based inductive knowl- edge graph completion using pair-wise encoding. Advances in Neural Information Processing Systems34, 2034–2045 (2021)
2021
-
[24]
In: Proceed- ings of the AAAI conference on artificial intelligence
Liu, Y., Ma, Y., Hildebrandt, M., Joblin, M., Tresp, V.: Tlogic: Temporal logical rules for explainable link forecasting on temporal knowledge graphs. In: Proceed- ings of the AAAI conference on artificial intelligence. vol. 36, pp. 4120–4127 (2022)
2022
-
[25]
arXiv preprint arXiv:2401.06072 (2024)
Luo, R., Gu, T., Li, H., Li, J., Lin, Z., Li, J., Yang, Y.: Chain of history: Learning and forecasting with llms for temporal knowledge graph completion. arXiv preprint arXiv:2401.06072 (2024)
2024 arXiv
-
[26]
In: Proceedings of the AAAI Conference on Artificial Intelligence
Pan, J., Nayyeri, M., Li, Y., Staab, S.: Hge: embedding temporal knowledge graphs in a product space of heterogeneous geometric subspaces. In: Proceedings of the AAAI Conference on Artificial Intelligence. vol. 38, pp. 8913–8920 (2024)
2024
-
[27]
Neurocomputing568, 127063 (2024)
Su, J., Ahmed, M., Lu, Y., Pan, S., Bo, W., Liu, Y.: Roformer: Enhanced trans- former with rotary position embedding. Neurocomputing568, 127063 (2024)
2024
-
[28]
In: Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing
Sun, H., Zhong, J., Ma, Y., Han, Z., He, K.: Timetraveler: Reinforcement learning for temporal knowledge graph forecasting. In: Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing. pp. 8306–8319 (2021)
2021
-
[29]
In: International conference on machine learning
Teru, K., Denis, E., Hamilton, W.: Inductive relation prediction by subgraph rea- soning. In: International conference on machine learning. pp. 9448–9457. PMLR (2020)
2020
-
[30]
In: international conference on machine learning
Trivedi, R., Dai, H., Wang, Y., Song, L.: Know-evolve: Deep temporal reasoning for dynamic knowledge graphs. In: international conference on machine learning. pp. 3462–3471. PMLR (2017)
2017
-
[31]
Com- munications of the ACM57(10), 78–85 (2014)
Vrandečić, D., Krötzsch, M.: Wikidata: A free collaborative knowledgebase. Com- munications of the ACM57(10), 78–85 (2014)
2014
-
[32]
In: Proceedings of the 28th International Conference on Computational Linguistics
Xu, C., Nayyeri, M., Alkhoury, F., Yazdi, H.S., Lehmann, J.: Tero: A time-aware knowledge graph embedding via temporal rotation. In: Proceedings of the 28th International Conference on Computational Linguistics. pp. 1583–1593 (2020)
2020
-
[33]
In: Proceedings of the 31st ACM International Conference on Information & Knowledge Management
Zhang, F., Zhang, Z., Ao, X., Zhuang, F., Xu, Y., He, Q.: Along the time: Timeline- traced embedding for temporal knowledge graph completion. In: Proceedings of the 31st ACM International Conference on Information & Knowledge Management. pp. 2529–2538 (2022)
2022
-
[34]
In: The Third Learning on Graphs Conference (2025) FITTER: Vocabulary-Agnostic Cross-Domain Inference on TKGs 19
Zhang, Y., Bevilacqua, B., Galkin, M., Ribeiro, B.: Trix: A more expressive model for zero-shot domain transfer in knowledge graphs. In: The Third Learning on Graphs Conference (2025) FITTER: Vocabulary-Agnostic Cross-Domain Inference on TKGs 19
2025
-
[35]
In: Pro- ceedings of the AAAI Conference on Artificial Intelligence
Zhu, C., Chen, M., Fan, C., Cheng, G., Zhang, Y.: Learning from history: Model- ing temporal knowledge graphs with sequential copy-generation networks. In: Pro- ceedings of the AAAI Conference on Artificial Intelligence. vol. 35, pp. 4732–4740 (2021)
2021
-
[36]
Advances in neural information processing systems34, 29476–29490 (2021) 20 J
Zhu, Z., Zhang, Z., Xhonneux, L.P., Tang, J.: Neural bellman-ford networks: A general graph neural network framework for link prediction. Advances in neural information processing systems34, 29476–29490 (2021) 20 J. Pan et al. A Parameter Count and Complexity From Table 5, we ...
2021
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.