diff --git a/bundle/python_bundle_workflow/scripts/inference.py b/bundle/python_bundle_workflow/scripts/inference.py index fab321b009..19f9aa21ee 100644 --- a/bundle/python_bundle_workflow/scripts/inference.py +++ b/bundle/python_bundle_workflow/scripts/inference.py @@ -66,7 +66,7 @@ def __init__(self, dataset_dir: str = "."): self.dataset_dir = dataset_dir def initialize(self): - self.props = {} + pass def run(self): self.evaluator.run() diff --git a/bundle/python_bundle_workflow/scripts/train.py b/bundle/python_bundle_workflow/scripts/train.py index 56fc36056a..bc8a47afa6 100644 --- a/bundle/python_bundle_workflow/scripts/train.py +++ b/bundle/python_bundle_workflow/scripts/train.py @@ -81,7 +81,6 @@ def __init__(self, dataset_dir: str = "."): def initialize(self): set_determinism(0) - self.props = {} def run(self): self.trainer.run()