unlearning CR

This commit is contained in:
2026-06-07 13:49:28 +02:00
parent 61c3447150
commit bc7fd3850d
6 changed files with 126 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ class Strategy:
def __init__(self):
# Dynamically set file name based on the class name (e.g., 'NormalizingLinearFiltration.txt')
self.strategy_name = self.__class__.__name__
self.log_file = f"reports/{self.strategy_name}_metrics.txt"
self.log_file = f"reports/{self.strategy_name}/metrics.txt"
self._initialize_log_file()
def _initialize_log_file(self):