ZHO-ZHO-ZHO / ComfyUI-YoloWorld-EfficientSAM

Unofficial implementation of YOLO-World + EfficientSAM for ComfyUI
GNU General Public License v3.0
625 stars 58 forks source link

3 种官方模型无法自动下载,怎么手动安装? #26

Open freemde23 opened 8 months ago

freemde23 commented 8 months ago

3 种官方模型无法自动下载,怎么手动安装? 错误提示:inference.core.exceptions.RoboflowAPIConnectionError: Could not connect to Roboflow API.

2024-03-27_182022

gaowei-space commented 8 months ago

3 种官方模型无法自动下载,怎么手动安装? 错误提示:inference.core.exceptions.RoboflowAPIConnectionError: Could not connect to Roboflow API.

2024-03-27_182022

你可以尝试卸载之后重新安装,我是这样解决的。 步骤:

cd ComfyUI-YoloWorld-EfficientSAM
pip uninstall inference-gpu
pip install -r requirements.txt
zhangbo123654 commented 8 months ago

遇到了同样的报错,卸载重新安装仍然不管用

quanzaiyu commented 7 months ago

我也需要手动安装,自动安装会报网络错误。自己已经下载了三个模型,不知道丢哪。

下载地址:https://huggingface.co/lcolok/Yolo_World/tree/main

包括以下模型: image

但应该放到哪呢?

quanzaiyu commented 7 months ago

最尴尬的事情莫过于模型下好了不知道放哪,控制台也没有给模型路径的提示...

sunlin-xiaonai commented 7 months ago

我解决了这个问题,可以看我的视频,欢迎交流,我的视频放在了 两个位置: https://youtu.be/uo3FV278f8k https://www.bilibili.com/video/BV1cZ421H7no/?pop_share=1&vd_source=809556ecc41f798c7a2b5706e0e9fd2a

shenyx8lm commented 7 months ago

......我把代理关了反而能正常下载了

quanzaiyu commented 7 months ago

我解决了这个问题,可以看我的视频,欢迎交流,我的视频放在了 两个位置: https://youtu.be/uo3FV278f8k https://www.bilibili.com/video/BV1cZ421H7no/?pop_share=1&vd_source=809556ecc41f798c7a2b5706e0e9fd2a

谢谢。需要注意的是,如果是Windows系统,那ComfyUI安装在哪个盘符下,就在哪个盘符下安装这些模型。如图

PixPin_2024-04-27_10-41-20

alenhrp commented 6 months ago

After testing, manual download does not fix it either, any auto download and terminal. Solution: pip install inference-gpu[yolo-world]==0.9.13, start comfyui, open examp JSON, execute to realize the automatic download completion.

liushh39 commented 4 months ago

我解决了这个问题,可以看我的视频,欢迎交流,我的视频放在了 两个位置: https://youtu.be/uo3FV278f8k https://www.bilibili.com/video/BV1cZ421H7no/?pop_share=1&vd_source=809556ecc41f798c7a2b5706e0e9fd2a

放在了/tmp/cache/l/l.pt. ,还是报错

l2x commented 4 months ago

看了源码,手动下载模型不行主要是因为模型文件名问题,源码里的文件名是 self.cache_file("yolo-world.pt") ......所以要把下载下来的 l.pt 改名为 yolo-world.pt,完整的文件路径为 /tmp/cache/yolo_world/l/yolo-world.pt

RoxasChan commented 2 months ago

看了源码,手动下载模型不行主要是因为模型文件名问题,源码里的文件名是 self.cache_file("yolo-world.pt") ......所以要把下载下来的 l.pt 改名为 yolo-world.pt,完整的文件路径为 /tmp/cache/yolo_world/l/yolo-world.pt

按照这个弄好了,谢谢