We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 613965e commit ab20eaeCopy full SHA for ab20eae
hypernets/core/meta_learner.py
@@ -53,7 +53,7 @@ def fit(self, space_signature):
53
x = x + store_x
54
y = y + store_y
55
if len(x) >= 2:
56
- regressor = LGBMRegressor()
+ regressor = LGBMRegressor(min_data=1, min_data_in_bin=1, verbosity=-1)
57
regressor.fit(x, y)
58
# if logger.is_info_enabled():
59
# logger.info(regressor.predict(x))
0 commit comments