+
+
+
+
+
++
+ |
+
| Source Video | +Output Video | +
|---|---|
|
+ raccoon playing a guitar
+ +
+ |
+
+ a panda, playing a guitar, sitting in a pink boat, in the ocean, mountains in background, realistic, high quality
+ +
+ |
+
+
+ |
+
+
+ |
+
+
+ |
+
+
+ |
+ ||
+
+ |
+
+
+ |
+
| Source Video | +Output Video | +
|---|---|
|
+ raccoon playing a guitar
+ +
+ |
+
+ panda playing a guitar
+ +
+ |
+
|
+ closeup of margot robbie, fireworks in the background, high quality
+ +
+ |
+
+ closeup of tony stark, robert downey jr, fireworks
+ +
+ |
+
| Source Video | +Output Video | +
|---|---|
|
+ anime girl, dancing
+ +
+ |
+
+ astronaut in space, dancing
+ +
+ |
+
+
+ |
+
+
+ |
+
| Without FreeInit enabled | +With FreeInit enabled | +
|---|---|
|
+ panda playing a guitar
+ +
+ |
+
+ panda playing a guitar
+ +
+ |
+
+
+ |
+
+
+ |
+
+ +
+ |
+
+
+ |
+
+
+ |
+
| + Pipeline + | ++ Supported tasks + | ++ 🤗 Space + | +
|---|---|---|
| + StableDiffusion + | +text-to-image | +|
| + StableDiffusionImg2Img + | +image-to-image | +|
| + StableDiffusionInpaint + | +inpainting | +|
| + StableDiffusionDepth2Img + | +depth-to-image | +|
| + StableDiffusionImageVariation + | +image variation | +|
| + StableDiffusionPipelineSafe + | +filtered text-to-image | +|
| + StableDiffusion2 + | +text-to-image, inpainting, depth-to-image, super-resolution | +|
| + StableDiffusionXL + | +text-to-image, image-to-image | +|
| + StableDiffusionLatentUpscale + | +super-resolution | +|
| + StableDiffusionUpscale + | +super-resolution | +|
| + StableDiffusionLDM3D + | +text-to-rgb, text-to-depth, text-to-pano | +|
| + StableDiffusionUpscaleLDM3D + | +ldm3d super-resolution | +
+ +
+ |
+ +
+ |
+
+
+ |
+
| Project Name | +Description | +
|---|---|
| dream-textures | +Stable Diffusion built-in to Blender | +
| HiDiffusion | +Increases the resolution and speed of your diffusion model by only adding a single line of code | +
| IC-Light | +IC-Light is a project to manipulate the illumination of images | +
| InstantID | +InstantID : Zero-shot Identity-Preserving Generation in Seconds | +
| IOPaint | +Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures. | +
| Kohya | +Gradio GUI for Kohya's Stable Diffusion trainers | +
| MagicAnimate | +MagicAnimate: Temporally Consistent Human Image Animation using Diffusion Model | +
| OOTDiffusion | +Outfitting Fusion based Latent Diffusion for Controllable Virtual Try-on | +
| SD.Next | +SD.Next: Advanced Implementation of Stable Diffusion and other Diffusion-based generative image models | +
| stable-dreamfusion | +Text-to-3D & Image-to-3D & Mesh Exportation with NeRF + Diffusion | +
| StoryDiffusion | +StoryDiffusion can create a magic story by generating consistent images and videos. | +
| StreamDiffusion | +A Pipeline-Level Solution for Real-Time Interactive Generation | +
| Stable Diffusion Server | +A server configured for Inpainting/Generation/img2img with one stable diffusion model | +
| Model Search | +Search models on Civitai and Hugging Face | +
| Skrample | +Fully modular scheduler functions with 1st class diffusers integration. | +
+ 
+ Real images.
+
+ 
+ Fake images.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Feel free to check out more guides and examples on different use cases from the Optimum Neuron [documentation](https://huggingface.co/docs/optimum-neuron/en/inference_tutorials/stable_diffusion#generate-images-with-stable-diffusion-models-on-aws-inferentia)!
diff --git a/pythonProject/diffusers-main/docs/source/en/optimization/onnx.md b/pythonProject/diffusers-main/docs/source/en/optimization/onnx.md
new file mode 100644
index 0000000000000000000000000000000000000000..d160dcffe86575f47914986603642e61e94c7269
--- /dev/null
+++ b/pythonProject/diffusers-main/docs/source/en/optimization/onnx.md
@@ -0,0 +1,86 @@
+
+
+# ONNX Runtime
+
+🤗 [Optimum](https://github.com/huggingface/optimum) provides a Stable Diffusion pipeline compatible with ONNX Runtime. You'll need to install 🤗 Optimum with the following command for ONNX Runtime support:
+
+```bash
+pip install -q optimum["onnxruntime"]
+```
+
+This guide will show you how to use the Stable Diffusion and Stable Diffusion XL (SDXL) pipelines with ONNX Runtime.
+
+## Stable Diffusion
+
+To load and run inference, use the [`~optimum.onnxruntime.ORTStableDiffusionPipeline`]. If you want to load a PyTorch model and convert it to the ONNX format on-the-fly, set `export=True`:
+
+```python
+from optimum.onnxruntime import ORTStableDiffusionPipeline
+
+model_id = "stable-diffusion-v1-5/stable-diffusion-v1-5"
+pipeline = ORTStableDiffusionPipeline.from_pretrained(model_id, export=True)
+prompt = "sailing ship in storm by Leonardo da Vinci"
+image = pipeline(prompt).images[0]
+pipeline.save_pretrained("./onnx-stable-diffusion-v1-5")
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+