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

@@ -149,10 +149,10 @@ class Model(ABC):
)
# 3. Delegate file tracking to isolated helper method
self._log_to_csv(mode, accuracy, classes, report_dict)
self._log_to_csv(mode, accuracy,report_dict)
def _log_to_csv(self, mode, accuracy, classes, report_dict):
def _log_to_csv(self, mode, accuracy, report_dict):
"""Handles directory structures, file setups, and distinct CSV column formatting."""
arch_name = self.__class__.__name__.lower()
save_dir = Path("reports")