leaderboard / src /utils.py
pminervini's picture
update
b34c95e
raw
history blame
No virus
393 Bytes
from huggingface_hub import snapshot_download
import time
def my_snapshot_download(repo_id, revision, local_dir, repo_type, max_workers):
for i in range(10):
try:
snapshot_download(repo_id=repo_id, revision=revision, local_dir=local_dir, repo_type=repo_type, max_workers=max_workers)
return
except Exception:
time.sleep(60)
return