Skip to content

Commit

Permalink
Bug fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
daphne12345 committed Aug 29, 2024
1 parent 721a7e9 commit 38588b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepcave/evaluators/mo_fanova.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def calculate(
self._model = FanovaForest(self.cs, n_trees=n_trees, seed=seed)
self._model.train(X, Y)
df_res = (
pd.DataFrame(super(MOfANOVA, self).get_importances_(hp_names=None))
pd.DataFrame(super(MOfANOVA, self).get_importances(hp_names=None))
.loc[0:1]
.T.reset_index()
)
Expand Down

0 comments on commit 38588b1

Please sign in to comment.