Buckets:
AutoencoderKLKVAEVideo
The 3D variational autoencoder (VAE) model with KL loss.
The model can be loaded with the following code snippet.
import torch
from diffusers import AutoencoderKLKVAEVideo
vae = AutoencoderKLKVAEVideo.from_pretrained("kandinskylab/KVAE-3D-1.0", subfolder="diffusers", torch_dtype=torch.float16)
AutoencoderKLKVAEVideo[[diffusers.AutoencoderKLKVAEVideo]]
- ch (
int, optional, defaults to 128) -- Base channel count. - ch_mult (
Tuple[int], optional, defaults to(1, 2, 4, 8)) -- Channel multipliers per level. - num_res_blocks (
int, optional, defaults to 2) -- Number of residual blocks per level. - in_channels (
int, optional, defaults to 3) -- Number of input channels. - out_ch (
int, optional, defaults to 3) -- Number of output channels. - z_channels (
int, optional, defaults to 16) -- Number of latent channels. - temporal_compress_times (
int, optional, defaults to 4) -- Temporal compression factor.
A VAE model with KL loss for encoding videos into latents and decoding latent representations into videos. Used in KVAE.
This model inherits from ModelMixin. Check the superclass documentation for its generic methods implemented for all models (such as downloading or saving).
- z (
torch.Tensor) -- Input batch of latent vectors with shape (B, C, T, H, W). - return_dict (
bool, optional, defaults toTrue) -- Whether to return a~models.vae.DecoderOutputinstead of a plain tuple.~models.vae.DecoderOutputortupleDecoded video.
Decode a batch of videos.
Disable sliced VAE decoding.
Enable sliced VAE decoding.
- x (
torch.Tensor) -- Input batch of videos with shape (B, C, T, H, W). - return_dict (
bool, optional, defaults toTrue) -- Whether to return a~models.autoencoder_kl.AutoencoderKLOutputinstead of a plain tuple.The latent representations of the encoded videos.
Encode a batch of videos into latents.
- sample (
torch.Tensor) -- Input sample. - sample_posterior (
bool, optional, defaults toFalse) -- Whether to sample from the posterior. - return_dict (
bool, optional, defaults toTrue) -- Whether or not to return aDecoderOutputinstead of a plain tuple. - generator (
torch.Generator, optional) -- Atorch.Generatorto make sampling deterministic.~models.vae.DecoderOutputortupleIfreturn_dictis True, a~models.vae.DecoderOutputis returned, otherwise a plaintupleis returned.
Xet Storage Details
- Size:
- 2.7 kB
- Xet hash:
- 36792dd68947fb943e29a2265f1421f22545ce32271b9cab1d581f7bc103730a
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.