You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Model path /root/lanyun-fs/Hunyuan3D-2 not found and we could not find it at huggingface
Failed to load texture generator.
Please try to install requirements by following README.md
I find the root cause.
in Hunyuan3D-2/hy3dgen/pipelines.py, the method "from_pretrained",
if not os.path.exists(model_path):
change to:
if os.path.exists(model_path):
The text was updated successfully, but these errors were encountered:
Model path /root/lanyun-fs/Hunyuan3D-2 not found and we could not find it at huggingface
Failed to load texture generator.
Please try to install requirements by following README.md
I find the root cause.
in Hunyuan3D-2/hy3dgen/pipelines.py, the method "from_pretrained",
if not os.path.exists(model_path):
change to:
if os.path.exists(model_path):
The text was updated successfully, but these errors were encountered: