diff --git a/deepcave/evaluators/mo_ablation.py b/deepcave/evaluators/mo_ablation.py index ee61655d..a5c87ec9 100644 --- a/deepcave/evaluators/mo_ablation.py +++ b/deepcave/evaluators/mo_ablation.py @@ -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.