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

prohibit use of regression_l1 objective with linear trees #6859

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

jameslamb
Copy link
Collaborator

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

if (objective == std::string("regresson_l1")) {
Log::Fatal("Cannot use regression_l1 objective when fitting linear trees.");
}

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).

@jameslamb jameslamb added the fix label Mar 11, 2025
@jameslamb jameslamb changed the title WIP: prohibit use of regression_l1 objective with linear trees prohibit use of regression_l1 objective with linear trees Mar 11, 2025
@jameslamb jameslamb marked this pull request as ready for review March 11, 2025 04:09
Copy link
Collaborator

@StrikerRUS StrikerRUS left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very nice, thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants