Update download_models.py
Browse files- download_models.py +2 -2
download_models.py
CHANGED
|
@@ -14,10 +14,10 @@ FILES = [
|
|
| 14 |
for remote_path in FILES:
|
| 15 |
local_path = os.path.join(MODEL_DIR, remote_path)
|
| 16 |
if os.path.exists(local_path):
|
| 17 |
-
print(f"Skipping {remote_path}
|
| 18 |
continue
|
| 19 |
print(f"Downloading {remote_path}...")
|
| 20 |
hf_hub_download(repo_id=REPO_ID, filename=remote_path, local_dir=MODEL_DIR)
|
| 21 |
print(f" Saved to {local_path}")
|
| 22 |
|
| 23 |
-
print("\nAll models ready!")
|
|
|
|
| 14 |
for remote_path in FILES:
|
| 15 |
local_path = os.path.join(MODEL_DIR, remote_path)
|
| 16 |
if os.path.exists(local_path):
|
| 17 |
+
print(f"Skipping {remote_path}")
|
| 18 |
continue
|
| 19 |
print(f"Downloading {remote_path}...")
|
| 20 |
hf_hub_download(repo_id=REPO_ID, filename=remote_path, local_dir=MODEL_DIR)
|
| 21 |
print(f" Saved to {local_path}")
|
| 22 |
|
| 23 |
+
print("\nAll models ready!")
|