#ComfyUI workers don't find my diffusion model

3 messages · Page 1 of 1 (latest)

shut karma
#

I can't get ComfyUI to find wan2.2_ti2v_5B_fp16.safetensors. Other diffusion models, for example for stable diffusion work fine. I have the model in a folder named "diffusion_models" in a network volume named models, but I always get this error:

* UNETLoader 37:
- Value not in list: unet_name: 'wan2.2_ti2v_5B_fp16.safetensors' not in []
Output will be ignored```

How can I fix this?
onyx radishBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

static ginkgo
#

Hi, sorry for the delay :)

It looks like the name of the safetensors file needs to be in an array like:

unet_name:
  - 'wan2.2_ti2v_5B_fp16.safetensors' 

Or

unet_name: ['wan2.2_ti2v_5B_fp16.safetensors']