-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
Added Graph Attention Network example #1174
Conversation
👷 Deploy Preview for pytorch-examples-preview processing.
|
❌ Deploy Preview for pytorch-examples-preview failed.
|
Re #1131 |
docs/source/index.rst
Outdated
@@ -177,3 +177,14 @@ experiment with PyTorch. | |||
This example implements the `Semi-Supervised Classification with Graph Convolutional Networks <https://arxiv.org/pdf/1609.02907.pdf>`__ paper on the CORA database. | |||
|
|||
`GO TO EXAMPLE <https://github.com/pytorch/examples/blob/main/gcn>`__ :opticon:`link-external` | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doc build is failing, most likely culprit is changes to this file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the review. I rechecked that.
My local build is served without any issues with sphinx in venv.
i'll keep looking to see where could the issue be
@sekyondaMeta @svekars any idea what's going on with the doc build here? |
I wonder if this failure here is the culprit: One of the changes added numpy 1.25.1 and there is probably a requirement somewhere else for 1.24.2 |
@sekyondaMeta thanks, removed the version specification from the requirements file |
@svekars could I please get access to the netlify logs? I can't see why this is failing |
Thanks @msaroufim |
Make a separate PR. I'm still not sure what's going on with docbuikd since I can't read the build failures |
Hi,
Added Graph Attention Network example. Took the dataset processing procedure from the gcn example with some changes to be consistent with the existing gnn example.
would love to hear feedback.