From a0d450e110c84ac4cd8fa2b0021cb1386ffcb583 Mon Sep 17 00:00:00 2001 From: Daniel Homola Date: Wed, 21 Oct 2020 23:02:32 +0100 Subject: [PATCH] Revert "return importance history from fit (#88)" This reverts commit ac237707d0c90633a1b85028f9d2d534767a2740. --- boruta/boruta_py.py | 6 ------ 1 file changed, 6 deletions(-) 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)