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}") | |