prohibit use of regression_l1 objective with linear trees #6859
+20
−4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
From the very first PR where @btrotta introduced linear trees here (#3299), it was never intended that they'd be used with the L1 loss. However, that's been technically possible the entire time because of a typo here:
LightGBM/src/io/config.cpp
Lines 431 to 433 in 6437645
This fixes that typo, and adds a test ensuring that LightGBM raises the expected errors when using unsupported parameters with linear trees.
Notes for Reviewers
This bug was caught by the newest version of
crates-ci/typos
... pretty cool to see a spellchecker catching a real bug!!! (cc @borchero )This PR also updates other
pre-commit
hooks to their latest versions (though they didn't catch any new issues).