Skip to content
4 changes: 4 additions & 0 deletions docs/source/en/_toctree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@
title: AsymmetricAutoencoderKL
- local: api/models/autoencoder_tiny
title: Tiny AutoEncoder
- local: api/models/consistency_decoder_vae
title: ConsistencyDecoderVae
- local: api/models/transformer2d
title: Transformer2D
- local: api/models/transformer_temporal
Expand Down Expand Up @@ -344,6 +346,8 @@
title: Overview
- local: api/schedulers/cm_stochastic_iterative
title: CMStochasticIterativeScheduler
- local: api/schedulers/consistency_decoder
title: ConsistencyDecoderScheduler
- local: api/schedulers/ddim_inverse
title: DDIMInverseScheduler
- local: api/schedulers/ddim
Expand Down
17 changes: 17 additions & 0 deletions docs/source/en/api/models/consistency_decoder_vae.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Consistency Decoder

Consistency decoder can be used to decode the latents from the denoising UNet in the [`StableDiffusionPipeline`]. This decoder was introduced in the [DALL-E 3 technical report](https://openai.com/dall-e-3).

The original codebase can be found at [openai/consistencydecoder](https://github.com/openai/consistencydecoder).

<Tip warning={true}>

Inference is only supported for 2 iterations as of now.

</Tip>


## ConsistencyDecoderVae
[[autodoc]] ConsistencyDecoderVae
- all
- decode
11 changes: 11 additions & 0 deletions docs/source/en/api/schedulers/consistency_decoder.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# ConsistencyDecoderScheduler

This scheduler is a part of the [`ConsistencyDecoderPipeline`] and was introduced in [DALL-E 3](https://openai.com/dall-e-3).

The original codebase can be found at [openai/consistency_models](https://github.com/openai/consistency_models).

## ConsistencyDecoderScheduler
[[autodoc]] ConsistencyDecoderScheduler

## ConsistencyDecoderScheduler
[[autodoc]] schedulers.scheduling_consistency_decoder.ConsistencyDecoderScheduler
Loading