-
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
[docs] Remove only cpu note due to gpu support for linear trees #6686
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.
Thanks for your contribution @JAroyan !
This file is automatically generated and isn't intended to be edited manually.
You should edit this file:
LightGBM/include/LightGBM/config.h
Line 667 in c7d3ac1
// desc = **Note**: works only with ``cpu`` device type and ``serial`` tree learner |
and then run the following helper script: https://github.com/microsoft/LightGBM/blob/master/.ci/parameter-generator.py.
docs/Parameters.rst
Outdated
@@ -795,7 +795,7 @@ Dataset Parameters | |||
|
|||
- it is recommended to rescale data before training so that features have similar mean and standard deviation | |||
|
|||
- **Note**: works only with ``cpu`` device type and ``serial`` tree learner | |||
- **Note**: works only with ``serial`` tree learner |
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.
Don't forget about cuda
device type.
- **Note**: works only with ``serial`` tree learner | |
- **Note**: works only with ``cpu``, ``gpu`` device type and ``serial`` tree learner |
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.
Thank you for the clarification @StrikerRUS !
I added cpu and gpu as device type and did not added cuda
as device type.
As far as I could understand from the pull request, device type cuda is not yet supported or?
The parameter-generator.py. run worked well!
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.
Thank you!
As far as I could understand from the pull request, device type cuda is not yet supported or?
Yes, I have the same opinion.
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!
Please agree with CLA by following instructions from #6686 (comment). After that we'll be able to merge your PR.
@microsoft-github-policy-service agree |
I updated the documentation note of 'linear_tree' due to the introduced support of 'device_type=gpu' in pull request (#6555).