Previously, OpenFE().fit() and FeatureSelector() will print out the LightGBM info messages even when verbose=False is set.
This is because the value of self.verbose isn't passed into the params of the LightGBM models used in the functions.
This PR fixes issue #41
Previously,
OpenFE().fit()
andFeatureSelector()
will print out the LightGBM info messages even whenverbose=False
is set. This is because the value ofself.verbose
isn't passed into theparams
of the LightGBM models used in the functions. This PR fixes issue #41