File size: 200 Bytes
3d96f70 |
1 2 3 4 5 6 7 8 |
from huggingface_hub import snapshot_download
local_dir = "./dog"
snapshot_download(
"diffusers/dog-example",
local_dir=local_dir, repo_type="dataset",
ignore_patterns=".gitattributes",
) |