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
[Community] Experimental AnimateDiff Image to Video (open to improvements) (#6509)
* add animatediff img2vid
* fix
* Update examples/community/README.md
Co-authored-by: Patrick von Platen <[email protected]>
* fix code snippet between ip adapter face id and animatediff img2vid
---------
Co-authored-by: Patrick von Platen <[email protected]>
Copy file name to clipboardExpand all lines: examples/community/README.md
+28-1Lines changed: 28 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,8 @@ prompt-to-prompt | change parts of a prompt and retain image structure (see [pap
58
58
| Null-Text Inversion Pipeline | Implement [Null-text Inversion for Editing Real Images using Guided Diffusion Models](https://arxiv.org/abs/2211.09794) as a pipeline. |[Null-Text Inversion](https://github.com/google/prompt-to-prompt/)| - |[Junsheng Luan](https://github.com/Junsheng121)|
59
59
| Rerender A Video Pipeline | Implementation of [[SIGGRAPH Asia 2023] Rerender A Video: Zero-Shot Text-Guided Video-to-Video Translation](https://arxiv.org/abs/2306.07954)|[Rerender A Video Pipeline](#Rerender_A_Video)| - |[Yifan Zhou](https://github.com/SingleZombie)|
60
60
| StyleAligned Pipeline | Implementation of [Style Aligned Image Generation via Shared Attention](https://arxiv.org/abs/2312.02133)|[StyleAligned Pipeline](#stylealigned-pipeline)|[](https://drive.google.com/file/d/15X2E0jFPTajUIjS0FzX50OaHsCbP2lQ0/view?usp=sharing)|[Aryan V S](https://github.com/a-r-r-o-w)|
61
+
| AnimateDiff Image-To-Video Pipeline | Experimental Image-To-Video support for AnimateDiff (open to improvements) |[AnimateDiff Image To Video Pipeline](#animatediff-image-to-video-pipeline)|[](https://drive.google.com/file/d/1TvzCDPHhfFtdcJZe4RLloAwyoLKuttWK/view?usp=sharing)|[Aryan V S](https://github.com/a-r-r-o-w)|
62
+
61
63
| IP Adapter FaceID Stable Diffusion | Stable Diffusion Pipeline that supports IP Adapter Face ID |[IP Adapter Face ID](#ip-adapter-face-id)| - |[Fabio Rigano](https://github.com/fabiorigano)|
62
64
63
65
To load a custom pipeline you just need to pass the `custom_pipeline` argument to `DiffusionPipeline`, as one of the files in `diffusers/examples/community`. Feel free to send a PR with your own pipelines, we will merge them quickly.
This pipeline adds experimental support for the image-to-video task using AnimateDiff. Refer to [this](https://github.com/huggingface/diffusers/pull/6328) PR for more examples and results.
3417
+
3418
+
```py
3419
+
import torch
3420
+
from diffusers import MotionAdapter, DiffusionPipeline, DDIMScheduler
3421
+
from diffusers.utils import export_to_gif, load_image
0 commit comments