KroZenDev commited on
Commit
cac3832
·
verified ·
1 Parent(s): 08e9fd5

Update download_models.py

Browse files
Files changed (1) hide show
  1. 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}, already exists.")
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!")