AI & ML interests

None defined yet.

Recent Activity

vincentkoc  updated a dataset 13 days ago
Comet/wikipedia-2017-bm25
vincentkoc  published a dataset 13 days ago
Comet/wikipedia-2017-bm25
dn6  updated a dataset almost 3 years ago
Comet/CLIP-eval
View all activity

dn6 
posted an update over 1 year ago
view post
Post
3222
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.
  • 2 replies
·
dn6 
updated a dataset almost 3 years ago