Created
August 6, 2023 19:09
-
-
Save vuiseng9/798f9eb710b57b7a13ff6b9a75dfbeb1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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