Skip to content
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

Merged
merged 5 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Parameters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 ``cpu``, ``gpu`` device type and ``serial`` tree learner

- **Note**: ``regression_l1`` objective is not supported with linear tree boosting

Expand Down
2 changes: 1 addition & 1 deletion include/LightGBM/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ struct Config {
// desc = categorical features are used for splits as normal but are not used in the linear models
// desc = missing values should not be encoded as ``0``. Use ``np.nan`` for Python, ``NA`` for the CLI, and ``NA``, ``NA_real_``, or ``NA_integer_`` for R
// desc = it is recommended to rescale data before training so that features have similar mean and standard deviation
// desc = **Note**: works only with ``cpu`` device type and ``serial`` tree learner
// desc = **Note**: works only with ``cpu``, ``gpu`` device type and ``serial`` tree learner
// desc = **Note**: ``regression_l1`` objective is not supported with linear tree boosting
// desc = **Note**: setting ``linear_tree=true`` significantly increases the memory use of LightGBM
// desc = **Note**: if you specify ``monotone_constraints``, constraints will be enforced when choosing the split points, but not when fitting the linear models on leaves
Expand Down
Loading