huggingface.co

Posts 1

view post

Post

3456

Sharing for anyone using Diffusers

from_single_file

loading and affected by the Runway SD 1.5 issue.



If you have

runwayml/stable-diffusion-v1-5

saved locally in your HF cache then loading single file checkpoints in the following way should still work.



from diffusers import StableDiffusionPipeline
pipe = StableDiffusionPipeline.from_single_file("<url or path to single file checkpoint>")


If you do not have the model repo saved in your cache, then automatically inferring the pipeline config will not work since the reference repo

runwayml/stable-diffusion-v1-5

doesn't exist anymore.



You can use an alternative SD1.5 repo id to still configure your pipeline.



from diffusers import StableDiffusionPipeline
pipe = StableDiffusionPipeline.from_single_file("<url or path to single file checkpoint>", config="Lykon/DreamShaper")


We're working on resolving the issue ASAP.

Articles 5

Article

55

Introducing Modular Diffusers - Composable Building Blocks for Diffusion Pipelines

Read the original on huggingface.co ↗