Spaces:
Running
Running
File size: 683 Bytes
736dcf7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | from huggingface_hub import hf_hub_download
file_path = hf_hub_download(
repo_id="mikaelaangel/partfield-ckpt",
filename="model_objaverse.ckpt",
local_dir="third_partys/PartField/ckpt"
)
file_path = hf_hub_download(
repo_id="Seed3D/Puppeteer",
filename="skinning_ckpts/puppeteer_skin_w_diverse_pose_depth1.pth",
local_dir="skinning"
)
file_path = hf_hub_download(
repo_id="Seed3D/Puppeteer",
filename="skinning_ckpts/puppeteer_skin_w_diverse_pose_depth2.pth",
local_dir="skinning"
)
file_path = hf_hub_download(
repo_id="Seed3D/Puppeteer",
filename="skinning_ckpts/puppeteer_skin_wo_diverse_pose_depth1.pth",
local_dir="skinning"
) |