From bb458d8305a49db5a2dbebedafadf09cd22cf3d1 Mon Sep 17 00:00:00 2001 From: Selda Uyanik Date: Tue, 17 Dec 2024 15:17:30 +0300 Subject: [PATCH] Fix ilnter space error --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index bf5c83aca..869dd253a 100755 --- a/train.py +++ b/train.py @@ -1567,7 +1567,7 @@ def update_old_model_params(model_path, model_new): torch.save(model_old, model_path) if msglogger: msglogger.info('Model `%s` is old. Missing parameters added with default values!', - model_path) + model_path) else: print(f'Model {model_path} is old. Missing parameters added with default values!')