File size: 327 Bytes
7bdf62a |
1 2 3 4 5 6 7 8 9 10 11 12 |
from huggingface_hub import hf_hub_download
# Define the repository name, owner, and filename
repository_name = "wefa-door"
owner = "thisisAce"
filename = "e66s22300wefa0.ckpt"
# Download the file
file_path = hf_hub_download(repo_id=f"{owner}/{repository_name}", filename=filename)
print(f"File downloaded to: {file_path}")
|