-
Notifications
You must be signed in to change notification settings - Fork 554
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
Use public cudf APIs where possible #5795
Use public cudf APIs where possible #5795
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.
Approving with one small suggestion.
if constructor == cudf.DataFrame: | ||
original_type = Frame | ||
|
||
assert isinstance(clf.predict_proba(X), original_type) | ||
assert isinstance(clf.predict(X), original_type) | ||
assert isinstance(clf.predict(X), cudf.Series) | ||
else: | ||
assert isinstance(clf.predict(X), type(X)) |
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.
Let's do this instead. It reduces some duplication of clf.predict
.
expected_type = cudf.Series if constructor == cudf.DataFrame else type(X)
assert isinstance(clf.predict(X), expected_type)
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.
Good idea. Addressed
/merge |
Avoiding
core
imports as they tend to be "private"