Dhruv Nair PRO

dn6

AI & ML interests

Generative Models

Recent Activity

updated a collection about 11 hours ago
Flux LoRA
updated a collection about 11 hours ago
Flux LoRA
updated a collection about 11 hours ago
Flux LoRA
View all activity

Articles

Organizations

Hugging Face's profile picture 🧨Diffusers's profile picture Spaces-explorers's profile picture Hugging Face Internal Testing Organization's profile picture Comet ML's profile picture (De)fusing's profile picture diffusers-internal-dev's profile picture ZP's profile picture Vchitect-XL's profile picture DDUF's profile picture HunyuanVideo Community's profile picture

Posts 1

view post
Post
2622
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.