fix: logger has been converted to a property

so it can't be assigned anymore
e9f0f23ce4 (diff-d668633497da171f21b8069c33d594b1ee2ad47c1be4848bea33292bc80b7f5c)
This commit is contained in:
Matthias 2023-11-22 06:54:37 +01:00
parent 202b72fd8e
commit e2863e1620

View File

@ -19,7 +19,6 @@ class TensorboardCallback(BaseCallback):
def __init__(self, verbose=1, actions: Type[Enum] = BaseActions):
super().__init__(verbose)
self.model: Any = None
self.logger: Any = None
self.actions: Type[Enum] = actions
def _on_training_start(self) -> None: