Open time-river opened 8 months ago
which version of Diffusers solved your problem? or Could you explain how to reslove
which version of Diffusers solved your problem? or Could you explain how to reslove
Maybe the latest. I don't notice it. How to solve: it's simple, find the calltrace code, you can check it here
Very nice, you solved my problem
哪个版本的扩散器解决了您的问题?或者你能解释一下如何重新爱上吗?
也许是最新的。我没有注意到它。怎么解决:很简单,找到回溯码,可以在这里查看
看不懂怎么解决,是需要修改哪个文件的代码吗?是否有文件下载直接替换呢?链接下载文件为“pipeline_controlnet_sd_xl.py”。它是干嘛的? I don't understand how to solve it. Is it necessary to modify the code of which file? Is there a file that can be downloaded and replaced directly? The download file for the link is "pipeline_controlnet_sd_xl. py". What is it for?
which version of Diffusers solved your problem? or Could you explain how to reslove
Maybe the latest. I don't notice it. How to solve: it's simple, find the calltrace code, you can check it here
Please, i didn't understand what to change in code. can you explain what to change
which version of Diffusers solved your problem? or Could you explain how to reslove
Maybe the latest. I don't notice it. How to solve: it's simple, find the calltrace code, you can check it here
Could you please elaborate? should "pipeline_controlnet_sd_xl. py" be modified? if yes which lines should be modified to what? i downloaded the entire code and replaced it. but it still didn't resolve the problem. am getting the same error.
@time-river hi, can you please explain us what to do
@Mahinandaa
File "C:\development\StabilityMatrix-win-x64\Data\Packages\ComfyUI\custom_nodes\ComfyUI-Diffusers-X-Adapter\pipeline\pipeline_sd_xl_adapter_controlnet.py", line 1605, in check_inputs_sd1_5
raise TypeError("For single controlnet: `controlnet_conditioning_scale` must be type `float`.")
2. check the relevant source code(near line 1605).
if not isinstance(controlnet_conditioning_scale, float):
raise TypeError("For single controlnet: `controlnet_conditioning_scale` must be type `float`.")
3. Ignore Exception(Not sure if correct).
if not isinstance(controlnet_conditioning_scale, float):
logger.warning(
"controlnet_conditioning_scale must be float but IGNORE."
)
# raise TypeError("For single controlnet: `controlnet_conditioning_scale` must be type `float`.")
I encountered the same problem. It still hasn't been solved. How did you solve it in the end?
哪个版本的扩散器解决了您的问题?或者你能解释一下如何重新爱上吗?
也许是最新的。我没有注意到它。怎么解决:很简单,找到回溯码,可以在这里查看
看不懂怎么解决,是需要修改哪个文件的代码吗?是否有文件下载直接替换呢?链接下载文件为“pipeline_controlnet_sd_xl.py”。它是干嘛的? I don't understand how to solve it. Is it necessary to modify the code of which file? Is there a file that can be downloaded and replaced directly? The download file for the link is "pipeline_controlnet_sd_xl. py". What is it for?
look the PR commits. It is working
I encountered the same problem. It still hasn't been solved. How did you solve it in the end?
look this PR commits. It is working
@time-river hi, can you please explain us what to do
look the PR commits. It is working
In high diffusers version, two new arguments
ip_adapter_image, ip_adapter_image_embeds
are added incheck_inputs
func, which results error:Here fix the above problem.
related issue: https://github.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/issues/121