-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
[CUDA] Add Huber regression objective for cuda_exp #5462
Conversation
update log in test_register_logger
…oft/LightGBM into cuda/objective-regression
add test cases for regression objectives
…oft/LightGBM into cuda/objective-regression
CHECK_GT(num_machines, 1); | ||
tree->SetLeafOutput(i, 0.0); | ||
n_nozeroworker_perleaf[i] = 0; | ||
if (boosting_on_cuda_) { |
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.
should we remove boosting_on_cuda_
in future, and always boost on CUDA?
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.
Yes. After we implement all objectives in CUDA, we will remove boosting_on_cuda_
for cuda_exp
.
This pull request has been automatically locked since there has not been any recent activity since it was closed. To start a new related discussion, open a new issue at https://github.com/microsoft/LightGBM/issues including a reference to this. |
Add Huber regression objective for
cuda_exp
.