Skip to content

Instantly share code, notes, and snippets.

@vuiseng9
Created August 6, 2023 19:09
Show Gist options
  • Save vuiseng9/798f9eb710b57b7a13ff6b9a75dfbeb1 to your computer and use it in GitHub Desktop.
Save vuiseng9/798f9eb710b57b7a13ff6b9a75dfbeb1 to your computer and use it in GitHub Desktop.
import os
from huggingface_hub import snapshot_download
REPO_ID = "repo_id"
LOCAL_ROOT= "/hf-model"
LOCAL_DIR = os.path.join(LOCAL_ROOT, os.path.basename(REPO_ID))
snapshot_download(repo_id=REPO_ID, local_dir=LOCAL_DIR, local_dir_use_symlinks=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment