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 b15c7e8 commit aa2fc51
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions deepcave/evaluators/mo_ablation.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,15 +186,13 @@ def calculate(
self.df_importances = pd.concat([self.df_importances, df_res])
self.df_importances = self.df_importances.reset_index(drop=True)

def calculate_ablation_path(self, df: pd.DataFrame, objectives_normed: List[str], weighting: np.ndarray,
budget: Optional[Union[int, float]]) -> pd.DataFrame:
def calculate_ablation_path(
self,
df: pd.DataFrame,
objectives_normed: List[str],
weighting: np.ndarray,
budget: Optional[Union[int, float]],
) -> pd.DataFrame:
self,
df: pd.DataFrame,
objectives_normed: List[str],
weighting: np.ndarray,
budget: Optional[Union[int, float]],
) -> pd.DataFrame:
"""
Calculate the ablation path performances.
Expand Down

0 comments on commit aa2fc51

Please sign in to comment.