ComfyUI常见问题及如何排查

如何利用异常信息查询解决方案


很多设计师朋友使用ComfyUI遇到问题比较头疼,比如以下一串信息,不知该如何查起。

Error occurred when executing KSampler: "NoneType'’ objeet has mo atttbute'sthepe

File "K: \ComfyUI-aki-vI\execution. py', line 151, in recursive_execute

output_data, output_ui = get_output_data (obj, input_data_all)

File "K:\ComfyUI-aki-vI\execution. py", line 81, in get_output_data

return_ values = map_ node_ over_list (obj, input data_ all, obj.FUNCT ION, al1ow_ interrupt-True)

File "K:\ComfyUl-aki-vIlexecution. py", line 74, in map_node_over_list results. append (getattr (obj. func) (**slice_dict (input.

File “K: ComfyUI-aki-v1 \nodes. py, line 1369, in samr

return common ksampler (model, seed, steps, cfg, sampler name, scheduler, positive, negative,

File "K: \ComfvUI-aki-v1 \nodes. py' line 1339, in common ksampler


以上是一个场景的错误打印方式,我们可以分成两部分看,
Error occurred when executing KSampler: "NoneType'’ objeet has mo atttbute'sthepe
第一句,这个是关键的错误信息,一般是程序员为了打印人能看的懂的信息而留下的。
所以遇到问题直接截取 : 之后的信息 ("NoneType'’ objeet has mo atttbute'sthepe )去google查询都能搜到别人的解决方式。
剩下的这部分是程序代码行的错误信息,这个是为了方便开发人员排查代码用的,对我们使用者来说不需要关注。

常见错误整理

'NoneType'object has no attribute lower'
错误说明:缺少模型输入 一般是选择到错误的模型导致输入有问题,如果大家遇到,就请回忆下改了哪些模型的输入,导致模型参数匹配有问题。

out of memory

错误说明:内存溢出了,请降低图片分辨率,或者批次数量。

'NoneType' object has no attribute 'shape'

错误说明:解决方案同问题一,想想你改了哪些模型,导致不匹配,先还原试试。

When loading the graph,the following node types were not found

解决方案:导入工作流报插件缺失怎么办

XXX model not found

错误说明:模型找不到,需要去下载模型放入相应文件夹

后续有遇到再补充