Replies: 1 comment
-
Thanks for letting us know. This was mistakenly introduced by #7117, and I fixed it in #7183. Let me know if you have any doubts. |
Beta Was this translation helpful? Give feedback.
0 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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey, I recently noticed that two strange variables are defined in
HGTConv.__init__()
(torch_geometric/nn/conv/hgt_conv.py), causing low-level errors:self.dst_node_types
: It is assigned the unique values of second meta relation type.For example:
The variable is used at one line, which causes an error at my code (torch_geometric/nn/conv/hgt_conv.py:212-215):
self.src_types
: It is assigned a non-unique list of all src nodes occurring at each edge type. The variable is unused in HGTConv as well as in its parent-classes.Is there any possibility that it is a bug which hasn't been fixed yet? Or can you explain why and how these variables are used?
Thank you in advance!
Beta Was this translation helpful? Give feedback.
All reactions