-
Notifications
You must be signed in to change notification settings - Fork 303
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
Remove Deprecated Sampling Options #3816
Remove Deprecated Sampling Options #3816
Conversation
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.
LGTM, thanks. I think this is technically a (perfectly acceptable) breaking API change, but I'm asking the other teams to see what they do to make sure we're using the right labels.
Yep, cuDF also considers this a breaking change so our labels are correct here. |
/merge |
The `uniform_neighbor_sample` code is becoming increasingly difficult to maintain. This PR removes all the options that were deprecated in the previous release, and also deprecates the `with_edge_properties` option, which will be replaced by returning whatever properties are in the graph in the next release. This PR also resolves a FIXME by allowing `fanout_vals` to be a `cupy.ndarray`, `numpy.ndarray`, or `cudf.Series`. Closes rapidsai#3698 Authors: - Alex Barghi (https://github.com/alexbarghi-nv) Approvers: - Brad Rees (https://github.com/BradReesWork) - Rick Ratzel (https://github.com/rlratzel) URL: rapidsai#3816
The
uniform_neighbor_sample
code is becoming increasingly difficult to maintain. This PR removes all the options that were deprecated in the previous release, and also deprecates thewith_edge_properties
option, which will be replaced by returning whatever properties are in the graph in the next release.This PR also resolves a FIXME by allowing
fanout_vals
to be acupy.ndarray
,numpy.ndarray
, orcudf.Series
.Closes #3698