File size: 406 Bytes
dacaac8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from huggingface_hub import snapshot_download, upload_folder, login
source_dir = snapshot_download(
repo_id="locke12/HunyuanVideoLoras",
local_dir="./temp_hunyuan_loras",
local_dir_use_symlinks=False
)
upload_folder(
repo_id="rahul7star/hunyuan-lora",
folder_path="./temp_hunyuan_loras",
repo_type="model",
commit_message="Copied all files from locke12/HunyuanVideoLoras"
)
|