| <!--Copyright 2024 The HuggingFace Team. All rights reserved. |
|
|
| Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
|
|
| http://www.apache.org/licenses/LICENSE-2.0 |
|
|
| Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
| an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations under the License. |
| --> |
|
|
| # 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> |
|
|
| The pipeline could not have been contributed without the help of [madebyollin](https://github.com/madebyollin) and [mrsteyk](https://github.com/mrsteyk) from [this issue](https://github.com/openai/consistencydecoder/issues/1). |
|
|
| ## ConsistencyDecoderVAE |
| [[autodoc]] ConsistencyDecoderVAE |
| - all |
| - decode |
|
|