Print a message when it is already donwloaded

This commit is contained in:
Edresson Casanova 2023-10-06 17:26:40 -03:00
parent ee1ef1c51e
commit 529ea3f67f
1 changed files with 2 additions and 0 deletions

View File

@ -378,6 +378,8 @@ class ModelManager(object):
if not config_local == config_remote:
print(f" > {model_name} is already downloaded however it has been changed. Redownloading it...")
self.create_dir_and_download_model(model_name, model_item, output_path)
else:
print(f" > {model_name} is already downloaded.")
else:
print(f" > {model_name} is already downloaded.")
else: