Replies: 2 comments 5 replies
-
Yes, the |
Beta Was this translation helpful? Give feedback.
3 replies
-
Hi, I am now reimplement a paper which use If given out = self.conv1(x, edge_index, edge_type, edge_norm) Is there any equal method I can workaround? Like out = self.conv1(x, edge_index, edge_type)
out = norm(out, edge_norm) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Dear authors,
I found an argument of the


RGCNConv
class in the old version of PyG (v 1.3.0), namelyedge_norm
(as shown below):I guess this argument should be the problem-specific normalization constant as claimed in equation (2) of the original paper:
However, I didn't find it in the latest version of PyG (v 2.0.2). It seems like this API has changed a lot.
So, how can I set the
edge_norm
now (i.e., the latest version of PyG)?Beta Was this translation helpful? Give feedback.
All reactions