The code of paper Topology-Aware Correlations Between Relations for Inductive Link Prediction in Knowledge Graphs. Jiajun Chen, Huarui He, Feng Wu, Jie Wang. AAAI 2021.
Hi, I am interested in your work and I think the design of the relational correlation module is very clever. I have a question about the experiment in your paper.
There are three variants of TACT mentioned in Section 4.
TACT w/o RA
TACT w/o RC
TACT-base
And I found the code segment for the ablation study as follows, which is in model/dgl/graph_classifier.py.
I want to know the relations about the variants and the values of parameter ablation. I found TACT-base corresponds to the case ablation == 3, but the code for ablation==1 and ablation==2 is inconsistent with the description in the paper for the variants TACT w/o RA and TACT w/o RC. Where is the code for the two variants? Or did I misunderstand the two variants?
Hi, I am interested in your work and I think the design of the relational correlation module is very clever. I have a question about the experiment in your paper.
There are three variants of TACT mentioned in Section 4.
TACT w/o RA
TACT w/o RC
TACT-base
And I found the code segment for the ablation study as follows, which is in
model/dgl/graph_classifier.py
.I want to know the relations about the variants and the values of parameter
ablation
. I foundTACT-base
corresponds to the caseablation == 3
, but the code forablation==1
andablation==2
is inconsistent with the description in the paper for the variantsTACT w/o RA
andTACT w/o RC
. Where is the code for the two variants? Or did I misunderstand the two variants?Thanks.