AutoencoderKLLTXVideo
The 3D variational autoencoder (VAE) model with KL loss used in LTX was introduced by Lightricks.
The model can be loaded with the following code snippet.
from diffusers import AutoencoderKLLTXVideo
vae = AutoencoderKLLTXVideo.from_pretrained("TODO/TODO", subfolder="vae", torch_dtype=torch.float32).to("cuda")
AutoencoderKLLTXVideo
class diffusers.AutoencoderKLLTXVideo
< source >( in_channels: int = 3 out_channels: int = 3 latent_channels: int = 128 block_out_channels: typing.Tuple[int, ...] = (128, 256, 512, 512) spatio_temporal_scaling: typing.Tuple[bool, ...] = (True, True, True, False) layers_per_block: typing.Tuple[int, ...] = (4, 3, 3, 3, 4) patch_size: int = 4 patch_size_t: int = 1 resnet_norm_eps: float = 1e-06 scaling_factor: float = 1.0 encoder_causal: bool = True decoder_causal: bool = False )
Parameters
- in_channels (
int
, defaults to3
) — Number of input channels. - out_channels (
int
, defaults to3
) — Number of output channels. - latent_channels (
int
, defaults to128
) — Number of latent channels. - block_out_channels (
Tuple[int, ...]
, defaults to(128, 256, 512, 512)
) — The number of output channels for each block. - spatio_temporal_scaling (
Tuple[bool, ...], defaults to
(True, True, True, False)` — Whether a block should contain spatio-temporal downscaling or not. - layers_per_block (
Tuple[int, ...]
, defaults to(4, 3, 3, 3, 4)
) — The number of layers per block. - patch_size (
int
, defaults to4
) — The size of spatial patches. - patch_size_t (
int
, defaults to1
) — The size of temporal patches. - resnet_norm_eps (
float
, defaults to1e-6
) — Epsilon value for ResNet normalization layers. - scaling_factor (
float
, optional, defaults to1.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 formulaz = 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 paper. - encoder_causal (
bool
, defaults toTrue
) — Whether the encoder should behave causally (future frames depend only on past frames) or not. - decoder_causal (
bool
, defaults toFalse
) — Whether the decoder should behave causally (future frames depend only on past frames) or not.
A VAE model with KL loss for encoding images into latents and decoding latent representations into images. Used in LTX.
This model inherits from ModelMixin. Check the superclass documentation for it’s generic methods implemented for all models (such as downloading or saving).
Disable sliced VAE decoding. If enable_slicing
was previously enabled, this method will go back to computing
decoding in one step.
Disable tiled VAE decoding. If enable_tiling
was previously enabled, this method will go back to computing
decoding in one step.
Enable sliced VAE decoding. When this option is enabled, the VAE will split the input tensor in slices to compute decoding in several steps. This is useful to save some memory and allow larger batch sizes.
enable_tiling
< source >( tile_sample_min_height: typing.Optional[int] = None tile_sample_min_width: typing.Optional[int] = None tile_sample_stride_height: typing.Optional[float] = None tile_sample_stride_width: typing.Optional[float] = None )
Parameters
- tile_sample_min_height (
int
, optional) — The minimum height required for a sample to be separated into tiles across the height dimension. - tile_sample_min_width (
int
, optional) — The minimum width required for a sample to be separated into tiles across the width dimension. - tile_sample_stride_height (
int
, optional) — The minimum amount of overlap between two consecutive vertical tiles. This is to ensure that there are no tiling artifacts produced across the height dimension. - tile_sample_stride_width (
int
, optional) — The stride between two consecutive horizontal tiles. This is to ensure that there are no tiling artifacts produced across the width dimension.
Enable tiled VAE decoding. When this option is enabled, the VAE will split the input tensor into tiles to compute decoding and encoding in several steps. This is useful for saving a large amount of memory and to allow processing larger images.
tiled_decode
< source >( z: Tensor return_dict: bool = True ) → ~models.vae.DecoderOutput
or tuple
Parameters
- z (
torch.Tensor
) — Input batch of latent vectors. - return_dict (
bool
, optional, defaults toTrue
) — Whether or not to return a~models.vae.DecoderOutput
instead of a plain tuple.
Returns
~models.vae.DecoderOutput
or tuple
If return_dict is True, a ~models.vae.DecoderOutput
is returned, otherwise a plain tuple
is
returned.
Decode a batch of images using a tiled decoder.
tiled_encode
< source >( x: Tensor ) → torch.Tensor
Encode a batch of images using a tiled encoder.
AutoencoderKLOutput
class diffusers.models.modeling_outputs.AutoencoderKLOutput
< source >( latent_dist: DiagonalGaussianDistribution )
Output of AutoencoderKL encoding method.
DecoderOutput
class diffusers.models.autoencoders.vae.DecoderOutput
< source >( sample: Tensor commit_loss: typing.Optional[torch.FloatTensor] = None )
Output of decoding method.