leaderboard / src /utils.py
pminervini's picture
update
7dfe065
raw
history blame
No virus
405 Bytes
from huggingface_hub import snapshot_download
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:
import time
time.sleep(60)
return