Replies: 1 comment
-
I'm having the same issue. Did you solve it? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After install the Controlnet, I'm trying to use the Web UI to create and picture but it constantly give a error start with
Error running process: D:\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py
I try multiple time by select/unselect model but there still have the same error. For the full error message.
Without Model selected
Error running process: D:\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py
Traceback (most recent call last):
File "D:\stable-diffusion-webui\modules\scripts.py", line 386, in process
script.process(p, *script_args)
File "D:\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 742, in process
model_net = self.load_control_model(p, unet, model, lowvram)
File "D:\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 541, in load_control_model
model_net = self.build_control_model(p, unet, model, lowvram)
File "D:\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 552, in build_control_model
raise RuntimeError(f"model not found: {model}")
RuntimeError: model not found: None
With Preprocessor and model selected
Loading model: v1-5-pruned-emaonly [d7049739]
Loaded state_dict from [D:\stable-diffusion-webui\models\ControlNet\v1-5-pruned-emaonly.safetensors]
Error running process: D:\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py
Traceback (most recent call last):
File "D:\stable-diffusion-webui\modules\scripts.py", line 386, in process
script.process(p, *script_args)
File "D:\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 742, in process
model_net = self.load_control_model(p, unet, model, lowvram)
File "D:\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 541, in load_control_model
model_net = self.build_control_model(p, unet, model, lowvram)
File "D:\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 579, in build_control_model
network = network_module(
File "D:\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\cldm.py", line 107, in init
self.control_model.load_state_dict(state_dict)
File "D:\stable-diffusion-webui\venv\lib\site-packages\torch\nn\modules\module.py", line 1671, in load_state_dict
raise RuntimeError('Error(s) in loading state_dict for {}:\n\t{}'.format(
RuntimeError: Error(s) in loading state_dict for ControlNet:
Missing key(s) in state_dict: "time_embed.0.weight", "time_embed.0.bias", >>>> very long message of missing module
I try to search for the issue about error with "line 386" and try to solve with the same method with those such as
Please help for this issue.
Beta Was this translation helpful? Give feedback.
All reactions