Buckets:
| # Tiny AutoEncoder | |
| Tiny AutoEncoder for Stable Diffusion (TAESD) was introduced in [madebyollin/taesd](https://github.com/madebyollin/taesd) by Ollin Boer Bohan. It is a tiny distilled version of Stable Diffusion's VAE that can quickly decode the latents in a [StableDiffusionPipeline](/docs/diffusers/pr_12411/en/api/pipelines/stable_diffusion/text2img#diffusers.StableDiffusionPipeline) or [StableDiffusionXLPipeline](/docs/diffusers/pr_12411/en/api/pipelines/stable_diffusion/stable_diffusion_xl#diffusers.StableDiffusionXLPipeline) almost instantly. | |
| To use with Stable Diffusion v-2.1: | |
| ```python | |
| import torch | |
| from diffusers import DiffusionPipeline, AutoencoderTiny | |
| pipe = DiffusionPipeline.from_pretrained( | |
| "stabilityai/stable-diffusion-2-1-base", torch_dtype=torch.float16 | |
| ) | |
| pipe.vae = AutoencoderTiny.from_pretrained("madebyollin/taesd", torch_dtype=torch.float16) | |
| pipe = pipe.to("cuda") | |
| prompt = "slice of delicious New York-style berry cheesecake" | |
| image = pipe(prompt, num_inference_steps=25).images[0] | |
| image | |
| ``` | |
| To use with Stable Diffusion XL 1.0 | |
| ```python | |
| import torch | |
| from diffusers import DiffusionPipeline, AutoencoderTiny | |
| pipe = DiffusionPipeline.from_pretrained( | |
| "stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16 | |
| ) | |
| pipe.vae = AutoencoderTiny.from_pretrained("madebyollin/taesdxl", torch_dtype=torch.float16) | |
| pipe = pipe.to("cuda") | |
| prompt = "slice of delicious New York-style berry cheesecake" | |
| image = pipe(prompt, num_inference_steps=25).images[0] | |
| image | |
| ``` | |
| ## AutoencoderTiny[[diffusers.AutoencoderTiny]] | |
| #### diffusers.AutoencoderTiny[[diffusers.AutoencoderTiny]] | |
| [Source](https://github.com/huggingface/diffusers/blob/vr_12411/src/diffusers/models/autoencoders/autoencoder_tiny.py#L41) | |
| A tiny distilled VAE model for encoding images into latents and decoding latent representations into images. | |
| [AutoencoderTiny](/docs/diffusers/pr_12411/en/api/models/autoencoder_tiny#diffusers.AutoencoderTiny) is a wrapper around the original implementation of `TAESD`. | |
| This model inherits from [ModelMixin](/docs/diffusers/pr_12411/en/api/models/overview#diffusers.ModelMixin). Check the superclass documentation for its generic methods implemented for | |
| all models (such as downloading or saving). | |
| forwarddiffusers.AutoencoderTiny.forwardhttps://github.com/huggingface/diffusers/blob/vr_12411/src/diffusers/models/autoencoders/autoencoder_tiny.py#L292[{"name": "sample", "val": ": Tensor"}, {"name": "return_dict", "val": ": bool = True"}]- **sample** (`torch.Tensor`) -- Input sample. | |
| - **return_dict** (`bool`, *optional*, defaults to `True`) -- | |
| Whether or not to return a `DecoderOutput` instead of a plain tuple.0 | |
| **Parameters:** | |
| in_channels (`int`, *optional*, defaults to 3) : Number of channels in the input image. | |
| out_channels (`int`, *optional*, defaults to 3) : Number of channels in the output. | |
| encoder_block_out_channels (`Tuple[int]`, *optional*, defaults to `(64, 64, 64, 64)`) : Tuple of integers representing the number of output channels for each encoder block. The length of the tuple should be equal to the number of encoder blocks. | |
| decoder_block_out_channels (`Tuple[int]`, *optional*, defaults to `(64, 64, 64, 64)`) : Tuple of integers representing the number of output channels for each decoder block. The length of the tuple should be equal to the number of decoder blocks. | |
| act_fn (`str`, *optional*, defaults to `"relu"`) : Activation function to be used throughout the model. | |
| latent_channels (`int`, *optional*, defaults to 4) : Number of channels in the latent representation. The latent space acts as a compressed representation of the input image. | |
| upsampling_scaling_factor (`int`, *optional*, defaults to 2) : Scaling factor for upsampling in the decoder. It determines the size of the output image during the upsampling process. | |
| num_encoder_blocks (`Tuple[int]`, *optional*, defaults to `(1, 3, 3, 3)`) : Tuple of integers representing the number of encoder blocks at each stage of the encoding process. The length of the tuple should be equal to the number of stages in the encoder. Each stage has a different number of encoder blocks. | |
| num_decoder_blocks (`Tuple[int]`, *optional*, defaults to `(3, 3, 3, 1)`) : Tuple of integers representing the number of decoder blocks at each stage of the decoding process. The length of the tuple should be equal to the number of stages in the decoder. Each stage has a different number of decoder blocks. | |
| latent_magnitude (`float`, *optional*, defaults to 3.0) : Magnitude of the latent representation. This parameter scales the latent representation values to control the extent of information preservation. | |
| latent_shift (float, *optional*, defaults to 0.5) : Shift applied to the latent representation. This parameter controls the center of the latent space. | |
| scaling_factor (`float`, *optional*, defaults to 1.0) : The component-wise standard deviation of the trained latent space computed using the first batch of the training set. This is used to scale the latent space to have unit variance when training the diffusion model. The latents are scaled with the formula `z = z * scaling_factor` before being passed to the diffusion model. When decoding, the latents are scaled back to the original scale with the formula: `z = 1 / scaling_factor * z`. For more details, refer to sections 4.3.2 and D.1 of the [High-Resolution Image Synthesis with Latent Diffusion Models](https://huggingface.co/papers/2112.10752) paper. For this Autoencoder, however, no such scaling factor was used, hence the value of 1.0 as the default. | |
| force_upcast (`bool`, *optional*, default to `False`) : If enabled it will force the VAE to run in float32 for high image resolution pipelines, such as SD-XL. VAE can be fine-tuned / trained to a lower range without losing too much precision, in which case `force_upcast` can be set to `False` (see this fp16-friendly [AutoEncoder](https://huggingface.co/madebyollin/sdxl-vae-fp16-fix)). | |
| #### scale_latents[[diffusers.AutoencoderTiny.scale_latents]] | |
| [Source](https://github.com/huggingface/diffusers/blob/vr_12411/src/diffusers/models/autoencoders/autoencoder_tiny.py#L157) | |
| raw latents -> [0, 1] | |
| #### unscale_latents[[diffusers.AutoencoderTiny.unscale_latents]] | |
| [Source](https://github.com/huggingface/diffusers/blob/vr_12411/src/diffusers/models/autoencoders/autoencoder_tiny.py#L161) | |
| [0, 1] -> raw latents | |
| ## AutoencoderTinyOutput[[diffusers.models.autoencoders.autoencoder_tiny.AutoencoderTinyOutput]] | |
| #### diffusers.models.autoencoders.autoencoder_tiny.AutoencoderTinyOutput[[diffusers.models.autoencoders.autoencoder_tiny.AutoencoderTinyOutput]] | |
| [Source](https://github.com/huggingface/diffusers/blob/vr_12411/src/diffusers/models/autoencoders/autoencoder_tiny.py#L29) | |
| Output of AutoencoderTiny encoding method. | |
| **Parameters:** | |
| latents (`torch.Tensor`) : Encoded outputs of the `Encoder`. | |
Xet Storage Details
- Size:
- 6.87 kB
- Xet hash:
- 27d28553226c21e2221b40af824bd48d39b83009852d2a238c8a48f43945c80c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.