Skip to content

Commit

Permalink
Revert "return importance history from fit (#88)"
Browse files Browse the repository at this point in the history
This reverts commit ac23770.
  • Loading branch information
danielhomola committed Oct 21, 2020
1 parent ac23770 commit a0d450e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions boruta/boruta_py.py
Expand Up @@ -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
--------
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit a0d450e

Please sign in to comment.