diff --git a/boruta/boruta_py.py b/boruta/boruta_py.py index 525b525..fc225fb 100644 --- a/boruta/boruta_py.py +++ b/boruta/boruta_py.py @@ -136,10 +136,6 @@ class BorutaPy(BaseEstimator, TransformerMixin): best) features are assigned rank 1 and tentative features are assigned rank 2. - importance_history_ : array-like, shape [n_features, n_iters] - - The calculated importance values for each feature across all iterations. - Examples -------- @@ -382,8 +378,6 @@ def _fit(self, X, y): # all are selected, thus we set feature supports to True self.support_ = np.ones(n_feat, dtype=np.bool) - self.importance_history_ = imp_history - # notify user if self.verbose > 0: self._print_results(dec_reg, _iter, 1)