You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/community/README.md
+45
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ Stable Diffusion v1.1-1.4 Comparison | Run all 4 model checkpoints for Stable Di
28
28
MagicMix | Diffusion Pipeline for semantic mixing of an image and a text prompt | [MagicMix](#magic-mix) | - | [Partho Das](https://github.com/daspartho) |
29
29
| Stable UnCLIP | Diffusion Pipeline for combining prior model (generate clip image embedding from text, UnCLIPPipeline `"kakaobrain/karlo-v1-alpha"`) and decoder pipeline (decode clip image embedding to image, StableDiffusionImageVariationPipeline `"lambdalabs/sd-image-variations-diffusers"` ). |[Stable UnCLIP](#stable-unclip)| - |[Ray Wang](https://wrong.wang)|
30
30
| UnCLIP Text Interpolation Pipeline | Diffusion Pipeline that allows passing two prompts and produces images while interpolating between the text-embeddings of the two prompts |[UnCLIP Text Interpolation Pipeline](#unclip-text-interpolation-pipeline)| - |[Naga Sai Abhinay Devarinti](https://github.com/Abhinay1997/)|
31
+
| UnCLIP Image Interpolation Pipeline | Diffusion Pipeline that allows passing two images/image_embeddings and produces images while interpolating between their image-embeddings |[UnCLIP Image Interpolation Pipeline](#unclip-image-interpolation-pipeline)| - |[Naga Sai Abhinay Devarinti](https://github.com/Abhinay1997/)|
31
32
32
33
33
34
@@ -989,3 +990,47 @@ The resulting images in order:-
This Diffusion Pipeline takes two images or an image_embeddings tensor of size 2 and interpolates between their embeddings using spherical interpolation ( slerp ). The input images/image_embeddings are converted to image embeddings by the pipeline's image_encoder and the interpolation is done on the resulting image_embeddings over the number of steps specified. Defaults to 5 steps.
0 commit comments