当前位置:   article > 正文

depth anything复现时遇到的问题_huggingface_hub.utils._errors.localentrynotfounder

huggingface_hub.utils._errors.localentrynotfounderror: an error happened whi

问题一:depth_anything = DepthAnything.from_pretrained('LiheYoung/depth_anything_{}14'.format(args.encoder)).to(DEVICE).eval()

加载.pth文件时出问题了?

错误提示:huggingface_hub.utils._errors. LocalEntryNotFoundError: an error happened while trying to locate the file on the HU and we cannot find the requested files in the local cache.

解决方案:

下载权重,使用国内的镜像,首先在命令行执行下面的命令设置下环境变量:

export HF_ENDPOINT=https://hf-mirror.com

然后再运行run.sh

问题解决 √

问题二:depth = depth_anything(image)

加载图片时出问题了,与权重文件不匹配吗?

错误提示:RuntimeError: Input type (torch.cuda.FloatTensor) and weight type (torch.FloatTensor) should be the same

解决方案:将所有的内容都放到cpu上运行,即DEVICE = torch.device("cpu")

问题解决 √

问题三:depth = depth_anything(image)

是torch版本问题吗?

错误提示:TypeError: interpolate() got an unexpected keyword argument 'antialias'

解决方案:在run.sh文件中加入更新torch和torchvision的命令

问题解决 √

附加:run.sh 是我自己写的,可参考

pip install -r requirements.txt
pip install --upgrade torch
pip install --upgrade torchvision
python run.py --encoder vits --img-path assets/examples

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/355002
推荐阅读
相关标签
  

闽ICP备14008679号