We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
I see edge_weight can be used in GCN. Please tell how to use edge_weight in GAT?
Here (link) it's mentioned that "Note that the edge_weight will not be used."
Thanks
The text was updated successfully, but these errors were encountered:
Also, please tell if we can have multi-dimensional edge weights. For example, using 2-dimensional edge_weight in the GCN example, it gives an error.
x = np.random.randn(5, 20).astype(np.float32) # 5 nodes, 20 features edge_index = np.array([ [0, 0, 1, 3], [1, 2, 2, 1] ]) edge_weight = np.array([[0.9,0.5], [0.8,0.5], [0.1,0.5], [0.2,0.5]]).astype(np.float32)
Sorry, something went wrong.
No branches or pull requests
Hi,
I see edge_weight can be used in GCN. Please tell how to use edge_weight in GAT?
Here (link) it's mentioned that "Note that the edge_weight will not be used."
Thanks
The text was updated successfully, but these errors were encountered: