scikit-learn-contrib / boruta_py

Python implementations of the Boruta all-relevant feature selection method.
BSD 3-Clause "New" or "Revised" License
1.46k stars 252 forks source link

fixing reference to self.is_lgb #82

Closed lmassaron closed 4 years ago

lmassaron commented 4 years ago

There was a lost reference to self.is_lgb but now we use self._is_lightgbm. That causes an error to be fixed by replacing self.is_lgb with self._is_lightgbm.

danielhomola commented 4 years ago

thanks for fixing this!