How to set fixed value to other lightgbm parameters #271
Unanswered
keremtatlici
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi @keremtatlici, you can create a customized LGBM learner and set the parameters you want to fix in the constructor of this customized learner accordingly (similar to the way we set the 'verbose' parameter here). Then you can add this customized learner to your automl instance to use it (you can find an example of how to create and add a customized learner in this notebook In [22] |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to set fixed value to other lightgbm parameters that is not on the search tree. For example in lightgbm doc there is a parameter named reg_sqrt. I want to make that parameter True while tuning the other parameters.But how to ?
Beta Was this translation helpful? Give feedback.
All reactions