-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about gatv2 code #228
Comments
Hello! I am also new to GAT, I found your issue. So, to your question, the implementation in the website is correct (partially), I think this is because
is:
and is instead:
So, the operation is
So, this is correct: But, if you want to match the notation (to avoid confusion), should (I think) be this. However, the current implementation is correct: |
Hello, I am a beginner in GAT , and I've been studying your GATv2 code lately. I have a question while going through the code in
When calculating
g_sum
g_sum = g_l_repeat + g_r_repeat_interleave
You mentioned in the comments: Now we add the two tensors to get
But in the previous code,
g_l_repeat
getsand
g_r_repeat_interleave
getsSo I think the result of adding the two tensors should be
I'm not sure whether I may have overlooked some crucial information or if there's a mismatch between your comments and the code. I would greatly appreciate it if you could help clarify my confusion. Thank you.
The text was updated successfully, but these errors were encountered: