We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b77d6ee commit aa60e38Copy full SHA for aa60e38
cascade/trainers/trainer.py
@@ -76,7 +76,7 @@ def _load_last_model(line: ModelLine) -> Tuple[Model, int]:
76
model_num = len(line) - 1
77
while True:
78
try:
79
- model = line.load(model_num, only_meta=False)
+ model = line.load(model_num)
80
return model, model_num
81
except Exception as e:
82
logger.warning(f"Model {model_num} files were not found\n{e}")
0 commit comments