-
Notifications
You must be signed in to change notification settings - Fork 550
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
[REVIEW] Removing unused shuffle_features parameter #2943
[REVIEW] Removing unused shuffle_features parameter #2943
Conversation
Please update the changelog in order to start CI tests. View the gpuCI docs here. |
shuffle_features
parametershuffle_features
parameter
shuffle_features
parameterThere 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.
Changes LGTM. Thanks Vinay
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.
Looks good, just one stray comment // }. Pre-approving in the meantime.
cpp/src/decisiontree/memory.cuh
Outdated
h_colstart = | ||
new MLCommon::host_buffer<unsigned int>(host_allocator, stream, parentsz); | ||
totalmem += ncols * sizeof(int) + parentsz * sizeof(int); | ||
// } |
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.
why the commented-out brace?
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.
Missed it. Thanks John.
rerun tests |
PR #2881 accidentally reintroduced
shuffle_features
as a RF training parameter. The parameter is unused in the implementation. It is also inconsistent with scikit-learn RF. Removing it with this PR.