Skip to content

Commit

Permalink
Disable lgbm verbose msg
Browse files Browse the repository at this point in the history
  • Loading branch information
lixfz committed Jul 16, 2023
1 parent 613965e commit ab20eae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hypernets/core/meta_learner.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def fit(self, space_signature):
x = x + store_x
y = y + store_y
if len(x) >= 2:
regressor = LGBMRegressor()
regressor = LGBMRegressor(min_data=1, min_data_in_bin=1, verbosity=-1)
regressor.fit(x, y)
# if logger.is_info_enabled():
# logger.info(regressor.predict(x))
Expand Down

0 comments on commit ab20eae

Please sign in to comment.