| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
|
|
| import numpy as np |
| import torch |
| import torch.nn as nn |
| import torch.nn.functional as F |
| import torch.utils.checkpoint |
|
|
| from ...configuration_utils import ConfigMixin, register_to_config |
| from ...utils import logging |
| from ...utils.accelerate_utils import apply_forward_hook |
| from ..activations import get_activation |
| from ..modeling_outputs import AutoencoderKLOutput |
| from ..modeling_utils import ModelMixin |
| from .vae import AutoencoderMixin, DecoderOutput, DiagonalGaussianDistribution |
|
|
|
|
| logger = logging.get_logger(__name__) |
|
|
|
|
| class HunyuanVideo15CausalConv3d(nn.Module): |
| def __init__( |
| self, |
| in_channels: int, |
| out_channels: int, |
| kernel_size: int | tuple[int, int, int] = 3, |
| stride: int | tuple[int, int, int] = 1, |
| padding: int | tuple[int, int, int] = 0, |
| dilation: int | tuple[int, int, int] = 1, |
| bias: bool = True, |
| pad_mode: str = "replicate", |
| ) -> None: |
| super().__init__() |
|
|
| kernel_size = (kernel_size, kernel_size, kernel_size) if isinstance(kernel_size, int) else kernel_size |
|
|
| self.pad_mode = pad_mode |
| self.time_causal_padding = ( |
| kernel_size[0] // 2, |
| kernel_size[0] // 2, |
| kernel_size[1] // 2, |
| kernel_size[1] // 2, |
| kernel_size[2] - 1, |
| 0, |
| ) |
|
|
| self.conv = nn.Conv3d(in_channels, out_channels, kernel_size, stride, padding, dilation, bias=bias) |
|
|
| def forward(self, hidden_states: torch.Tensor) -> torch.Tensor: |
| hidden_states = F.pad(hidden_states, self.time_causal_padding, mode=self.pad_mode) |
| return self.conv(hidden_states) |
|
|
|
|
| class HunyuanVideo15RMS_norm(nn.Module): |
| r""" |
| A custom RMS normalization layer. |
| |
| Args: |
| dim (int): The number of dimensions to normalize over. |
| channel_first (bool, optional): Whether the input tensor has channels as the first dimension. |
| Default is True. |
| images (bool, optional): Whether the input represents image data. Default is True. |
| bias (bool, optional): Whether to include a learnable bias term. Default is False. |
| """ |
|
|
| def __init__(self, dim: int, channel_first: bool = True, images: bool = True, bias: bool = False) -> None: |
| super().__init__() |
| broadcastable_dims = (1, 1, 1) if not images else (1, 1) |
| shape = (dim, *broadcastable_dims) if channel_first else (dim,) |
|
|
| self.channel_first = channel_first |
| self.scale = dim**0.5 |
| self.gamma = nn.Parameter(torch.ones(shape)) |
| self.bias = nn.Parameter(torch.zeros(shape)) if bias else 0.0 |
|
|
| def forward(self, x): |
| needs_fp32_normalize = x.dtype in (torch.float16, torch.bfloat16) or any( |
| t in str(x.dtype) for t in ("float4_", "float8_") |
| ) |
| normalized = F.normalize(x.float() if needs_fp32_normalize else x, dim=(1 if self.channel_first else -1)).to( |
| x.dtype |
| ) |
|
|
| return normalized * self.scale * self.gamma + self.bias |
|
|
|
|
| class HunyuanVideo15AttnBlock(nn.Module): |
| def __init__(self, in_channels: int): |
| super().__init__() |
| self.in_channels = in_channels |
|
|
| self.norm = HunyuanVideo15RMS_norm(in_channels, images=False) |
|
|
| self.to_q = nn.Conv3d(in_channels, in_channels, kernel_size=1) |
| self.to_k = nn.Conv3d(in_channels, in_channels, kernel_size=1) |
| self.to_v = nn.Conv3d(in_channels, in_channels, kernel_size=1) |
| self.proj_out = nn.Conv3d(in_channels, in_channels, kernel_size=1) |
|
|
| @staticmethod |
| def prepare_causal_attention_mask(n_frame: int, n_hw: int, dtype, device, batch_size: int = None): |
| """Prepare a causal attention mask for 3D videos. |
| |
| Args: |
| n_frame (int): Number of frames (temporal length). |
| n_hw (int): Product of height and width. |
| dtype: Desired mask dtype. |
| device: Device for the mask. |
| batch_size (int, optional): If set, expands for batch. |
| |
| Returns: |
| torch.Tensor: Causal attention mask. |
| """ |
| seq_len = n_frame * n_hw |
| mask = torch.full((seq_len, seq_len), float("-inf"), dtype=dtype, device=device) |
| for i in range(seq_len): |
| i_frame = i // n_hw |
| mask[i, : (i_frame + 1) * n_hw] = 0 |
| if batch_size is not None: |
| mask = mask.unsqueeze(0).expand(batch_size, -1, -1) |
| return mask |
|
|
| def forward(self, x: torch.Tensor) -> torch.Tensor: |
| identity = x |
|
|
| x = self.norm(x) |
|
|
| query = self.to_q(x) |
| key = self.to_k(x) |
| value = self.to_v(x) |
|
|
| batch_size, channels, frames, height, width = query.shape |
|
|
| query = query.reshape(batch_size, channels, frames * height * width).permute(0, 2, 1).unsqueeze(1).contiguous() |
| key = key.reshape(batch_size, channels, frames * height * width).permute(0, 2, 1).unsqueeze(1).contiguous() |
| value = value.reshape(batch_size, channels, frames * height * width).permute(0, 2, 1).unsqueeze(1).contiguous() |
|
|
| attention_mask = self.prepare_causal_attention_mask( |
| frames, height * width, query.dtype, query.device, batch_size=batch_size |
| ) |
|
|
| x = nn.functional.scaled_dot_product_attention(query, key, value, attn_mask=attention_mask) |
|
|
| |
|
|
| x = x.squeeze(1).reshape(batch_size, frames, height, width, channels).permute(0, 4, 1, 2, 3) |
| x = self.proj_out(x) |
|
|
| return x + identity |
|
|
|
|
| class HunyuanVideo15Upsample(nn.Module): |
| def __init__(self, in_channels: int, out_channels: int, add_temporal_upsample: bool = True): |
| super().__init__() |
| factor = 2 * 2 * 2 if add_temporal_upsample else 1 * 2 * 2 |
| self.conv = HunyuanVideo15CausalConv3d(in_channels, out_channels * factor, kernel_size=3) |
|
|
| self.add_temporal_upsample = add_temporal_upsample |
| self.repeats = factor * out_channels // in_channels |
|
|
| @staticmethod |
| def _dcae_upsample_rearrange(tensor, r1=1, r2=2, r3=2): |
| """ |
| Convert (b, r1*r2*r3*c, f, h, w) -> (b, c, r1*f, r2*h, r3*w) |
| |
| Args: |
| tensor: Input tensor of shape (b, r1*r2*r3*c, f, h, w) |
| r1: temporal upsampling factor |
| r2: height upsampling factor |
| r3: width upsampling factor |
| """ |
| b, packed_c, f, h, w = tensor.shape |
| factor = r1 * r2 * r3 |
| c = packed_c // factor |
|
|
| tensor = tensor.view(b, r1, r2, r3, c, f, h, w) |
| tensor = tensor.permute(0, 4, 5, 1, 6, 2, 7, 3) |
| return tensor.reshape(b, c, f * r1, h * r2, w * r3) |
|
|
| def forward(self, x: torch.Tensor): |
| r1 = 2 if self.add_temporal_upsample else 1 |
| h = self.conv(x) |
| if self.add_temporal_upsample: |
| h_first = h[:, :, :1, :, :] |
| h_first = self._dcae_upsample_rearrange(h_first, r1=1, r2=2, r3=2) |
| h_first = h_first[:, : h_first.shape[1] // 2] |
| h_next = h[:, :, 1:, :, :] |
| h_next = self._dcae_upsample_rearrange(h_next, r1=r1, r2=2, r3=2) |
| h = torch.cat([h_first, h_next], dim=2) |
|
|
| |
| x_first = x[:, :, :1, :, :] |
| x_first = self._dcae_upsample_rearrange(x_first, r1=1, r2=2, r3=2) |
| x_first = x_first.repeat_interleave(repeats=self.repeats // 2, dim=1) |
|
|
| x_next = x[:, :, 1:, :, :] |
| x_next = self._dcae_upsample_rearrange(x_next, r1=r1, r2=2, r3=2) |
| x_next = x_next.repeat_interleave(repeats=self.repeats, dim=1) |
| shortcut = torch.cat([x_first, x_next], dim=2) |
|
|
| else: |
| h = self._dcae_upsample_rearrange(h, r1=r1, r2=2, r3=2) |
| shortcut = x.repeat_interleave(repeats=self.repeats, dim=1) |
| shortcut = self._dcae_upsample_rearrange(shortcut, r1=r1, r2=2, r3=2) |
| return h + shortcut |
|
|
|
|
| class HunyuanVideo15Downsample(nn.Module): |
| def __init__(self, in_channels: int, out_channels: int, add_temporal_downsample: bool = True): |
| super().__init__() |
| factor = 2 * 2 * 2 if add_temporal_downsample else 1 * 2 * 2 |
| self.conv = HunyuanVideo15CausalConv3d(in_channels, out_channels // factor, kernel_size=3) |
|
|
| self.add_temporal_downsample = add_temporal_downsample |
| self.group_size = factor * in_channels // out_channels |
|
|
| @staticmethod |
| def _dcae_downsample_rearrange(tensor, r1=1, r2=2, r3=2): |
| """ |
| Convert (b, c, r1*f, r2*h, r3*w) -> (b, r1*r2*r3*c, f, h, w) |
| |
| This packs spatial/temporal dimensions into channels (opposite of upsample) |
| """ |
| b, c, packed_f, packed_h, packed_w = tensor.shape |
| f, h, w = packed_f // r1, packed_h // r2, packed_w // r3 |
|
|
| tensor = tensor.view(b, c, f, r1, h, r2, w, r3) |
| tensor = tensor.permute(0, 3, 5, 7, 1, 2, 4, 6) |
| return tensor.reshape(b, r1 * r2 * r3 * c, f, h, w) |
|
|
| def forward(self, x: torch.Tensor): |
| r1 = 2 if self.add_temporal_downsample else 1 |
| h = self.conv(x) |
| if self.add_temporal_downsample: |
| h_first = h[:, :, :1, :, :] |
| h_first = self._dcae_downsample_rearrange(h_first, r1=1, r2=2, r3=2) |
| h_first = torch.cat([h_first, h_first], dim=1) |
| h_next = h[:, :, 1:, :, :] |
| h_next = self._dcae_downsample_rearrange(h_next, r1=r1, r2=2, r3=2) |
| h = torch.cat([h_first, h_next], dim=2) |
|
|
| |
| x_first = x[:, :, :1, :, :] |
| x_first = self._dcae_downsample_rearrange(x_first, r1=1, r2=2, r3=2) |
| B, C, T, H, W = x_first.shape |
| x_first = x_first.view(B, h.shape[1], self.group_size // 2, T, H, W).mean(dim=2) |
| x_next = x[:, :, 1:, :, :] |
| x_next = self._dcae_downsample_rearrange(x_next, r1=r1, r2=2, r3=2) |
| B, C, T, H, W = x_next.shape |
| x_next = x_next.view(B, h.shape[1], self.group_size, T, H, W).mean(dim=2) |
| shortcut = torch.cat([x_first, x_next], dim=2) |
| else: |
| h = self._dcae_downsample_rearrange(h, r1=r1, r2=2, r3=2) |
| shortcut = self._dcae_downsample_rearrange(x, r1=r1, r2=2, r3=2) |
| B, C, T, H, W = shortcut.shape |
| shortcut = shortcut.view(B, h.shape[1], self.group_size, T, H, W).mean(dim=2) |
|
|
| return h + shortcut |
|
|
|
|
| class HunyuanVideo15ResnetBlock(nn.Module): |
| def __init__( |
| self, |
| in_channels: int, |
| out_channels: int | None = None, |
| non_linearity: str = "swish", |
| ) -> None: |
| super().__init__() |
| out_channels = out_channels or in_channels |
|
|
| self.nonlinearity = get_activation(non_linearity) |
|
|
| self.norm1 = HunyuanVideo15RMS_norm(in_channels, images=False) |
| self.conv1 = HunyuanVideo15CausalConv3d(in_channels, out_channels, kernel_size=3) |
|
|
| self.norm2 = HunyuanVideo15RMS_norm(out_channels, images=False) |
| self.conv2 = HunyuanVideo15CausalConv3d(out_channels, out_channels, kernel_size=3) |
|
|
| self.conv_shortcut = None |
| if in_channels != out_channels: |
| self.conv_shortcut = nn.Conv3d(in_channels, out_channels, kernel_size=1, stride=1, padding=0) |
|
|
| def forward(self, hidden_states: torch.Tensor) -> torch.Tensor: |
| residual = hidden_states |
|
|
| hidden_states = self.norm1(hidden_states) |
| hidden_states = self.nonlinearity(hidden_states) |
| hidden_states = self.conv1(hidden_states) |
|
|
| hidden_states = self.norm2(hidden_states) |
| hidden_states = self.nonlinearity(hidden_states) |
| hidden_states = self.conv2(hidden_states) |
|
|
| if self.conv_shortcut is not None: |
| residual = self.conv_shortcut(residual) |
|
|
| return hidden_states + residual |
|
|
|
|
| class HunyuanVideo15MidBlock(nn.Module): |
| def __init__( |
| self, |
| in_channels: int, |
| num_layers: int = 1, |
| add_attention: bool = True, |
| ) -> None: |
| super().__init__() |
| self.add_attention = add_attention |
|
|
| |
| resnets = [ |
| HunyuanVideo15ResnetBlock( |
| in_channels=in_channels, |
| out_channels=in_channels, |
| ) |
| ] |
| attentions = [] |
|
|
| for _ in range(num_layers): |
| if self.add_attention: |
| attentions.append(HunyuanVideo15AttnBlock(in_channels)) |
| else: |
| attentions.append(None) |
|
|
| resnets.append( |
| HunyuanVideo15ResnetBlock( |
| in_channels=in_channels, |
| out_channels=in_channels, |
| ) |
| ) |
|
|
| self.attentions = nn.ModuleList(attentions) |
| self.resnets = nn.ModuleList(resnets) |
|
|
| self.gradient_checkpointing = False |
|
|
| def forward(self, hidden_states: torch.Tensor) -> torch.Tensor: |
| hidden_states = self.resnets[0](hidden_states) |
|
|
| for attn, resnet in zip(self.attentions, self.resnets[1:]): |
| if attn is not None: |
| hidden_states = attn(hidden_states) |
| hidden_states = resnet(hidden_states) |
|
|
| return hidden_states |
|
|
|
|
| class HunyuanVideo15DownBlock3D(nn.Module): |
| def __init__( |
| self, |
| in_channels: int, |
| out_channels: int, |
| num_layers: int = 1, |
| downsample_out_channels: int | None = None, |
| add_temporal_downsample: int = True, |
| ) -> None: |
| super().__init__() |
| resnets = [] |
|
|
| for i in range(num_layers): |
| in_channels = in_channels if i == 0 else out_channels |
| resnets.append( |
| HunyuanVideo15ResnetBlock( |
| in_channels=in_channels, |
| out_channels=out_channels, |
| ) |
| ) |
|
|
| self.resnets = nn.ModuleList(resnets) |
|
|
| if downsample_out_channels is not None: |
| self.downsamplers = nn.ModuleList( |
| [ |
| HunyuanVideo15Downsample( |
| out_channels, |
| out_channels=downsample_out_channels, |
| add_temporal_downsample=add_temporal_downsample, |
| ) |
| ] |
| ) |
| else: |
| self.downsamplers = None |
|
|
| self.gradient_checkpointing = False |
|
|
| def forward(self, hidden_states: torch.Tensor) -> torch.Tensor: |
| for resnet in self.resnets: |
| hidden_states = resnet(hidden_states) |
|
|
| if self.downsamplers is not None: |
| for downsampler in self.downsamplers: |
| hidden_states = downsampler(hidden_states) |
|
|
| return hidden_states |
|
|
|
|
| class HunyuanVideo15UpBlock3D(nn.Module): |
| def __init__( |
| self, |
| in_channels: int, |
| out_channels: int, |
| num_layers: int = 1, |
| upsample_out_channels: int | None = None, |
| add_temporal_upsample: bool = True, |
| ) -> None: |
| super().__init__() |
| resnets = [] |
|
|
| for i in range(num_layers): |
| input_channels = in_channels if i == 0 else out_channels |
|
|
| resnets.append( |
| HunyuanVideo15ResnetBlock( |
| in_channels=input_channels, |
| out_channels=out_channels, |
| ) |
| ) |
|
|
| self.resnets = nn.ModuleList(resnets) |
|
|
| if upsample_out_channels is not None: |
| self.upsamplers = nn.ModuleList( |
| [ |
| HunyuanVideo15Upsample( |
| out_channels, |
| out_channels=upsample_out_channels, |
| add_temporal_upsample=add_temporal_upsample, |
| ) |
| ] |
| ) |
| else: |
| self.upsamplers = None |
|
|
| self.gradient_checkpointing = False |
|
|
| def forward(self, hidden_states: torch.Tensor) -> torch.Tensor: |
| if torch.is_grad_enabled() and self.gradient_checkpointing: |
| for resnet in self.resnets: |
| hidden_states = self._gradient_checkpointing_func(resnet, hidden_states) |
|
|
| else: |
| for resnet in self.resnets: |
| hidden_states = resnet(hidden_states) |
|
|
| if self.upsamplers is not None: |
| for upsampler in self.upsamplers: |
| hidden_states = upsampler(hidden_states) |
|
|
| return hidden_states |
|
|
|
|
| class HunyuanVideo15Encoder3D(nn.Module): |
| r""" |
| 3D vae encoder for HunyuanImageRefiner. |
| """ |
|
|
| def __init__( |
| self, |
| in_channels: int = 3, |
| out_channels: int = 64, |
| block_out_channels: tuple[int, ...] = (128, 256, 512, 1024, 1024), |
| layers_per_block: int = 2, |
| temporal_compression_ratio: int = 4, |
| spatial_compression_ratio: int = 16, |
| downsample_match_channel: bool = True, |
| ) -> None: |
| super().__init__() |
|
|
| self.in_channels = in_channels |
| self.out_channels = out_channels |
| self.group_size = block_out_channels[-1] // self.out_channels |
|
|
| self.conv_in = HunyuanVideo15CausalConv3d(in_channels, block_out_channels[0], kernel_size=3) |
| self.mid_block = None |
| self.down_blocks = nn.ModuleList([]) |
|
|
| input_channel = block_out_channels[0] |
| for i in range(len(block_out_channels)): |
| add_spatial_downsample = i < np.log2(spatial_compression_ratio) |
| output_channel = block_out_channels[i] |
| if not add_spatial_downsample: |
| down_block = HunyuanVideo15DownBlock3D( |
| num_layers=layers_per_block, |
| in_channels=input_channel, |
| out_channels=output_channel, |
| downsample_out_channels=None, |
| add_temporal_downsample=False, |
| ) |
| input_channel = output_channel |
| else: |
| add_temporal_downsample = i >= np.log2(spatial_compression_ratio // temporal_compression_ratio) |
| downsample_out_channels = block_out_channels[i + 1] if downsample_match_channel else output_channel |
| down_block = HunyuanVideo15DownBlock3D( |
| num_layers=layers_per_block, |
| in_channels=input_channel, |
| out_channels=output_channel, |
| downsample_out_channels=downsample_out_channels, |
| add_temporal_downsample=add_temporal_downsample, |
| ) |
| input_channel = downsample_out_channels |
|
|
| self.down_blocks.append(down_block) |
|
|
| self.mid_block = HunyuanVideo15MidBlock(in_channels=block_out_channels[-1]) |
|
|
| self.norm_out = HunyuanVideo15RMS_norm(block_out_channels[-1], images=False) |
| self.conv_act = nn.SiLU() |
| self.conv_out = HunyuanVideo15CausalConv3d(block_out_channels[-1], out_channels, kernel_size=3) |
|
|
| self.gradient_checkpointing = False |
|
|
| def forward(self, hidden_states: torch.Tensor) -> torch.Tensor: |
| hidden_states = self.conv_in(hidden_states) |
|
|
| if torch.is_grad_enabled() and self.gradient_checkpointing: |
| for down_block in self.down_blocks: |
| hidden_states = self._gradient_checkpointing_func(down_block, hidden_states) |
|
|
| hidden_states = self._gradient_checkpointing_func(self.mid_block, hidden_states) |
| else: |
| for down_block in self.down_blocks: |
| hidden_states = down_block(hidden_states) |
|
|
| hidden_states = self.mid_block(hidden_states) |
|
|
| batch_size, _, frame, height, width = hidden_states.shape |
| short_cut = hidden_states.view(batch_size, -1, self.group_size, frame, height, width).mean(dim=2) |
|
|
| hidden_states = self.norm_out(hidden_states) |
| hidden_states = self.conv_act(hidden_states) |
| hidden_states = self.conv_out(hidden_states) |
|
|
| hidden_states += short_cut |
|
|
| return hidden_states |
|
|
|
|
| class HunyuanVideo15Decoder3D(nn.Module): |
| r""" |
| Causal decoder for 3D video-like data used for HunyuanImage-1.5 Refiner. |
| """ |
|
|
| def __init__( |
| self, |
| in_channels: int = 32, |
| out_channels: int = 3, |
| block_out_channels: tuple[int, ...] = (1024, 1024, 512, 256, 128), |
| layers_per_block: int = 2, |
| spatial_compression_ratio: int = 16, |
| temporal_compression_ratio: int = 4, |
| upsample_match_channel: bool = True, |
| ): |
| super().__init__() |
| self.layers_per_block = layers_per_block |
| self.in_channels = in_channels |
| self.out_channels = out_channels |
| self.repeat = block_out_channels[0] // self.in_channels |
|
|
| self.conv_in = HunyuanVideo15CausalConv3d(self.in_channels, block_out_channels[0], kernel_size=3) |
| self.up_blocks = nn.ModuleList([]) |
|
|
| |
| self.mid_block = HunyuanVideo15MidBlock(in_channels=block_out_channels[0]) |
|
|
| |
| input_channel = block_out_channels[0] |
| for i in range(len(block_out_channels)): |
| output_channel = block_out_channels[i] |
|
|
| add_spatial_upsample = i < np.log2(spatial_compression_ratio) |
| add_temporal_upsample = i < np.log2(temporal_compression_ratio) |
| if add_spatial_upsample or add_temporal_upsample: |
| upsample_out_channels = block_out_channels[i + 1] if upsample_match_channel else output_channel |
| up_block = HunyuanVideo15UpBlock3D( |
| num_layers=self.layers_per_block + 1, |
| in_channels=input_channel, |
| out_channels=output_channel, |
| upsample_out_channels=upsample_out_channels, |
| add_temporal_upsample=add_temporal_upsample, |
| ) |
| input_channel = upsample_out_channels |
| else: |
| up_block = HunyuanVideo15UpBlock3D( |
| num_layers=self.layers_per_block + 1, |
| in_channels=input_channel, |
| out_channels=output_channel, |
| upsample_out_channels=None, |
| add_temporal_upsample=False, |
| ) |
| input_channel = output_channel |
|
|
| self.up_blocks.append(up_block) |
|
|
| |
| self.norm_out = HunyuanVideo15RMS_norm(block_out_channels[-1], images=False) |
| self.conv_act = nn.SiLU() |
| self.conv_out = HunyuanVideo15CausalConv3d(block_out_channels[-1], out_channels, kernel_size=3) |
|
|
| self.gradient_checkpointing = False |
|
|
| def forward(self, hidden_states: torch.Tensor) -> torch.Tensor: |
| hidden_states = self.conv_in(hidden_states) + hidden_states.repeat_interleave(repeats=self.repeat, dim=1) |
|
|
| if torch.is_grad_enabled() and self.gradient_checkpointing: |
| hidden_states = self._gradient_checkpointing_func(self.mid_block, hidden_states) |
|
|
| for up_block in self.up_blocks: |
| hidden_states = self._gradient_checkpointing_func(up_block, hidden_states) |
| else: |
| hidden_states = self.mid_block(hidden_states) |
|
|
| for up_block in self.up_blocks: |
| hidden_states = up_block(hidden_states) |
|
|
| |
| hidden_states = self.norm_out(hidden_states) |
| hidden_states = self.conv_act(hidden_states) |
| hidden_states = self.conv_out(hidden_states) |
| return hidden_states |
|
|
|
|
| class AutoencoderKLHunyuanVideo15(ModelMixin, AutoencoderMixin, ConfigMixin): |
| r""" |
| A VAE model with KL loss for encoding videos into latents and decoding latent representations into videos. Used for |
| HunyuanVideo-1.5. |
| |
| This model inherits from [`ModelMixin`]. Check the superclass documentation for it's generic methods implemented |
| for all models (such as downloading or saving). |
| """ |
|
|
| _supports_gradient_checkpointing = True |
|
|
| @register_to_config |
| def __init__( |
| self, |
| in_channels: int = 3, |
| out_channels: int = 3, |
| latent_channels: int = 32, |
| block_out_channels: tuple[int] = (128, 256, 512, 1024, 1024), |
| layers_per_block: int = 2, |
| spatial_compression_ratio: int = 16, |
| temporal_compression_ratio: int = 4, |
| downsample_match_channel: bool = True, |
| upsample_match_channel: bool = True, |
| scaling_factor: float = 1.03682, |
| ) -> None: |
| super().__init__() |
|
|
| self.encoder = HunyuanVideo15Encoder3D( |
| in_channels=in_channels, |
| out_channels=latent_channels * 2, |
| block_out_channels=block_out_channels, |
| layers_per_block=layers_per_block, |
| temporal_compression_ratio=temporal_compression_ratio, |
| spatial_compression_ratio=spatial_compression_ratio, |
| downsample_match_channel=downsample_match_channel, |
| ) |
|
|
| self.decoder = HunyuanVideo15Decoder3D( |
| in_channels=latent_channels, |
| out_channels=out_channels, |
| block_out_channels=list(reversed(block_out_channels)), |
| layers_per_block=layers_per_block, |
| temporal_compression_ratio=temporal_compression_ratio, |
| spatial_compression_ratio=spatial_compression_ratio, |
| upsample_match_channel=upsample_match_channel, |
| ) |
|
|
| self.spatial_compression_ratio = spatial_compression_ratio |
| self.temporal_compression_ratio = temporal_compression_ratio |
|
|
| |
| |
| self.use_slicing = False |
|
|
| |
| |
| |
| self.use_tiling = False |
|
|
| |
| self.tile_sample_min_height = 256 |
| self.tile_sample_min_width = 256 |
|
|
| |
| self.tile_latent_min_height = self.tile_sample_min_height // spatial_compression_ratio |
| self.tile_latent_min_width = self.tile_sample_min_width // spatial_compression_ratio |
| self.tile_overlap_factor = 0.25 |
|
|
| def enable_tiling( |
| self, |
| tile_sample_min_height: int | None = None, |
| tile_sample_min_width: int | None = None, |
| tile_latent_min_height: int | None = None, |
| tile_latent_min_width: int | None = None, |
| tile_overlap_factor: float | None = None, |
| ) -> None: |
| r""" |
| 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. |
| |
| Args: |
| 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_latent_min_height (`int`, *optional*): |
| The minimum height required for a latent to be separated into tiles across the height dimension. |
| tile_latent_min_width (`int`, *optional*): |
| The minimum width required for a latent to be separated into tiles across the width dimension. |
| """ |
| self.use_tiling = True |
| self.tile_sample_min_height = tile_sample_min_height or self.tile_sample_min_height |
| self.tile_sample_min_width = tile_sample_min_width or self.tile_sample_min_width |
| self.tile_latent_min_height = tile_latent_min_height or self.tile_latent_min_height |
| self.tile_latent_min_width = tile_latent_min_width or self.tile_latent_min_width |
| self.tile_overlap_factor = tile_overlap_factor or self.tile_overlap_factor |
|
|
| def _encode(self, x: torch.Tensor) -> torch.Tensor: |
| _, _, _, height, width = x.shape |
|
|
| if self.use_tiling and (width > self.tile_sample_min_width or height > self.tile_sample_min_height): |
| return self.tiled_encode(x) |
|
|
| x = self.encoder(x) |
| return x |
|
|
| @apply_forward_hook |
| def encode( |
| self, x: torch.Tensor, return_dict: bool = True |
| ) -> AutoencoderKLOutput | tuple[DiagonalGaussianDistribution]: |
| r""" |
| Encode a batch of images into latents. |
| |
| Args: |
| x (`torch.Tensor`): Input batch of images. |
| return_dict (`bool`, *optional*, defaults to `True`): |
| Whether to return a [`~models.autoencoder_kl.AutoencoderKLOutput`] instead of a plain tuple. |
| |
| Returns: |
| The latent representations of the encoded videos. If `return_dict` is True, a |
| [`~models.autoencoder_kl.AutoencoderKLOutput`] is returned, otherwise a plain `tuple` is returned. |
| """ |
| if self.use_slicing and x.shape[0] > 1: |
| encoded_slices = [self._encode(x_slice) for x_slice in x.split(1)] |
| h = torch.cat(encoded_slices) |
| else: |
| h = self._encode(x) |
|
|
| posterior = DiagonalGaussianDistribution(h) |
|
|
| if not return_dict: |
| return (posterior,) |
| return AutoencoderKLOutput(latent_dist=posterior) |
|
|
| def _decode(self, z: torch.Tensor) -> torch.Tensor: |
| _, _, _, height, width = z.shape |
|
|
| if self.use_tiling and (width > self.tile_latent_min_width or height > self.tile_latent_min_height): |
| return self.tiled_decode(z) |
|
|
| dec = self.decoder(z) |
|
|
| return dec |
|
|
| @apply_forward_hook |
| def decode(self, z: torch.Tensor, return_dict: bool = True) -> DecoderOutput | torch.Tensor: |
| r""" |
| Decode a batch of images. |
| |
| Args: |
| z (`torch.Tensor`): Input batch of latent vectors. |
| return_dict (`bool`, *optional*, defaults to `True`): |
| Whether 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. |
| """ |
| if self.use_slicing and z.shape[0] > 1: |
| decoded_slices = [self._decode(z_slice) for z_slice in z.split(1)] |
| decoded = torch.cat(decoded_slices) |
| else: |
| decoded = self._decode(z) |
|
|
| if not return_dict: |
| return (decoded,) |
|
|
| return DecoderOutput(sample=decoded) |
|
|
| def blend_v(self, a: torch.Tensor, b: torch.Tensor, blend_extent: int) -> torch.Tensor: |
| blend_extent = min(a.shape[-2], b.shape[-2], blend_extent) |
| for y in range(blend_extent): |
| b[:, :, :, y, :] = a[:, :, :, -blend_extent + y, :] * (1 - y / blend_extent) + b[:, :, :, y, :] * ( |
| y / blend_extent |
| ) |
| return b |
|
|
| def blend_h(self, a: torch.Tensor, b: torch.Tensor, blend_extent: int) -> torch.Tensor: |
| blend_extent = min(a.shape[-1], b.shape[-1], blend_extent) |
| for x in range(blend_extent): |
| b[:, :, :, :, x] = a[:, :, :, :, -blend_extent + x] * (1 - x / blend_extent) + b[:, :, :, :, x] * ( |
| x / blend_extent |
| ) |
| return b |
|
|
| def blend_t(self, a: torch.Tensor, b: torch.Tensor, blend_extent: int) -> torch.Tensor: |
| blend_extent = min(a.shape[-3], b.shape[-3], blend_extent) |
| for x in range(blend_extent): |
| b[:, :, x, :, :] = a[:, :, -blend_extent + x, :, :] * (1 - x / blend_extent) + b[:, :, x, :, :] * ( |
| x / blend_extent |
| ) |
| return b |
|
|
| def tiled_encode(self, x: torch.Tensor) -> torch.Tensor: |
| r"""Encode a batch of images using a tiled encoder. |
| |
| Args: |
| x (`torch.Tensor`): Input batch of videos. |
| |
| Returns: |
| `torch.Tensor`: |
| The latent representation of the encoded videos. |
| """ |
| _, _, _, height, width = x.shape |
|
|
| overlap_height = int(self.tile_sample_min_height * (1 - self.tile_overlap_factor)) |
| overlap_width = int(self.tile_sample_min_width * (1 - self.tile_overlap_factor)) |
| blend_height = int(self.tile_latent_min_height * self.tile_overlap_factor) |
| blend_width = int(self.tile_latent_min_width * self.tile_overlap_factor) |
| row_limit_height = self.tile_latent_min_height - blend_height |
| row_limit_width = self.tile_latent_min_width - blend_width |
|
|
| rows = [] |
| for i in range(0, height, overlap_height): |
| row = [] |
| for j in range(0, width, overlap_width): |
| tile = x[ |
| :, |
| :, |
| :, |
| i : i + self.tile_sample_min_height, |
| j : j + self.tile_sample_min_width, |
| ] |
| tile = self.encoder(tile) |
| row.append(tile) |
| rows.append(row) |
|
|
| result_rows = [] |
| for i, row in enumerate(rows): |
| result_row = [] |
| for j, tile in enumerate(row): |
| if i > 0: |
| tile = self.blend_v(rows[i - 1][j], tile, blend_height) |
| if j > 0: |
| tile = self.blend_h(row[j - 1], tile, blend_width) |
| result_row.append(tile[:, :, :, :row_limit_height, :row_limit_width]) |
| result_rows.append(torch.cat(result_row, dim=-1)) |
| moments = torch.cat(result_rows, dim=-2) |
|
|
| return moments |
|
|
| def tiled_decode(self, z: torch.Tensor) -> torch.Tensor: |
| r""" |
| Decode a batch of images using a tiled decoder. |
| |
| Args: |
| z (`torch.Tensor`): Input batch of latent vectors. |
| return_dict (`bool`, *optional*, defaults to `True`): |
| 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. |
| """ |
|
|
| _, _, _, height, width = z.shape |
|
|
| overlap_height = int(self.tile_latent_min_height * (1 - self.tile_overlap_factor)) |
| overlap_width = int(self.tile_latent_min_width * (1 - self.tile_overlap_factor)) |
| blend_height = int(self.tile_sample_min_height * self.tile_overlap_factor) |
| blend_width = int(self.tile_sample_min_width * self.tile_overlap_factor) |
| row_limit_height = self.tile_sample_min_height - blend_height |
| row_limit_width = self.tile_sample_min_width - blend_width |
|
|
| rows = [] |
| for i in range(0, height, overlap_height): |
| row = [] |
| for j in range(0, width, overlap_width): |
| tile = z[ |
| :, |
| :, |
| :, |
| i : i + self.tile_latent_min_height, |
| j : j + self.tile_latent_min_width, |
| ] |
| decoded = self.decoder(tile) |
| row.append(decoded) |
| rows.append(row) |
|
|
| result_rows = [] |
| for i, row in enumerate(rows): |
| result_row = [] |
| for j, tile in enumerate(row): |
| if i > 0: |
| tile = self.blend_v(rows[i - 1][j], tile, blend_height) |
| if j > 0: |
| tile = self.blend_h(row[j - 1], tile, blend_width) |
| result_row.append(tile[:, :, :, :row_limit_height, :row_limit_width]) |
| result_rows.append(torch.cat(result_row, dim=-1)) |
| dec = torch.cat(result_rows, dim=-2) |
|
|
| return dec |
|
|
| def forward( |
| self, |
| sample: torch.Tensor, |
| sample_posterior: bool = False, |
| return_dict: bool = True, |
| generator: torch.Generator | None = None, |
| ) -> DecoderOutput | torch.Tensor: |
| r""" |
| Args: |
| sample (`torch.Tensor`): Input sample. |
| sample_posterior (`bool`, *optional*, defaults to `False`): |
| Whether to sample from the posterior. |
| return_dict (`bool`, *optional*, defaults to `True`): |
| Whether or not to return a [`DecoderOutput`] instead of a plain tuple. |
| generator (`torch.Generator`, *optional*): |
| A [`torch.Generator`](https://pytorch.org/docs/stable/generated/torch.Generator.html) to make sampling |
| deterministic. |
| |
| Returns: |
| [`~models.vae.DecoderOutput`] or `tuple`: |
| If `return_dict` is True, a [`~models.vae.DecoderOutput`] is returned, otherwise a plain `tuple` is |
| returned. |
| """ |
| x = sample |
| posterior = self.encode(x).latent_dist |
| if sample_posterior: |
| z = posterior.sample(generator=generator) |
| else: |
| z = posterior.mode() |
| dec = self.decode(z, return_dict=return_dict) |
| return dec |
|
|