Skip to content

Commit 87a09d6

Browse files
authored
[docs] SDXL Turbo (#6065)
api docs
1 parent 75ada25 commit 87a09d6

File tree

2 files changed

+3
-20
lines changed

2 files changed

+3
-20
lines changed

docs/source/en/api/pipelines/overview.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ The table below lists all the pipelines currently available in 🤗 Diffusers an
7171
| [Stable Diffusion](stable_diffusion/overview) | text2image, image2image, depth2image, inpainting, image variation, latent upscaler, super-resolution |
7272
| [Stable Diffusion Model Editing](model_editing) | model editing |
7373
| [Stable Diffusion XL](stable_diffusion/stable_diffusion_xl) | text2image, image2image, inpainting |
74+
| [Stable Diffusion XL Turbo](stable_diffusion/sdxl_turbo) | text2image, image2image, inpainting |
7475
| [Stable unCLIP](stable_unclip) | text2image, image variation |
7576
| [Stochastic Karras VE](stochastic_karras_ve) | unconditional image generation |
7677
| [T2I-Adapter](stable_diffusion/adapter) | text2image |

docs/source/en/api/pipelines/stable_diffusion/sdxl_turbo.md

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,34 +20,16 @@ The abstract from the paper is:
2020

2121
## Tips
2222

23-
- SDXL Turbo uses the exact same architecture as [SDXL](./stable_diffusion_xl).
23+
- SDXL Turbo uses the exact same architecture as [SDXL](./stable_diffusion_xl), which means it also has the same API. Please refer to the [SDXL](./stable_diffusion_xl) API reference for more details.
2424
- SDXL Turbo should disable guidance scale by setting `guidance_scale=0.0`
2525
- SDXL Turbo should use `timestep_spacing='trailing'` for the scheduler and use between 1 and 4 steps.
2626
- SDXL Turbo has been trained to generate images of size 512x512.
2727
- SDXL Turbo is open-access, but not open-source meaning that one might have to buy a model license in order to use it for commercial applications. Make sure to read the [official model card](https://huggingface.co/stabilityai/sdxl-turbo) to learn more.
2828

2929
<Tip>
3030

31-
To learn how to use SDXL Turbo for various tasks, how to optimize performance, and other usage examples, take a look at the [Stable Diffusion XL](../../../using-diffusers/sdxl_turbo) guide.
31+
To learn how to use SDXL Turbo for various tasks, how to optimize performance, and other usage examples, take a look at the [SDXL Turbo](../../../using-diffusers/sdxl_turbo) guide.
3232

3333
Check out the [Stability AI](https://huggingface.co/stabilityai) Hub organization for the official base and refiner model checkpoints!
3434

3535
</Tip>
36-
37-
## StableDiffusionXLPipeline
38-
39-
[[autodoc]] StableDiffusionXLPipeline
40-
- all
41-
- __call__
42-
43-
## StableDiffusionXLImg2ImgPipeline
44-
45-
[[autodoc]] StableDiffusionXLImg2ImgPipeline
46-
- all
47-
- __call__
48-
49-
## StableDiffusionXLInpaintPipeline
50-
51-
[[autodoc]] StableDiffusionXLInpaintPipeline
52-
- all
53-
- __call__

0 commit comments

Comments
 (0)