Bad model configuration
#2
by
mhnguyen712
- opened
Hi,
Thank you so much for open-sourcing this model.
I tried to use this model from diffusers library but keep getting errors when instantiate the pre-trained model.
The code snippet used:from diffusers import ControlNetModel
controlnet = ControlNetModel.from_pretrained("stabilityai/stable-diffusion-3.5-large-controlnet-blur")
And I got errors saying that the checkpoints and the model have different keys. I think It comes from the wrong configuration provided together with the checkpoint. Could you please check that? Thanks in advance!
hi
you need to install diffusers from source pip install git+https://github.com/huggingface/diffusers
I made a PR to update the instruction on the example too