error: model not found: control_hed-fp16 [13fee50b]

#9
by jeroencluckers - opened

Hello, I keep bumping in into this problem:

Error running process: C:\Users\Jeroen C\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py
Traceback (most recent call last):
File "C:\Users\Jeroen C\stable-diffusion-webui\modules\scripts.py", line 409, in process
script.process(p, *script_args)
File "C:\Users\Jeroen C\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 679, in process
model_net = self.load_control_model(p, unet, unit.model, unit.low_vram)
File "C:\Users\Jeroen C\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 486, in load_control_model
model_net = self.build_control_model(p, unet, model, lowvram)
File "C:\Users\Jeroen C\stable-diffusion-webui\extensions\sd-webui-controlnet\scripts\controlnet.py", line 497, in build_control_model
raise RuntimeError(f"model not found: {model}")
RuntimeError: model not found: control_hed-fp16 [13fee50b]

Any thoughts what might be causing this?

Thanks in advance!

Same here, I can run temporalvideo.py in the sub folder created, getting the same message

This means that you either do not have an hd model for controlnet or there is another version of it.
How to solve:

  1. Download and install the model - https://huggingface.co/webui/ControlNet-modules-safetensors/tree/main
    stable-diffusion-webui\extensions\sd-webui-controlnet\models - path to models

OR

  1. Edit temporalnet.py
    This is the 51th line, located under the promts and where you adjust the generation parameters
    You can see which model you have in the models folder or when choosing a controlnet model inside the AUTOMATIC1111 web ui
    You need to replace the line ("model": "control_hed-fp16 [13fee50b]",) with ("model": "control_sd15_hed [fef5e48e]",) - without brackets

Thank you, installing the model did the trick.

Sign up or log in to comment