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
Tried running various examples and module errors are immediate:
python inference_upscale_a_video.py -i ./inputs/old_video_1.mp4 -o ./results -n 150 -g 9 -s 30
Traceback (most recent call last):
File "/data/code/msm/upscale39/inference_upscale_a_video.py", line 39, in <module>
from models_video.RAFT.raft_bi import RAFT_bi
File "/data/code/msm/upscale39/models_video/__init__.py", line 1, in <module>
from .autoencoder_kl_cond_video import AutoencoderKLVideo
File "/data/code/msm/upscale39/models_video/autoencoder_kl_cond_video.py", line 23, in <module>
from diffusers.configuration_utils import ConfigMixin, register_to_config
File "/data/miniconda3/envs/upscale39/lib/python3.9/site-packages/diffusers/__init__.py", line 3, in <module>
from .configuration_utils import ConfigMixin
File "/data/miniconda3/envs/upscale39/lib/python3.9/site-packages/diffusers/configuration_utils.py", line 34, in <module>
from .utils import (
File "/data/miniconda3/envs/upscale39/lib/python3.9/site-packages/diffusers/utils/__init__.py", line 38, in <module>
from .dynamic_modules_utils import get_class_from_dynamic_module
File "/data/miniconda3/envs/upscale39/lib/python3.9/site-packages/diffusers/utils/dynamic_modules_utils.py", line 29, in <module>
from huggingface_hub import HfFolder, cached_download, hf_hub_download, model_info
ImportError: cannot import name 'cached_download' from 'huggingface_hub' (/data/miniconda3/envs/upscale39/lib/python3.9/site-packages/huggingface_hub/__init__.py
This issue below "cached_download no longer exists on hugging face" claims huggingface has removed cached_download API entirely from its website ... it is no longer available for any package version, which permanently breaks the current inference implementation. TencentARC/InstantMesh#169
The text was updated successfully, but these errors were encountered:
Tried running various examples and module errors are immediate:
This issue below
"cached_download no longer exists on hugging face"
claims huggingface has removed cached_download API entirely from its website ... it is no longer available for any package version, which permanently breaks the current inference implementation.TencentARC/InstantMesh#169
The text was updated successfully, but these errors were encountered: