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

Higher Powers Implementation #5

Closed
datavistics opened this issue Jul 29, 2019 · 1 comment
Closed

Higher Powers Implementation #5

datavistics opened this issue Jul 29, 2019 · 1 comment

Comments

@datavistics
Copy link

image

for iteration in range(self.iterations-1):
base_features = spmm(normalized_adjacency_matrix["indices"], normalized_adjacency_matrix["values"], base_features.shape[0], base_features)
return base_features

To me it looks like this is implementing
H(l+1) = σ(A^j * H(l) * W(l))

image

Can you explain where W_j and the concatenation are taking place?

@benedekrozemberczki
Copy link
Owner

In the respective setup_layer_structures method in the trainer_and_networks.py file.

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

2 participants