We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa9754 commit 83e3082Copy full SHA for 83e3082
network/oe.py
@@ -888,7 +888,10 @@ def find_existing_weights(self):
888
files = os.listdir(self.path_to_save_model)
889
files = [int(t.split('_')[0]) for t in files if 'best' not in t]
890
files.sort()
891
- self.load_model(epoch_to_load=files[-1])
+ 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.')
895
896
def run_model(self, optimizer):
897
self.optimizer = optimizer
0 commit comments