-
Currently, all our pipelines only accept |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
This should be a must, there are huge benefits, with the current implementation of diffusers even if you don't change the images the pipeline encodes the images over and over again, this could potentially take a lot of time if you use a lot of images with multiple adapters, so the first benefit is that it would make generations faster in those cases. There's another potential benefit with this, currently in the ComfyUI node you can save the embeddings to disk, if diffusers allows this and make them both compatible the embeddings can be used and shared in both systems, this is particularly useful for styles with a lot of images, you can just share the embeddings to other people or reuse them without the need to find the images again and encode them. Also this could enable the use of the negative noise images without the need to implement it into diffusers, you can just create all the embeddings in others systems that have UIs and more features and use them in diffusers. I was also planning to add this, and perhaps more UIs can add them too so this could be shared universally, the same as LoRAs |
Beta Was this translation helpful? Give feedback.
-
great! thanks for the insights:) |
Beta Was this translation helpful? Give feedback.
-
I also agree about passing image embeddings as parameter. Is it perhaps more consistent to use the same design used for text ( |
Beta Was this translation helpful? Give feedback.
This should be a must, there are huge benefits, with the current implementation of diffusers even if you don't change the images the pipeline encodes the images over and over again, this could potentially take a lot of time if you use a lot of images with multiple adapters, so the first benefit is that it would make generations faster in those cases.
There's another potential benefit with this, currently in the ComfyUI node you can save the embeddings to disk, if diffusers allows this and make them both compatible the embeddings can be used and shared in both systems, this is particularly useful for styles with a lot of images, you can just share the embeddings to other people or reuse th…