Skip to content
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

Aggregation Issue #10

Open
Swknight opened this issue Jul 23, 2023 · 0 comments
Open

Aggregation Issue #10

Swknight opened this issue Jul 23, 2023 · 0 comments

Comments

@Swknight
Copy link

Swknight commented Jul 23, 2023

Coagulation for your awesome work!
However, I have the question about the aggregation method in you code.
I found the features is concatenated to the result of the DNN and activation function in one_propagate function as the code:

features = self.mess_dropout(torch.cat([self.act(
                dnns[i](torch.matmul(graph, features))), features], 1))

But, according to the prior paper, they were always first concatenated the features and then pass the DNN and activation function, as:
features = self.mess_dropout(self.act(dnns[i](torch.cat([torch.matmul(graph, features), features], 1))))

If there are some special consideration? Look forward to your reply, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant