Merge Stable Diffusion pipelines into one
See original GitHub issueIs your feature request related to a problem? Please describe. It would be nice to be able to use text2img & img2img & inpaint with the same instanced pipeline
Describe the solution you’d like
pipe.generate(...)
pipe.image_to_image(...)
pipe.inpaint(...)
Describe alternatives you’ve considered
It’s possible to call StableDiffusionInpaintPipeline.__call__(pipe, ...)
, but it might break at some point if classes are not compatible
Issue Analytics
- State:
- Created a year ago
- Comments:10 (8 by maintainers)
Top Results From Across the Web
Merging Stable diffusion pipelines just makes sense #551
Here we have a single model (Stable diffusion) which has 3 different pipelines (ignoring onnx for now) in different files doing more or...
Read more >Custom Pipelines - Hugging Face
Stable Diffusion Mega, One Stable Diffusion Pipeline with all ... Feel free to send a PR with your own pipelines, we will merge...
Read more >Stable Diffusion Tutorial Part 2: Using Textual Inversion ...
Once we have walked through the code, we will demonstrate how to combine our new embedding with our Dreambooth concept in the Stable...
Read more >Stable diffusion using Hugging Face — DiffEdit paper ...
An implementation of DIFFEDIT: DIFFUSION-BASED SEMANTIC IMAGE EDITING WITH MASK GUIDANCE using hugging face diffusers library.
Read more >Three Challenges Ahead for Stable Diffusion - Unite.AI
1 : Optimizing Tile-Based Pipelines. Presented with limited hardware resources and hard limits on the resolution of training images, it seems ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@Inkorak With a few changes I was able to make it work.
@python273 You can also write something like this. But I haven’t tried it myself yet.