Skip to content

Commit ab20eae

Browse files
committed
Disable lgbm verbose msg
1 parent 613965e commit ab20eae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hypernets/core/meta_learner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def fit(self, space_signature):
5353
x = x + store_x
5454
y = y + store_y
5555
if len(x) >= 2:
56-
regressor = LGBMRegressor()
56+
regressor = LGBMRegressor(min_data=1, min_data_in_bin=1, verbosity=-1)
5757
regressor.fit(x, y)
5858
# if logger.is_info_enabled():
5959
# logger.info(regressor.predict(x))

0 commit comments

Comments
 (0)