Skip to content

Commit 84e7629

Browse files
committed
Revert "remove self._probs in initialize"
This reverts commit 013a8bf.
1 parent cf74488 commit 84e7629

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

bundle/python_bundle_workflow/scripts/inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(self, dataset_dir: str = "."):
6767
self.dataset_dir = dataset_dir
6868

6969
def initialize(self):
70-
pass
70+
self.props = {}
7171

7272
def run(self):
7373
self.evaluator.run()

bundle/python_bundle_workflow/scripts/train.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def __init__(self, dataset_dir: str = "."):
8282

8383
def initialize(self):
8484
set_determinism(0)
85+
self.props = {}
8586

8687
def run(self):
8788
self.trainer.run()

0 commit comments

Comments
 (0)