removed attributes from pandas logger

This commit is contained in:
Maximilian Huettenrauch 2024-03-27 13:55:13 +01:00
parent 6d9b697efe
commit 9055eb5924

View File

@ -27,8 +27,6 @@ class PandasLogger(BaseLogger):
exclude_arrays,
)
self.log_path = log_dir
self.csv_name = os.path.join(self.log_path, "log.csv")
self.pkl_name = os.path.join(self.log_path, "log.pkl")
self.data: dict[str, list] = defaultdict(list)
self.last_save_step = -1