Two errors in a row.

#12
by enotbert - opened

Error running process: D:\SD\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py
Traceback (most recent call last):
File "D:\SD\stable-diffusion-webui\modules\scripts.py", line 417, in process
script.process(p, *script_args)
File "D:\SD\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 571, in process
else self.build_control_model(p, unet, model, lowvram)
File "D:\SD\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 423, in build_control_model
raise RuntimeError(f"model not found: {model}")
RuntimeError: model not found:

Error running process: D:\SD\stable-diffusion-webui\extensions\sd-webui-multiple-hypernetworks\scripts\multiple_hypernetworks.py
Traceback (most recent call last):
File "D:\SD\stable-diffusion-webui\modules\scripts.py", line 417, in process
script.process(p, *script_args)
File "D:\SD\stable-diffusion-webui\extensions\sd-webui-multiple-hypernetworks\scripts\multiple_hypernetworks.py", line 380, in process
if((hypernetworks.strip() == "") and (hypernetworks_strength.strip() == "")):
AttributeError: 'bool' object has no attribute 'strip'

Hi!

I am a bit late, my apologies,

raise RuntimeError(f"model not found: {model}")
RuntimeError: model not found:

Sounds like your hed module has a different hash code or you haven't installed it, you can find the hash code by looking at how it's named in the webui, then copying that name into the python file here:

image.png

AttributeError: 'bool' object has no attribute 'strip'

This sounds like you have a hyper-network on by default, you'll want to try turning that off first.

Wow, I've checked the model and hash many times and nothing worked. I uninstalled all the hypernetworks and everything worked. For some reason, even though hypernet was set to NONE but it was still affecting SD somehow.

As I wrote it's working now. But still there are some errors. What do they mean?

Error running process: D:\SD\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py
Traceback (most recent call last):
File "D:\SD\stable-diffusion-webui\modules\scripts.py", line 417, in process
script.process(p, *script_args)
File "D:\SD\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 628, in process
unit = self.parse_remote_call(p, unit, idx)
File "D:\SD\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 540, in parse_remote_call
unit.enabled = selector(p, "control_net_enabled", unit.enabled, idx, strict=True)
AttributeError: 'str' object has no attribute 'enabled'

Error running process: D:\SD\stable-diffusion-webui\extensions\sd-webui-multiple-hypernetworks\scripts\multiple_hypernetworks.py
Traceback (most recent call last):
File "D:\SD\stable-diffusion-webui\modules\scripts.py", line 417, in process
script.process(p, *script_args)
File "D:\SD\stable-diffusion-webui\extensions\sd-webui-multiple-hypernetworks\scripts\multiple_hypernetworks.py", line 394, in process
hypernetworks_strength = [float(element) for element in hypernetworks_strength]
File "D:\SD\stable-diffusion-webui\extensions\sd-webui-multiple-hypernetworks\scripts\multiple_hypernetworks.py", line 394, in
hypernetworks_strength = [float(element) for element in hypernetworks_strength]
ValueError: could not convert string to float: '

    \n
  • CFG Scale should be 2 or lower.
  • \n
\n'

Sign up or log in to comment