Skip to content

Commit 83e3082

Browse files
committed
if no weights exists do not try to load weights
1 parent ffa9754 commit 83e3082

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

network/oe.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,10 @@ def find_existing_weights(self):
888888
files = os.listdir(self.path_to_save_model)
889889
files = [int(t.split('_')[0]) for t in files if 'best' not in t]
890890
files.sort()
891-
self.load_model(epoch_to_load=files[-1])
891+
if len(files) > 0:
892+
self.load_model(epoch_to_load=files[-1])
893+
else:
894+
print('=== Could not find any existing weight files, training from scratch.')
892895

893896
def run_model(self, optimizer):
894897
self.optimizer = optimizer

0 commit comments

Comments
 (0)