-
Notifications
You must be signed in to change notification settings - Fork 17
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
Heterogeneous Link Prediction Example for cuGraph-PyG #104
base: branch-25.02
Are you sure you want to change the base?
Heterogeneous Link Prediction Example for cuGraph-PyG #104
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
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.
This is only a correction to the type hints. Method behavior is unchanged.
Confirmed this is working on 8xH100 |
common: | ||
- output_types: [conda] | ||
packages: | ||
- pytorch>=2.3,<2.6a0 |
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.
I'm a bit confused, do we also need an upper bound pinning for pip packages? It appears to be reusing *pytorch_pip
below, which won't have the <2.6a0
upper bound.
Adds a heterogeneous link prediction example for cuGraph-PyG that uses the Taobao dataset. Loosely based on the Taobao example from the PyG repository.
Adds ability to specify fanout as a dictionary to better align with PyG API.
Fixes a bug where the number of negative samples was calculated incorrectly, causing additional unwanted negative samples to be generated.
Updates the negative sampling call to match the new behavior added in rapidsai/cugraph#4885
Merge after rapidsai/cugraph#4898