Add `clip_sample=False` to scheduler to make model compatible with DDIM.

#1
by patrickvonplaten - opened

Hey Skittleology πŸ‘‹,

Your model repository seems to contain a stable diffusion checkpoint. We have noticed that your scheduler config currently does not correctly work with the DDIMScheduler because clip_sample is not set to False and will therefore incorrectly default to True.
The official stable diffusion checkpoints have clip_sample=False so that the scheduler config works will all schedulers, see: https://huggingface.co/stabilityai/stable-diffusion-2-1-base/blob/main/scheduler/scheduler_config.json#L7.

We strongly recommend that you merge this PR to make sure your model works correctly with DDIM.

Diffusingly,
Patrick.

Hello Patrick,

This was made for Stable Diffusion 1.5, before 2.0 released, so I don't know if that applies here.
I could try to add it to the scheduler to see if it works though.

Thanks,
Skittleology

Skittleology changed pull request status to merged

Sign up or log in to comment