- 【ClipVision模型丢失】ClipVision model not found.(使用IP-Adapter情况)
- 【启动错误】程序异常退出,退出代码为 1 (0x00000001)">【启动错误】程序异常退出,退出代码为 1 (0x00000001)
- 【报错但不知道原因】
- 【下载模型后Reactor节点仍旧报错】
- 【网络不通】[WinError 121]信号灯超时时间已到">【网络不通】[WinError 121]信号灯超时时间已到
- 【无法从HuggingFace网站下载模型】Connection to http://huggingface.co timed out">【无法从HuggingFace网站下载模型】Connection to http://huggingface.co timed out
- 【模型载入报错】Error occurred when excuting DiffControlNetLoader: ‘NoneType’ object has no attribute ‘lower’
- 【发送蒙版报错】Error occurred when executing Bounded Image Crop with Mask:
- 【ClipSeg】Error occurred when executing CLIPSeg:OpenCV(4.9.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\resize.cpp:3789: error: (-215:Assertion failed) !dsize.empty() in function ‘cv::hal::resize’
- ComfyUI报错:AttributeError: ‘UNetModel‘ object has no attribute ‘default_image_only_indicator‘
https://blog.csdn.net/JuMengXiaoKeTang/article/details/136439821
【ClipVision模型丢失】ClipVision model not found.(使用IP-Adapter情况)
解决方案
打开ComfyUI【管理器>安装模型】,搜索【clip】,安装包含【(IP-Adapter)】的两个模型
【启动错误】程序异常退出,退出代码为 1 (0x00000001)
解决方案
打开版本更新,一键更新,点击最新日期版本,勾选当前,确认切换
重新一键启动会自动安依赖环境,请保持网络通畅
【报错但不知道原因】
解决方案
打开【高级选项>环境维护>环境修复】,点击修复,重启软件,期间请保持网络畅通。
请检查【文件安装路径是否包含中文】,若包含请改为全英文路径重新安装软件。
【下载模型后Reactor节点仍旧报错】
解决方案
在启动器界面打开【疑难解答>开始扫描】,检查模型文件是否损坏,如图为ONNX模型损坏,手动从HuggingFace站点下载安装至本地后重启ComfyUI,顺利解决。
解决方案-1
找到该文件本地路径,删除该文件,在ComfyUI Manager中重新进行自动下载安装。
解决方案-2
找到该文件本地路径,删除该文件,从HuggingFace站点下载模型文件手动放置本地。
随后重启ComfyUI。
【网络不通】[WinError 121]信号灯超时时间已到
解决方案
把科学上网打开(不需要把ComfyUI关闭后打开),不会影响comfyUI的运行。【无法从HuggingFace网站下载模型】Connection to http://huggingface.co timed out
解决方案
检查网络是否通畅,打开科学上网。
【模型载入报错】Error occurred when excuting DiffControlNetLoader: ‘NoneType’ object has no attribute ‘lower’
解决方案
本地文件夹没有找到该模型,安装该模型或检查文件是否损坏。
【diffusion_pytorch_model.safetensor】
【发送蒙版报错】Error occurred when executing Bounded Image Crop with Mask:
解决方案
检查所有接入手动蒙版的图片是否进行了发送蒙版,举例,两张图片接入了手动蒙版流程,进行使用时只对其中一张图片进行了蒙版编辑,另外一张没有操作,就会导致另外一张加载的图片无蒙版,最终导致接下来流程无法读取数据,随之报错。
解决方案2
检查是否接入【SwitchMode】节点,检查模式接口是否切换正确。
【ClipSeg】Error occurred when executing CLIPSeg:OpenCV(4.9.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\resize.cpp:3789: error: (-215:Assertion failed) !dsize.empty() in function ‘cv::hal::resize’
解决方案
修改代码如下,将clipseg.py文件覆盖到comfyui_costumenode文件夹
with torch.no_grad():
outputs = model(**input_prc)
preds = outputs.logits.unsqueeze(1)
tensor = torch.sigmoid(preds[0][0]) # get the mask