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
+87-1Lines changed: 87 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ prompt-to-prompt | change parts of a prompt and retain image structure (see [pap
56
56
| AnimateDiff ControlNet Pipeline | Combines AnimateDiff with precise motion control using ControlNets |[AnimateDiff ControlNet Pipeline](#animatediff-controlnet-pipeline)|[](https://colab.research.google.com/drive/1SKboYeGjEQmQPWoFC0aLYpBlYdHXkvAu?usp=sharing)|[Aryan V S](https://github.com/a-r-r-o-w) and [Edoardo Botta](https://github.com/EdoardoBotta)|
57
57
| DemoFusion Pipeline | Implementation of [DemoFusion: Democratising High-Resolution Image Generation With No $$$](https://arxiv.org/abs/2311.16973)|[DemoFusion Pipeline](#DemoFusion)| - |[Ruoyi Du](https://github.com/RuoyiDu)|
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
61
61
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 is the Diffusers implementation of zero-shot video-to-video translation pipeline [Rerender_A_Video](https://github.com/williamyang1991/Rerender_A_Video) (without Ebsynth postprocessing). To run the code, please install gmflow. Then modify the path in `examples/community/rerender_a_video.py`:
3192
+
3193
+
```py
3194
+
gmflow_dir ="/path/to/gmflow"
3195
+
```
3188
3196
3197
+
After that, you can run the pipeline with:
3198
+
3199
+
```py
3200
+
from diffusers import ControlNetModel, AutoencoderKL, DDIMScheduler
0 commit comments