| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | from typing import Optional |
| |
|
| | import numpy as np |
| | import torch |
| | import torch.nn.functional as F |
| | from torch import nn |
| |
|
| | from diffusers.models.attention import AdaGroupNorm, AttentionBlock |
| | from diffusers.models.attention_processor import Attention, AttnAddedKVProcessor, AttnAddedKVProcessor2_0 |
| | from diffusers.models.dual_transformer_2d import DualTransformer2DModel |
| | from diffusers.models.resnet import Downsample2D, FirDownsample2D, FirUpsample2D, KDownsample2D, KUpsample2D, ResnetBlock2D, Upsample2D |
| | from diffusers.models.transformer_2d import Transformer2DModel |
| | import math |
| |
|
| | def get_down_block( |
| | down_block_type, |
| | num_layers, |
| | in_channels, |
| | out_channels, |
| | temb_channels, |
| | add_downsample, |
| | resnet_eps, |
| | resnet_act_fn, |
| | attn_num_head_channels, |
| | resnet_groups=None, |
| | cross_attention_dim=None, |
| | downsample_padding=None, |
| | dual_cross_attention=False, |
| | use_linear_projection=False, |
| | only_cross_attention=False, |
| | upcast_attention=False, |
| | resnet_time_scale_shift="default", |
| | resnet_skip_time_act=False, |
| | resnet_out_scale_factor=1.0, |
| | cross_attention_norm=None, |
| | ): |
| | down_block_type = down_block_type[7:] if down_block_type.startswith("UNetRes") else down_block_type |
| | if down_block_type == "DownBlock2D": |
| | return DownBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | add_downsample=add_downsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | downsample_padding=downsample_padding, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif down_block_type == "ResnetDownsampleBlock2D": |
| | return ResnetDownsampleBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | add_downsample=add_downsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | skip_time_act=resnet_skip_time_act, |
| | output_scale_factor=resnet_out_scale_factor, |
| | ) |
| | elif down_block_type == "AttnDownBlock2D": |
| | return AttnDownBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | add_downsample=add_downsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | downsample_padding=downsample_padding, |
| | attn_num_head_channels=attn_num_head_channels, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif down_block_type == "CrossAttnDownBlock2D": |
| | if cross_attention_dim is None: |
| | raise ValueError("cross_attention_dim must be specified for CrossAttnDownBlock2D") |
| | return CrossAttnDownBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | add_downsample=add_downsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | downsample_padding=downsample_padding, |
| | cross_attention_dim=cross_attention_dim, |
| | attn_num_head_channels=attn_num_head_channels, |
| | dual_cross_attention=dual_cross_attention, |
| | use_linear_projection=use_linear_projection, |
| | only_cross_attention=only_cross_attention, |
| | upcast_attention=upcast_attention, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif down_block_type == "SimpleCrossAttnDownBlock2D": |
| | if cross_attention_dim is None: |
| | raise ValueError("cross_attention_dim must be specified for SimpleCrossAttnDownBlock2D") |
| | return SimpleCrossAttnDownBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | add_downsample=add_downsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | cross_attention_dim=cross_attention_dim, |
| | attn_num_head_channels=attn_num_head_channels, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | skip_time_act=resnet_skip_time_act, |
| | output_scale_factor=resnet_out_scale_factor, |
| | only_cross_attention=only_cross_attention, |
| | cross_attention_norm=cross_attention_norm, |
| | ) |
| | elif down_block_type == "SkipDownBlock2D": |
| | return SkipDownBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | add_downsample=add_downsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | downsample_padding=downsample_padding, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif down_block_type == "AttnSkipDownBlock2D": |
| | return AttnSkipDownBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | add_downsample=add_downsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | downsample_padding=downsample_padding, |
| | attn_num_head_channels=attn_num_head_channels, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif down_block_type == "DownEncoderBlock2D": |
| | return DownEncoderBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | add_downsample=add_downsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | downsample_padding=downsample_padding, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif down_block_type == "AttnDownEncoderBlock2D": |
| | return AttnDownEncoderBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | add_downsample=add_downsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | downsample_padding=downsample_padding, |
| | attn_num_head_channels=attn_num_head_channels, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif down_block_type == "KDownBlock2D": |
| | return KDownBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | add_downsample=add_downsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | ) |
| | elif down_block_type == "KCrossAttnDownBlock2D": |
| | return KCrossAttnDownBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | add_downsample=add_downsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | cross_attention_dim=cross_attention_dim, |
| | attn_num_head_channels=attn_num_head_channels, |
| | add_self_attention=True if not add_downsample else False, |
| | ) |
| | raise ValueError(f"{down_block_type} does not exist.") |
| |
|
| |
|
| | def get_up_block( |
| | up_block_type, |
| | num_layers, |
| | in_channels, |
| | out_channels, |
| | prev_output_channel, |
| | temb_channels, |
| | add_upsample, |
| | resnet_eps, |
| | resnet_act_fn, |
| | attn_num_head_channels, |
| | resnet_groups=None, |
| | cross_attention_dim=None, |
| | dual_cross_attention=False, |
| | use_linear_projection=False, |
| | only_cross_attention=False, |
| | upcast_attention=False, |
| | resnet_time_scale_shift="default", |
| | resnet_skip_time_act=False, |
| | resnet_out_scale_factor=1.0, |
| | cross_attention_norm=None, |
| | segmap_channels=34, |
| | ): |
| | up_block_type = up_block_type[7:] if up_block_type.startswith("UNetRes") else up_block_type |
| | if up_block_type == "UpBlock2D": |
| | return UpBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | prev_output_channel=prev_output_channel, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif up_block_type == "ResnetUpsampleBlock2D": |
| | return ResnetUpsampleBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | prev_output_channel=prev_output_channel, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | skip_time_act=resnet_skip_time_act, |
| | output_scale_factor=resnet_out_scale_factor, |
| | ) |
| | elif up_block_type == "CrossAttnUpBlock2D": |
| | if cross_attention_dim is None: |
| | raise ValueError("cross_attention_dim must be specified for CrossAttnUpBlock2D") |
| | return CrossAttnUpBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | prev_output_channel=prev_output_channel, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | cross_attention_dim=cross_attention_dim, |
| | attn_num_head_channels=attn_num_head_channels, |
| | dual_cross_attention=dual_cross_attention, |
| | use_linear_projection=use_linear_projection, |
| | only_cross_attention=only_cross_attention, |
| | upcast_attention=upcast_attention, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif up_block_type == "SimpleCrossAttnUpBlock2D": |
| | if cross_attention_dim is None: |
| | raise ValueError("cross_attention_dim must be specified for SimpleCrossAttnUpBlock2D") |
| | return SimpleCrossAttnUpBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | prev_output_channel=prev_output_channel, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | cross_attention_dim=cross_attention_dim, |
| | attn_num_head_channels=attn_num_head_channels, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | skip_time_act=resnet_skip_time_act, |
| | output_scale_factor=resnet_out_scale_factor, |
| | only_cross_attention=only_cross_attention, |
| | cross_attention_norm=cross_attention_norm, |
| | ) |
| | elif up_block_type == "AttnUpBlock2D": |
| | return AttnUpBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | prev_output_channel=prev_output_channel, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | attn_num_head_channels=attn_num_head_channels, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif up_block_type == "SkipUpBlock2D": |
| | return SkipUpBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | prev_output_channel=prev_output_channel, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif up_block_type == "AttnSkipUpBlock2D": |
| | return AttnSkipUpBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | prev_output_channel=prev_output_channel, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | attn_num_head_channels=attn_num_head_channels, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif up_block_type == "UpDecoderBlock2D": |
| | return UpDecoderBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif up_block_type == "SDMUpDecoderBlock2D": |
| | return SDMUpDecoderBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | segmap_channels=segmap_channels |
| | ) |
| | elif up_block_type == "AttnUpDecoderBlock2D": |
| | return AttnUpDecoderBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | attn_num_head_channels=attn_num_head_channels, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | ) |
| | elif up_block_type == "KUpBlock2D": |
| | return KUpBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | ) |
| | elif up_block_type == "KCrossAttnUpBlock2D": |
| | return KCrossAttnUpBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | cross_attention_dim=cross_attention_dim, |
| | attn_num_head_channels=attn_num_head_channels, |
| | ) |
| | elif up_block_type == "SDMAttnUpBlock2D": |
| | return SDMAttnUpBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | prev_output_channel=prev_output_channel, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | attn_num_head_channels=attn_num_head_channels, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | segmap_channels=segmap_channels |
| | ) |
| | elif up_block_type == "SDMResnetUpsampleBlock2D": |
| | return SDMResnetUpsampleBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | prev_output_channel=prev_output_channel, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | skip_time_act=resnet_skip_time_act, |
| | output_scale_factor=resnet_out_scale_factor, |
| | segmap_channels=segmap_channels, |
| | ) |
| | elif up_block_type == "SDMUpBlock2D": |
| | return SDMUpBlock2D( |
| | num_layers=num_layers, |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | prev_output_channel=prev_output_channel, |
| | temb_channels=temb_channels, |
| | add_upsample=add_upsample, |
| | resnet_eps=resnet_eps, |
| | resnet_act_fn=resnet_act_fn, |
| | resnet_groups=resnet_groups, |
| | resnet_time_scale_shift=resnet_time_scale_shift, |
| | segmap_channels=segmap_channels |
| | ) |
| |
|
| |
|
| | raise ValueError(f"{up_block_type} does not exist.") |
| |
|
| |
|
| | class UNetMidBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | add_attention: bool = True, |
| | attn_num_head_channels=1, |
| | output_scale_factor=1.0, |
| | ): |
| | super().__init__() |
| | resnet_groups = resnet_groups if resnet_groups is not None else min(in_channels // 4, 32) |
| | self.add_attention = add_attention |
| |
|
| | |
| | resnets = [ |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=in_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ] |
| | attentions = [] |
| |
|
| | for _ in range(num_layers): |
| | if self.add_attention: |
| | attentions.append( |
| | AttentionBlock( |
| | in_channels, |
| | num_head_channels=attn_num_head_channels, |
| | rescale_output_factor=output_scale_factor, |
| | eps=resnet_eps, |
| | norm_num_groups=resnet_groups, |
| | ) |
| | ) |
| | else: |
| | attentions.append(None) |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=in_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| |
|
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | def forward(self, hidden_states, temb=None): |
| | hidden_states = self.resnets[0](hidden_states, temb) |
| | 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, temb) |
| |
|
| | return hidden_states |
| |
|
| | class UNetSDMMidBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | add_attention: bool = True, |
| | attn_num_head_channels=1, |
| | output_scale_factor=1.0, |
| | segmap_channels=34, |
| | ): |
| | super().__init__() |
| | resnet_groups = resnet_groups if resnet_groups is not None else min(in_channels // 4, 32) |
| | self.add_attention = add_attention |
| |
|
| | |
| | resnets = [ |
| | SDMResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=in_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | segmap_channels=segmap_channels, |
| | ) |
| | ] |
| | attentions = [] |
| |
|
| | for _ in range(num_layers): |
| | if self.add_attention: |
| | attentions.append( |
| | AttentionBlock( |
| | in_channels, |
| | num_head_channels=attn_num_head_channels, |
| | rescale_output_factor=output_scale_factor, |
| | eps=resnet_eps, |
| | norm_num_groups=resnet_groups, |
| | ) |
| | ) |
| | else: |
| | attentions.append(None) |
| |
|
| | resnets.append( |
| | SDMResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=in_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | segmap_channels=segmap_channels, |
| | ) |
| | ) |
| |
|
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | def forward(self, hidden_states, segmap, temb=None): |
| | hidden_states = self.resnets[0](hidden_states, segmap, temb) |
| | 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, segmap, temb) |
| |
|
| | return hidden_states |
| |
|
| | class UNetMidBlock2DCrossAttn(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | output_scale_factor=1.0, |
| | cross_attention_dim=1280, |
| | dual_cross_attention=False, |
| | use_linear_projection=False, |
| | upcast_attention=False, |
| | ): |
| | super().__init__() |
| |
|
| | self.has_cross_attention = True |
| | self.attn_num_head_channels = attn_num_head_channels |
| | resnet_groups = resnet_groups if resnet_groups is not None else min(in_channels // 4, 32) |
| |
|
| | |
| | resnets = [ |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=in_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ] |
| | attentions = [] |
| |
|
| | for _ in range(num_layers): |
| | if not dual_cross_attention: |
| | attentions.append( |
| | Transformer2DModel( |
| | attn_num_head_channels, |
| | in_channels // attn_num_head_channels, |
| | in_channels=in_channels, |
| | num_layers=1, |
| | cross_attention_dim=cross_attention_dim, |
| | norm_num_groups=resnet_groups, |
| | use_linear_projection=use_linear_projection, |
| | upcast_attention=upcast_attention, |
| | ) |
| | ) |
| | else: |
| | attentions.append( |
| | DualTransformer2DModel( |
| | attn_num_head_channels, |
| | in_channels // attn_num_head_channels, |
| | in_channels=in_channels, |
| | num_layers=1, |
| | cross_attention_dim=cross_attention_dim, |
| | norm_num_groups=resnet_groups, |
| | ) |
| | ) |
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=in_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| |
|
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | def forward( |
| | self, hidden_states, temb=None, encoder_hidden_states=None, attention_mask=None, cross_attention_kwargs=None |
| | ): |
| | hidden_states = self.resnets[0](hidden_states, temb) |
| | for attn, resnet in zip(self.attentions, self.resnets[1:]): |
| | hidden_states = attn( |
| | hidden_states, |
| | encoder_hidden_states=encoder_hidden_states, |
| | cross_attention_kwargs=cross_attention_kwargs, |
| | ).sample |
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | class UNetMidBlock2DSimpleCrossAttn(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | output_scale_factor=1.0, |
| | cross_attention_dim=1280, |
| | skip_time_act=False, |
| | only_cross_attention=False, |
| | cross_attention_norm=None, |
| | ): |
| | super().__init__() |
| |
|
| | self.has_cross_attention = True |
| |
|
| | self.attn_num_head_channels = attn_num_head_channels |
| | resnet_groups = resnet_groups if resnet_groups is not None else min(in_channels // 4, 32) |
| |
|
| | self.num_heads = in_channels // self.attn_num_head_channels |
| |
|
| | |
| | resnets = [ |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=in_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | ) |
| | ] |
| | attentions = [] |
| |
|
| | for _ in range(num_layers): |
| | processor = ( |
| | AttnAddedKVProcessor2_0() if hasattr(F, "scaled_dot_product_attention") else AttnAddedKVProcessor() |
| | ) |
| |
|
| | attentions.append( |
| | Attention( |
| | query_dim=in_channels, |
| | cross_attention_dim=in_channels, |
| | heads=self.num_heads, |
| | dim_head=attn_num_head_channels, |
| | added_kv_proj_dim=cross_attention_dim, |
| | norm_num_groups=resnet_groups, |
| | bias=True, |
| | upcast_softmax=True, |
| | only_cross_attention=only_cross_attention, |
| | cross_attention_norm=cross_attention_norm, |
| | processor=processor, |
| | ) |
| | ) |
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=in_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | ) |
| | ) |
| |
|
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | def forward( |
| | self, hidden_states, temb=None, encoder_hidden_states=None, attention_mask=None, cross_attention_kwargs=None |
| | ): |
| | cross_attention_kwargs = cross_attention_kwargs if cross_attention_kwargs is not None else {} |
| | hidden_states = self.resnets[0](hidden_states, temb) |
| | for attn, resnet in zip(self.attentions, self.resnets[1:]): |
| | |
| | hidden_states = attn( |
| | hidden_states, |
| | encoder_hidden_states=encoder_hidden_states, |
| | attention_mask=attention_mask, |
| | **cross_attention_kwargs, |
| | ) |
| |
|
| | |
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | class AttnDownBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | output_scale_factor=1.0, |
| | downsample_padding=1, |
| | add_downsample=True, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| | attentions = [] |
| |
|
| | for i in range(num_layers): |
| | in_channels = in_channels if i == 0 else out_channels |
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| | attentions.append( |
| | AttentionBlock( |
| | out_channels, |
| | num_head_channels=attn_num_head_channels, |
| | rescale_output_factor=output_scale_factor, |
| | eps=resnet_eps, |
| | norm_num_groups=resnet_groups, |
| | ) |
| | ) |
| |
|
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_downsample: |
| | self.downsamplers = nn.ModuleList( |
| | [ |
| | Downsample2D( |
| | out_channels, use_conv=False, out_channels=out_channels, padding=downsample_padding, name="op" |
| | ) |
| | ] |
| | ) |
| | else: |
| | self.downsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| | def forward(self, hidden_states, temb=None): |
| | output_states = () |
| |
|
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module): |
| | def custom_forward(*inputs): |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, temb) |
| | else: |
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | hidden_states = attn(hidden_states) |
| | output_states += (hidden_states,) |
| |
|
| | if self.downsamplers is not None: |
| | for downsampler in self.downsamplers: |
| | hidden_states = downsampler(hidden_states) |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | return hidden_states, output_states |
| |
|
| |
|
| | class CrossAttnDownBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | cross_attention_dim=1280, |
| | output_scale_factor=1.0, |
| | downsample_padding=1, |
| | add_downsample=True, |
| | dual_cross_attention=False, |
| | use_linear_projection=False, |
| | only_cross_attention=False, |
| | upcast_attention=False, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| | attentions = [] |
| |
|
| | self.has_cross_attention = True |
| | self.attn_num_head_channels = attn_num_head_channels |
| |
|
| | for i in range(num_layers): |
| | in_channels = in_channels if i == 0 else out_channels |
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| | if not dual_cross_attention: |
| | attentions.append( |
| | Transformer2DModel( |
| | attn_num_head_channels, |
| | out_channels // attn_num_head_channels, |
| | in_channels=out_channels, |
| | num_layers=1, |
| | cross_attention_dim=cross_attention_dim, |
| | norm_num_groups=resnet_groups, |
| | use_linear_projection=use_linear_projection, |
| | only_cross_attention=only_cross_attention, |
| | upcast_attention=upcast_attention, |
| | ) |
| | ) |
| | else: |
| | attentions.append( |
| | DualTransformer2DModel( |
| | attn_num_head_channels, |
| | out_channels // attn_num_head_channels, |
| | in_channels=out_channels, |
| | num_layers=1, |
| | cross_attention_dim=cross_attention_dim, |
| | norm_num_groups=resnet_groups, |
| | ) |
| | ) |
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_downsample: |
| | self.downsamplers = nn.ModuleList( |
| | [ |
| | Downsample2D( |
| | out_channels, use_conv=True, out_channels=out_channels, padding=downsample_padding, name="op" |
| | ) |
| | ] |
| | ) |
| | else: |
| | self.downsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward( |
| | self, hidden_states, temb=None, encoder_hidden_states=None, attention_mask=None, cross_attention_kwargs=None |
| | ): |
| | |
| | output_states = () |
| |
|
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module, return_dict=None): |
| | def custom_forward(*inputs): |
| | if return_dict is not None: |
| | return module(*inputs, return_dict=return_dict) |
| | else: |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, temb) |
| | hidden_states = torch.utils.checkpoint.checkpoint( |
| | create_custom_forward(attn, return_dict=False), |
| | hidden_states, |
| | encoder_hidden_states, |
| | cross_attention_kwargs, |
| | )[0] |
| | else: |
| | hidden_states = resnet(hidden_states, temb) |
| | hidden_states = attn( |
| | hidden_states, |
| | encoder_hidden_states=encoder_hidden_states, |
| | cross_attention_kwargs=cross_attention_kwargs, |
| | ).sample |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | if self.downsamplers is not None: |
| | for downsampler in self.downsamplers: |
| | hidden_states = downsampler(hidden_states) |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | return hidden_states, output_states |
| |
|
| |
|
| | class DownBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | output_scale_factor=1.0, |
| | add_downsample=True, |
| | downsample_padding=1, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| |
|
| | for i in range(num_layers): |
| | in_channels = in_channels if i == 0 else out_channels |
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_downsample: |
| | self.downsamplers = nn.ModuleList( |
| | [ |
| | Downsample2D( |
| | out_channels, use_conv=False, out_channels=out_channels, padding=downsample_padding, name="op" |
| | ) |
| | ] |
| | ) |
| | else: |
| | self.downsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward(self, hidden_states, temb=None): |
| | output_states = () |
| |
|
| | for resnet in self.resnets: |
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module): |
| | def custom_forward(*inputs): |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, temb) |
| | else: |
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | if self.downsamplers is not None: |
| | for downsampler in self.downsamplers: |
| | hidden_states = downsampler(hidden_states) |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | return hidden_states, output_states |
| |
|
| |
|
| | class DownEncoderBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | output_scale_factor=1.0, |
| | add_downsample=True, |
| | downsample_padding=1, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| |
|
| | for i in range(num_layers): |
| | in_channels = in_channels if i == 0 else out_channels |
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=None, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_downsample: |
| | self.downsamplers = nn.ModuleList( |
| | [ |
| | Downsample2D( |
| | out_channels, use_conv=True, out_channels=out_channels, padding=downsample_padding, name="op" |
| | ) |
| | ] |
| | ) |
| | else: |
| | self.downsamplers = None |
| |
|
| | def forward(self, hidden_states): |
| | for resnet in self.resnets: |
| | hidden_states = resnet(hidden_states, temb=None) |
| |
|
| | if self.downsamplers is not None: |
| | for downsampler in self.downsamplers: |
| | hidden_states = downsampler(hidden_states) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | class AttnDownEncoderBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | output_scale_factor=1.0, |
| | add_downsample=True, |
| | downsample_padding=1, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| | attentions = [] |
| |
|
| | for i in range(num_layers): |
| | in_channels = in_channels if i == 0 else out_channels |
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=None, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| | attentions.append( |
| | AttentionBlock( |
| | out_channels, |
| | num_head_channels=attn_num_head_channels, |
| | rescale_output_factor=output_scale_factor, |
| | eps=resnet_eps, |
| | norm_num_groups=resnet_groups, |
| | ) |
| | ) |
| |
|
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_downsample: |
| | self.downsamplers = nn.ModuleList( |
| | [ |
| | Downsample2D( |
| | out_channels, use_conv=True, out_channels=out_channels, padding=downsample_padding, name="op" |
| | ) |
| | ] |
| | ) |
| | else: |
| | self.downsamplers = None |
| |
|
| | def forward(self, hidden_states): |
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | hidden_states = resnet(hidden_states, temb=None) |
| | hidden_states = attn(hidden_states) |
| |
|
| | if self.downsamplers is not None: |
| | for downsampler in self.downsamplers: |
| | hidden_states = downsampler(hidden_states) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | class AttnSkipDownBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | output_scale_factor=np.sqrt(2.0), |
| | downsample_padding=1, |
| | add_downsample=True, |
| | ): |
| | super().__init__() |
| | self.attentions = nn.ModuleList([]) |
| | self.resnets = nn.ModuleList([]) |
| |
|
| | for i in range(num_layers): |
| | in_channels = in_channels if i == 0 else out_channels |
| | self.resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=min(in_channels // 4, 32), |
| | groups_out=min(out_channels // 4, 32), |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| | self.attentions.append( |
| | AttentionBlock( |
| | out_channels, |
| | num_head_channels=attn_num_head_channels, |
| | rescale_output_factor=output_scale_factor, |
| | eps=resnet_eps, |
| | ) |
| | ) |
| |
|
| | if add_downsample: |
| | self.resnet_down = ResnetBlock2D( |
| | in_channels=out_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=min(out_channels // 4, 32), |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | use_in_shortcut=True, |
| | down=True, |
| | kernel="fir", |
| | ) |
| | self.downsamplers = nn.ModuleList([FirDownsample2D(out_channels, out_channels=out_channels)]) |
| | self.skip_conv = nn.Conv2d(3, out_channels, kernel_size=(1, 1), stride=(1, 1)) |
| | else: |
| | self.resnet_down = None |
| | self.downsamplers = None |
| | self.skip_conv = None |
| |
|
| | def forward(self, hidden_states, temb=None, skip_sample=None): |
| | output_states = () |
| |
|
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | hidden_states = resnet(hidden_states, temb) |
| | hidden_states = attn(hidden_states) |
| | output_states += (hidden_states,) |
| |
|
| | if self.downsamplers is not None: |
| | hidden_states = self.resnet_down(hidden_states, temb) |
| | for downsampler in self.downsamplers: |
| | skip_sample = downsampler(skip_sample) |
| |
|
| | hidden_states = self.skip_conv(skip_sample) + hidden_states |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | return hidden_states, output_states, skip_sample |
| |
|
| |
|
| | class SkipDownBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_pre_norm: bool = True, |
| | output_scale_factor=np.sqrt(2.0), |
| | add_downsample=True, |
| | downsample_padding=1, |
| | ): |
| | super().__init__() |
| | self.resnets = nn.ModuleList([]) |
| |
|
| | for i in range(num_layers): |
| | in_channels = in_channels if i == 0 else out_channels |
| | self.resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=min(in_channels // 4, 32), |
| | groups_out=min(out_channels // 4, 32), |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| |
|
| | if add_downsample: |
| | self.resnet_down = ResnetBlock2D( |
| | in_channels=out_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=min(out_channels // 4, 32), |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | use_in_shortcut=True, |
| | down=True, |
| | kernel="fir", |
| | ) |
| | self.downsamplers = nn.ModuleList([FirDownsample2D(out_channels, out_channels=out_channels)]) |
| | self.skip_conv = nn.Conv2d(3, out_channels, kernel_size=(1, 1), stride=(1, 1)) |
| | else: |
| | self.resnet_down = None |
| | self.downsamplers = None |
| | self.skip_conv = None |
| |
|
| | def forward(self, hidden_states, temb=None, skip_sample=None): |
| | output_states = () |
| |
|
| | for resnet in self.resnets: |
| | hidden_states = resnet(hidden_states, temb) |
| | output_states += (hidden_states,) |
| |
|
| | if self.downsamplers is not None: |
| | hidden_states = self.resnet_down(hidden_states, temb) |
| | for downsampler in self.downsamplers: |
| | skip_sample = downsampler(skip_sample) |
| |
|
| | hidden_states = self.skip_conv(skip_sample) + hidden_states |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | return hidden_states, output_states, skip_sample |
| |
|
| |
|
| | class ResnetDownsampleBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | output_scale_factor=1.0, |
| | add_downsample=True, |
| | skip_time_act=False, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| |
|
| | for i in range(num_layers): |
| | in_channels = in_channels if i == 0 else out_channels |
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_downsample: |
| | self.downsamplers = nn.ModuleList( |
| | [ |
| | ResnetBlock2D( |
| | in_channels=out_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | down=True, |
| | ) |
| | ] |
| | ) |
| | else: |
| | self.downsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward(self, hidden_states, temb=None): |
| | output_states = () |
| | |
| | for resnet in self.resnets: |
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module): |
| | def custom_forward(*inputs): |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, temb) |
| | else: |
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | if self.downsamplers is not None: |
| | for downsampler in self.downsamplers: |
| | hidden_states = downsampler(hidden_states, temb) |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | return hidden_states, output_states |
| |
|
| |
|
| | class SimpleCrossAttnDownBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | cross_attention_dim=1280, |
| | output_scale_factor=1.0, |
| | add_downsample=True, |
| | skip_time_act=False, |
| | only_cross_attention=False, |
| | cross_attention_norm=None, |
| | ): |
| | super().__init__() |
| |
|
| | self.has_cross_attention = True |
| |
|
| | resnets = [] |
| | attentions = [] |
| |
|
| | self.attn_num_head_channels = attn_num_head_channels |
| | self.num_heads = out_channels // self.attn_num_head_channels |
| |
|
| | for i in range(num_layers): |
| | in_channels = in_channels if i == 0 else out_channels |
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | ) |
| | ) |
| |
|
| | processor = ( |
| | AttnAddedKVProcessor2_0() if hasattr(F, "scaled_dot_product_attention") else AttnAddedKVProcessor() |
| | ) |
| |
|
| | attentions.append( |
| | Attention( |
| | query_dim=out_channels, |
| | cross_attention_dim=out_channels, |
| | heads=self.num_heads, |
| | dim_head=attn_num_head_channels, |
| | added_kv_proj_dim=cross_attention_dim, |
| | norm_num_groups=resnet_groups, |
| | bias=True, |
| | upcast_softmax=True, |
| | only_cross_attention=only_cross_attention, |
| | cross_attention_norm=cross_attention_norm, |
| | processor=processor, |
| | ) |
| | ) |
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_downsample: |
| | self.downsamplers = nn.ModuleList( |
| | [ |
| | ResnetBlock2D( |
| | in_channels=out_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | down=True, |
| | ) |
| | ] |
| | ) |
| | else: |
| | self.downsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward( |
| | self, hidden_states, temb=None, encoder_hidden_states=None, attention_mask=None, cross_attention_kwargs=None |
| | ): |
| | output_states = () |
| | cross_attention_kwargs = cross_attention_kwargs if cross_attention_kwargs is not None else {} |
| |
|
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | |
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | |
| | hidden_states = attn( |
| | hidden_states, |
| | encoder_hidden_states=encoder_hidden_states, |
| | attention_mask=attention_mask, |
| | **cross_attention_kwargs, |
| | ) |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | if self.downsamplers is not None: |
| | for downsampler in self.downsamplers: |
| | hidden_states = downsampler(hidden_states, temb) |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | return hidden_states, output_states |
| |
|
| |
|
| | class KDownBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 4, |
| | resnet_eps: float = 1e-5, |
| | resnet_act_fn: str = "gelu", |
| | resnet_group_size: int = 32, |
| | add_downsample=False, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| |
|
| | for i in range(num_layers): |
| | in_channels = in_channels if i == 0 else out_channels |
| | groups = in_channels // resnet_group_size |
| | groups_out = out_channels // resnet_group_size |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | dropout=dropout, |
| | temb_channels=temb_channels, |
| | groups=groups, |
| | groups_out=groups_out, |
| | eps=resnet_eps, |
| | non_linearity=resnet_act_fn, |
| | time_embedding_norm="ada_group", |
| | conv_shortcut_bias=False, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_downsample: |
| | |
| | self.downsamplers = nn.ModuleList([KDownsample2D()]) |
| | else: |
| | self.downsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward(self, hidden_states, temb=None): |
| | output_states = () |
| |
|
| | for resnet in self.resnets: |
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module): |
| | def custom_forward(*inputs): |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, temb) |
| | else: |
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | output_states += (hidden_states,) |
| |
|
| | if self.downsamplers is not None: |
| | for downsampler in self.downsamplers: |
| | hidden_states = downsampler(hidden_states) |
| |
|
| | return hidden_states, output_states |
| |
|
| |
|
| | class KCrossAttnDownBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | cross_attention_dim: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 4, |
| | resnet_group_size: int = 32, |
| | add_downsample=True, |
| | attn_num_head_channels: int = 64, |
| | add_self_attention: bool = False, |
| | resnet_eps: float = 1e-5, |
| | resnet_act_fn: str = "gelu", |
| | ): |
| | super().__init__() |
| | resnets = [] |
| | attentions = [] |
| |
|
| | self.has_cross_attention = True |
| |
|
| | for i in range(num_layers): |
| | in_channels = in_channels if i == 0 else out_channels |
| | groups = in_channels // resnet_group_size |
| | groups_out = out_channels // resnet_group_size |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | dropout=dropout, |
| | temb_channels=temb_channels, |
| | groups=groups, |
| | groups_out=groups_out, |
| | eps=resnet_eps, |
| | non_linearity=resnet_act_fn, |
| | time_embedding_norm="ada_group", |
| | conv_shortcut_bias=False, |
| | ) |
| | ) |
| | attentions.append( |
| | AttentionBlock( |
| | out_channels, |
| | out_channels // attn_num_head_channels, |
| | attn_num_head_channels, |
| | cross_attention_dim=cross_attention_dim, |
| | temb_channels=temb_channels, |
| | attention_bias=True, |
| | add_self_attention=add_self_attention, |
| | cross_attention_norm="layer_norm", |
| | group_size=resnet_group_size, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| | self.attentions = nn.ModuleList(attentions) |
| |
|
| | if add_downsample: |
| | self.downsamplers = nn.ModuleList([KDownsample2D()]) |
| | else: |
| | self.downsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward( |
| | self, hidden_states, temb=None, encoder_hidden_states=None, attention_mask=None, cross_attention_kwargs=None |
| | ): |
| | output_states = () |
| |
|
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module, return_dict=None): |
| | def custom_forward(*inputs): |
| | if return_dict is not None: |
| | return module(*inputs, return_dict=return_dict) |
| | else: |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, temb) |
| | hidden_states = torch.utils.checkpoint.checkpoint( |
| | create_custom_forward(attn, return_dict=False), |
| | hidden_states, |
| | encoder_hidden_states, |
| | attention_mask, |
| | cross_attention_kwargs, |
| | ) |
| | else: |
| | hidden_states = resnet(hidden_states, temb) |
| | hidden_states = attn( |
| | hidden_states, |
| | encoder_hidden_states=encoder_hidden_states, |
| | emb=temb, |
| | attention_mask=attention_mask, |
| | cross_attention_kwargs=cross_attention_kwargs, |
| | ) |
| |
|
| | if self.downsamplers is None: |
| | output_states += (None,) |
| | else: |
| | output_states += (hidden_states,) |
| |
|
| | if self.downsamplers is not None: |
| | for downsampler in self.downsamplers: |
| | hidden_states = downsampler(hidden_states) |
| |
|
| | return hidden_states, output_states |
| |
|
| |
|
| | class AttnUpBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | prev_output_channel: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | output_scale_factor=1.0, |
| | add_upsample=True, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| | attentions = [] |
| |
|
| | for i in range(num_layers): |
| | res_skip_channels = in_channels if (i == num_layers - 1) else out_channels |
| | resnet_in_channels = prev_output_channel if i == 0 else out_channels |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=resnet_in_channels + res_skip_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| | attentions.append( |
| | AttentionBlock( |
| | out_channels, |
| | num_head_channels=attn_num_head_channels, |
| | rescale_output_factor=output_scale_factor, |
| | eps=resnet_eps, |
| | norm_num_groups=resnet_groups, |
| | ) |
| | ) |
| |
|
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList([Upsample2D(out_channels, use_conv=True, out_channels=out_channels)]) |
| | else: |
| | self.upsamplers = None |
| |
|
| | def forward(self, hidden_states, res_hidden_states_tuple, temb=None): |
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | |
| | res_hidden_states = res_hidden_states_tuple[-1] |
| | res_hidden_states_tuple = res_hidden_states_tuple[:-1] |
| | hidden_states = torch.cat([hidden_states, res_hidden_states], dim=1) |
| |
|
| | hidden_states = resnet(hidden_states, temb) |
| | hidden_states = attn(hidden_states) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states) |
| |
|
| | return hidden_states |
| |
|
| | class SDMAttnUpBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | prev_output_channel: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | output_scale_factor=1.0, |
| | add_upsample=True, |
| | segmap_channels = 34, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| | attentions = [] |
| |
|
| | for i in range(num_layers): |
| | res_skip_channels = in_channels if (i == num_layers - 1) else out_channels |
| | resnet_in_channels = prev_output_channel if i == 0 else out_channels |
| |
|
| | resnets.append( |
| | SDMResnetBlock2D( |
| | in_channels=resnet_in_channels + res_skip_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | segmap_channels=segmap_channels |
| | ) |
| | ) |
| | attentions.append( |
| | AttentionBlock( |
| | out_channels, |
| | num_head_channels=attn_num_head_channels, |
| | rescale_output_factor=output_scale_factor, |
| | eps=resnet_eps, |
| | norm_num_groups=resnet_groups, |
| | ) |
| | ) |
| |
|
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList([Upsample2D(out_channels, use_conv=True, out_channels=out_channels, name="conv_2")]) |
| | else: |
| | self.upsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward(self, hidden_states, segmap, res_hidden_states_tuple, temb=None): |
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | |
| | res_hidden_states = res_hidden_states_tuple[-1] |
| | res_hidden_states_tuple = res_hidden_states_tuple[:-1] |
| |
|
| | |
| |
|
| | if hidden_states.shape[2] != res_hidden_states.shape[2]: |
| | p1d = (0, 0, 0, 1) |
| | hidden_states = F.pad(hidden_states, p1d, "replicate") |
| |
|
| | if hidden_states.shape[3] != res_hidden_states.shape[3]: |
| | p1d = (0, 1, 0, 0) |
| | hidden_states = F.pad(hidden_states, p1d, "replicate") |
| |
|
| | |
| | hidden_states = torch.cat([hidden_states, res_hidden_states], dim=1) |
| |
|
| | if self.training and self.gradient_checkpointing: |
| | def create_custom_forward(module): |
| | def custom_forward(*inputs): |
| | return module(*inputs) |
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, segmap, temb) |
| | else: |
| | hidden_states = resnet(hidden_states, segmap, temb) |
| |
|
| | |
| |
|
| | hidden_states = attn(hidden_states) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | class CrossAttnUpBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | prev_output_channel: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | cross_attention_dim=1280, |
| | output_scale_factor=1.0, |
| | add_upsample=True, |
| | dual_cross_attention=False, |
| | use_linear_projection=False, |
| | only_cross_attention=False, |
| | upcast_attention=False, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| | attentions = [] |
| |
|
| | self.has_cross_attention = True |
| | self.attn_num_head_channels = attn_num_head_channels |
| |
|
| | for i in range(num_layers): |
| | res_skip_channels = in_channels if (i == num_layers - 1) else out_channels |
| | resnet_in_channels = prev_output_channel if i == 0 else out_channels |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=resnet_in_channels + res_skip_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| | if not dual_cross_attention: |
| | attentions.append( |
| | Transformer2DModel( |
| | attn_num_head_channels, |
| | out_channels // attn_num_head_channels, |
| | in_channels=out_channels, |
| | num_layers=1, |
| | cross_attention_dim=cross_attention_dim, |
| | norm_num_groups=resnet_groups, |
| | use_linear_projection=use_linear_projection, |
| | only_cross_attention=only_cross_attention, |
| | upcast_attention=upcast_attention, |
| | ) |
| | ) |
| | else: |
| | attentions.append( |
| | DualTransformer2DModel( |
| | attn_num_head_channels, |
| | out_channels // attn_num_head_channels, |
| | in_channels=out_channels, |
| | num_layers=1, |
| | cross_attention_dim=cross_attention_dim, |
| | norm_num_groups=resnet_groups, |
| | ) |
| | ) |
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList([Upsample2D(out_channels, use_conv=True, out_channels=out_channels)]) |
| | else: |
| | self.upsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward( |
| | self, |
| | hidden_states, |
| | res_hidden_states_tuple, |
| | temb=None, |
| | encoder_hidden_states=None, |
| | cross_attention_kwargs=None, |
| | upsample_size=None, |
| | attention_mask=None, |
| | ): |
| | |
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | |
| | res_hidden_states = res_hidden_states_tuple[-1] |
| | res_hidden_states_tuple = res_hidden_states_tuple[:-1] |
| | hidden_states = torch.cat([hidden_states, res_hidden_states], dim=1) |
| |
|
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module, return_dict=None): |
| | def custom_forward(*inputs): |
| | if return_dict is not None: |
| | return module(*inputs, return_dict=return_dict) |
| | else: |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, temb) |
| | hidden_states = torch.utils.checkpoint.checkpoint( |
| | create_custom_forward(attn, return_dict=False), |
| | hidden_states, |
| | encoder_hidden_states, |
| | cross_attention_kwargs, |
| | )[0] |
| | else: |
| | hidden_states = resnet(hidden_states, temb) |
| | hidden_states = attn( |
| | hidden_states, |
| | encoder_hidden_states=encoder_hidden_states, |
| | cross_attention_kwargs=cross_attention_kwargs, |
| | ).sample |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states, upsample_size) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | class UpBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | prev_output_channel: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | output_scale_factor=1.0, |
| | add_upsample=True, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| |
|
| | for i in range(num_layers): |
| | res_skip_channels = in_channels if (i == num_layers - 1) else out_channels |
| | resnet_in_channels = prev_output_channel if i == 0 else out_channels |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=resnet_in_channels + res_skip_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList([Upsample2D(out_channels, use_conv=True, out_channels=out_channels)]) |
| | else: |
| | self.upsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward(self, hidden_states, res_hidden_states_tuple, temb=None, upsample_size=None): |
| | for resnet in self.resnets: |
| | |
| | res_hidden_states = res_hidden_states_tuple[-1] |
| | res_hidden_states_tuple = res_hidden_states_tuple[:-1] |
| | hidden_states = torch.cat([hidden_states, res_hidden_states], dim=1) |
| |
|
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module): |
| | def custom_forward(*inputs): |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, temb) |
| | else: |
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states, upsample_size) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | class SDMUpBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | prev_output_channel: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | output_scale_factor=1.0, |
| | add_upsample=True, |
| | segmap_channels=34, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| |
|
| | for i in range(num_layers): |
| | res_skip_channels = in_channels if (i == num_layers - 1) else out_channels |
| | resnet_in_channels = prev_output_channel if i == 0 else out_channels |
| |
|
| | resnets.append( |
| | SDMResnetBlock2D( |
| | in_channels=resnet_in_channels + res_skip_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | segmap_channels=segmap_channels, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList([Upsample2D(out_channels, use_conv=True, out_channels=out_channels)]) |
| | else: |
| | self.upsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward(self, hidden_states, segmap, res_hidden_states_tuple, temb=None, upsample_size=None): |
| | for resnet in self.resnets: |
| | |
| | res_hidden_states = res_hidden_states_tuple[-1] |
| | res_hidden_states_tuple = res_hidden_states_tuple[:-1] |
| | if hidden_states.shape[2] != res_hidden_states.shape[2]: |
| | p1d = (0, 0, 0, 1) |
| | hidden_states = F.pad(hidden_states, p1d, "replicate") |
| |
|
| | if hidden_states.shape[3] != res_hidden_states.shape[3]: |
| | p1d = (0, 1, 0, 0) |
| | hidden_states = F.pad(hidden_states, p1d, "replicate") |
| |
|
| | hidden_states = torch.cat([hidden_states, res_hidden_states], dim=1) |
| |
|
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module): |
| | def custom_forward(*inputs): |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, segmap, temb) |
| | else: |
| | hidden_states = resnet(hidden_states, segmap, temb) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states, upsample_size) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | class UpDecoderBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | output_scale_factor=1.0, |
| | add_upsample=True, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| |
|
| | for i in range(num_layers): |
| | input_channels = in_channels if i == 0 else out_channels |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=input_channels, |
| | out_channels=out_channels, |
| | temb_channels=None, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList([Upsample2D(out_channels, use_conv=True, out_channels=out_channels)]) |
| | else: |
| | self.upsamplers = None |
| |
|
| | def forward(self, hidden_states): |
| | for resnet in self.resnets: |
| | hidden_states = resnet(hidden_states, temb=None) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states) |
| |
|
| | return hidden_states |
| |
|
| | class SDMUpDecoderBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | output_scale_factor=1.0, |
| | add_upsample=True, |
| | segmap_channels=34 |
| | ): |
| | super().__init__() |
| | resnets = [] |
| |
|
| | for i in range(num_layers): |
| | input_channels = in_channels if i == 0 else out_channels |
| |
|
| | resnets.append( |
| | SDMResnetBlock2D( |
| | in_channels=input_channels, |
| | out_channels=out_channels, |
| | temb_channels=None, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | segmap_channels =segmap_channels, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList([Upsample2D(out_channels, use_conv=True, out_channels=out_channels)]) |
| | else: |
| | self.upsamplers = None |
| |
|
| | def forward(self, hidden_states, segmap=None): |
| |
|
| | for resnet in self.resnets: |
| | hidden_states = resnet(hidden_states, segmap, temb=None) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states) |
| |
|
| | return hidden_states |
| |
|
| | class AttnUpDecoderBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | output_scale_factor=1.0, |
| | add_upsample=True, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| | attentions = [] |
| |
|
| | for i in range(num_layers): |
| | input_channels = in_channels if i == 0 else out_channels |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=input_channels, |
| | out_channels=out_channels, |
| | temb_channels=None, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| | attentions.append( |
| | AttentionBlock( |
| | out_channels, |
| | num_head_channels=attn_num_head_channels, |
| | rescale_output_factor=output_scale_factor, |
| | eps=resnet_eps, |
| | norm_num_groups=resnet_groups, |
| | ) |
| | ) |
| |
|
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList([Upsample2D(out_channels, use_conv=True, out_channels=out_channels)]) |
| | else: |
| | self.upsamplers = None |
| |
|
| | def forward(self, hidden_states): |
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | hidden_states = resnet(hidden_states, temb=None) |
| | hidden_states = attn(hidden_states) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | class AttnSkipUpBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | prev_output_channel: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | output_scale_factor=np.sqrt(2.0), |
| | upsample_padding=1, |
| | add_upsample=True, |
| | ): |
| | super().__init__() |
| | self.attentions = nn.ModuleList([]) |
| | self.resnets = nn.ModuleList([]) |
| |
|
| | for i in range(num_layers): |
| | res_skip_channels = in_channels if (i == num_layers - 1) else out_channels |
| | resnet_in_channels = prev_output_channel if i == 0 else out_channels |
| |
|
| | self.resnets.append( |
| | ResnetBlock2D( |
| | in_channels=resnet_in_channels + res_skip_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=min(resnet_in_channels + res_skip_channels // 4, 32), |
| | groups_out=min(out_channels // 4, 32), |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| |
|
| | self.attentions.append( |
| | AttentionBlock( |
| | out_channels, |
| | num_head_channels=attn_num_head_channels, |
| | rescale_output_factor=output_scale_factor, |
| | eps=resnet_eps, |
| | ) |
| | ) |
| |
|
| | self.upsampler = FirUpsample2D(in_channels, out_channels=out_channels) |
| | if add_upsample: |
| | self.resnet_up = ResnetBlock2D( |
| | in_channels=out_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=min(out_channels // 4, 32), |
| | groups_out=min(out_channels // 4, 32), |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | use_in_shortcut=True, |
| | up=True, |
| | kernel="fir", |
| | ) |
| | self.skip_conv = nn.Conv2d(out_channels, 3, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1)) |
| | self.skip_norm = torch.nn.GroupNorm( |
| | num_groups=min(out_channels // 4, 32), num_channels=out_channels, eps=resnet_eps, affine=True |
| | ) |
| | self.act = nn.SiLU() |
| | else: |
| | self.resnet_up = None |
| | self.skip_conv = None |
| | self.skip_norm = None |
| | self.act = None |
| |
|
| | def forward(self, hidden_states, res_hidden_states_tuple, temb=None, skip_sample=None): |
| | for resnet in self.resnets: |
| | |
| | res_hidden_states = res_hidden_states_tuple[-1] |
| | res_hidden_states_tuple = res_hidden_states_tuple[:-1] |
| | hidden_states = torch.cat([hidden_states, res_hidden_states], dim=1) |
| |
|
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | hidden_states = self.attentions[0](hidden_states) |
| |
|
| | if skip_sample is not None: |
| | skip_sample = self.upsampler(skip_sample) |
| | else: |
| | skip_sample = 0 |
| |
|
| | if self.resnet_up is not None: |
| | skip_sample_states = self.skip_norm(hidden_states) |
| | skip_sample_states = self.act(skip_sample_states) |
| | skip_sample_states = self.skip_conv(skip_sample_states) |
| |
|
| | skip_sample = skip_sample + skip_sample_states |
| |
|
| | hidden_states = self.resnet_up(hidden_states, temb) |
| |
|
| | return hidden_states, skip_sample |
| |
|
| |
|
| | class SkipUpBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | prev_output_channel: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_pre_norm: bool = True, |
| | output_scale_factor=np.sqrt(2.0), |
| | add_upsample=True, |
| | upsample_padding=1, |
| | ): |
| | super().__init__() |
| | self.resnets = nn.ModuleList([]) |
| |
|
| | for i in range(num_layers): |
| | res_skip_channels = in_channels if (i == num_layers - 1) else out_channels |
| | resnet_in_channels = prev_output_channel if i == 0 else out_channels |
| |
|
| | self.resnets.append( |
| | ResnetBlock2D( |
| | in_channels=resnet_in_channels + res_skip_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=min((resnet_in_channels + res_skip_channels) // 4, 32), |
| | groups_out=min(out_channels // 4, 32), |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | ) |
| | ) |
| |
|
| | self.upsampler = FirUpsample2D(in_channels, out_channels=out_channels) |
| | if add_upsample: |
| | self.resnet_up = ResnetBlock2D( |
| | in_channels=out_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=min(out_channels // 4, 32), |
| | groups_out=min(out_channels // 4, 32), |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | use_in_shortcut=True, |
| | up=True, |
| | kernel="fir", |
| | ) |
| | self.skip_conv = nn.Conv2d(out_channels, 3, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1)) |
| | self.skip_norm = torch.nn.GroupNorm( |
| | num_groups=min(out_channels // 4, 32), num_channels=out_channels, eps=resnet_eps, affine=True |
| | ) |
| | self.act = nn.SiLU() |
| | else: |
| | self.resnet_up = None |
| | self.skip_conv = None |
| | self.skip_norm = None |
| | self.act = None |
| |
|
| | def forward(self, hidden_states, res_hidden_states_tuple, temb=None, skip_sample=None): |
| | for resnet in self.resnets: |
| | |
| | res_hidden_states = res_hidden_states_tuple[-1] |
| | res_hidden_states_tuple = res_hidden_states_tuple[:-1] |
| | hidden_states = torch.cat([hidden_states, res_hidden_states], dim=1) |
| |
|
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | if skip_sample is not None: |
| | skip_sample = self.upsampler(skip_sample) |
| | else: |
| | skip_sample = 0 |
| |
|
| | if self.resnet_up is not None: |
| | skip_sample_states = self.skip_norm(hidden_states) |
| | skip_sample_states = self.act(skip_sample_states) |
| | skip_sample_states = self.skip_conv(skip_sample_states) |
| |
|
| | skip_sample = skip_sample + skip_sample_states |
| |
|
| | hidden_states = self.resnet_up(hidden_states, temb) |
| |
|
| | return hidden_states, skip_sample |
| |
|
| |
|
| | class ResnetUpsampleBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | prev_output_channel: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | output_scale_factor=1.0, |
| | add_upsample=True, |
| | skip_time_act=False, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| |
|
| | for i in range(num_layers): |
| | res_skip_channels = in_channels if (i == num_layers - 1) else out_channels |
| | resnet_in_channels = prev_output_channel if i == 0 else out_channels |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=resnet_in_channels + res_skip_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList( |
| | [ |
| | ResnetBlock2D( |
| | in_channels=out_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | up=True, |
| | ) |
| | ] |
| | ) |
| | else: |
| | self.upsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward(self, hidden_states, res_hidden_states_tuple, temb=None, upsample_size=None): |
| | for resnet in self.resnets: |
| | |
| | res_hidden_states = res_hidden_states_tuple[-1] |
| | res_hidden_states_tuple = res_hidden_states_tuple[:-1] |
| | hidden_states = torch.cat([hidden_states, res_hidden_states], dim=1) |
| |
|
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module): |
| | def custom_forward(*inputs): |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, temb) |
| | else: |
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states, temb) |
| |
|
| | return hidden_states |
| |
|
| | class SDMResnetUpsampleBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | prev_output_channel: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | output_scale_factor=1.0, |
| | add_upsample=True, |
| | skip_time_act=False, |
| | segmap_channels=34 |
| | ): |
| | super().__init__() |
| | resnets = [] |
| |
|
| | for i in range(num_layers): |
| | res_skip_channels = in_channels if (i == num_layers - 1) else out_channels |
| | resnet_in_channels = prev_output_channel if i == 0 else out_channels |
| |
|
| | resnets.append( |
| | SDMResnetBlock2D( |
| | in_channels=resnet_in_channels + res_skip_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | segmap_channels=segmap_channels, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList( |
| | [ |
| | SDMResnetBlock2D( |
| | in_channels=out_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | up=True, |
| | segmap_channels=segmap_channels, |
| | ) |
| | ] |
| | ) |
| | else: |
| | self.upsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward(self, hidden_states, segmap, res_hidden_states_tuple, temb=None, upsample_size=None): |
| |
|
| | |
| | for resnet in self.resnets: |
| | |
| | res_hidden_states = res_hidden_states_tuple[-1] |
| | res_hidden_states_tuple = res_hidden_states_tuple[:-1] |
| |
|
| | |
| | if hidden_states.shape[2] != res_hidden_states.shape[2]: |
| | p1d = (0, 0, 0, 1) |
| | hidden_states = F.pad(hidden_states, p1d, "replicate") |
| |
|
| | if hidden_states.shape[3] != res_hidden_states.shape[3]: |
| | p1d = (0, 1, 0, 0) |
| | hidden_states = F.pad(hidden_states, p1d, "replicate") |
| |
|
| | hidden_states = torch.cat([hidden_states, res_hidden_states], dim=1) |
| |
|
| | if self.training and self.gradient_checkpointing: |
| | def create_custom_forward(module): |
| | def custom_forward(*inputs): |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, segmap, temb) |
| | else: |
| | hidden_states = resnet(hidden_states, segmap, temb) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states, segmap, temb) |
| |
|
| | return hidden_states |
| |
|
| | class SimpleCrossAttnUpBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | prev_output_channel: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 1, |
| | resnet_eps: float = 1e-6, |
| | resnet_time_scale_shift: str = "default", |
| | resnet_act_fn: str = "swish", |
| | resnet_groups: int = 32, |
| | resnet_pre_norm: bool = True, |
| | attn_num_head_channels=1, |
| | cross_attention_dim=1280, |
| | output_scale_factor=1.0, |
| | add_upsample=True, |
| | skip_time_act=False, |
| | only_cross_attention=False, |
| | cross_attention_norm=None, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| | attentions = [] |
| |
|
| | self.has_cross_attention = True |
| | self.attn_num_head_channels = attn_num_head_channels |
| |
|
| | self.num_heads = out_channels // self.attn_num_head_channels |
| |
|
| | for i in range(num_layers): |
| | res_skip_channels = in_channels if (i == num_layers - 1) else out_channels |
| | resnet_in_channels = prev_output_channel if i == 0 else out_channels |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=resnet_in_channels + res_skip_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | ) |
| | ) |
| |
|
| | processor = ( |
| | AttnAddedKVProcessor2_0() if hasattr(F, "scaled_dot_product_attention") else AttnAddedKVProcessor() |
| | ) |
| |
|
| | attentions.append( |
| | Attention( |
| | query_dim=out_channels, |
| | cross_attention_dim=out_channels, |
| | heads=self.num_heads, |
| | dim_head=attn_num_head_channels, |
| | added_kv_proj_dim=cross_attention_dim, |
| | norm_num_groups=resnet_groups, |
| | bias=True, |
| | upcast_softmax=True, |
| | only_cross_attention=only_cross_attention, |
| | cross_attention_norm=cross_attention_norm, |
| | processor=processor, |
| | ) |
| | ) |
| | self.attentions = nn.ModuleList(attentions) |
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList( |
| | [ |
| | ResnetBlock2D( |
| | in_channels=out_channels, |
| | out_channels=out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=resnet_groups, |
| | dropout=dropout, |
| | time_embedding_norm=resnet_time_scale_shift, |
| | non_linearity=resnet_act_fn, |
| | output_scale_factor=output_scale_factor, |
| | pre_norm=resnet_pre_norm, |
| | skip_time_act=skip_time_act, |
| | up=True, |
| | ) |
| | ] |
| | ) |
| | else: |
| | self.upsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward( |
| | self, |
| | hidden_states, |
| | res_hidden_states_tuple, |
| | temb=None, |
| | encoder_hidden_states=None, |
| | upsample_size=None, |
| | attention_mask=None, |
| | cross_attention_kwargs=None, |
| | ): |
| | cross_attention_kwargs = cross_attention_kwargs if cross_attention_kwargs is not None else {} |
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | |
| | |
| | res_hidden_states = res_hidden_states_tuple[-1] |
| | res_hidden_states_tuple = res_hidden_states_tuple[:-1] |
| | hidden_states = torch.cat([hidden_states, res_hidden_states], dim=1) |
| |
|
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | |
| | hidden_states = attn( |
| | hidden_states, |
| | encoder_hidden_states=encoder_hidden_states, |
| | attention_mask=attention_mask, |
| | **cross_attention_kwargs, |
| | ) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states, temb) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | class KUpBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 5, |
| | resnet_eps: float = 1e-5, |
| | resnet_act_fn: str = "gelu", |
| | resnet_group_size: Optional[int] = 32, |
| | add_upsample=True, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| | k_in_channels = 2 * out_channels |
| | k_out_channels = in_channels |
| | num_layers = num_layers - 1 |
| |
|
| | for i in range(num_layers): |
| | in_channels = k_in_channels if i == 0 else out_channels |
| | groups = in_channels // resnet_group_size |
| | groups_out = out_channels // resnet_group_size |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=k_out_channels if (i == num_layers - 1) else out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=groups, |
| | groups_out=groups_out, |
| | dropout=dropout, |
| | non_linearity=resnet_act_fn, |
| | time_embedding_norm="ada_group", |
| | conv_shortcut_bias=False, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList([KUpsample2D()]) |
| | else: |
| | self.upsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward(self, hidden_states, res_hidden_states_tuple, temb=None, upsample_size=None): |
| | res_hidden_states_tuple = res_hidden_states_tuple[-1] |
| | if res_hidden_states_tuple is not None: |
| | hidden_states = torch.cat([hidden_states, res_hidden_states_tuple], dim=1) |
| |
|
| | for resnet in self.resnets: |
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module): |
| | def custom_forward(*inputs): |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, temb) |
| | else: |
| | hidden_states = resnet(hidden_states, temb) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | class KCrossAttnUpBlock2D(nn.Module): |
| | def __init__( |
| | self, |
| | in_channels: int, |
| | out_channels: int, |
| | temb_channels: int, |
| | dropout: float = 0.0, |
| | num_layers: int = 4, |
| | resnet_eps: float = 1e-5, |
| | resnet_act_fn: str = "gelu", |
| | resnet_group_size: int = 32, |
| | attn_num_head_channels=1, |
| | cross_attention_dim: int = 768, |
| | add_upsample: bool = True, |
| | upcast_attention: bool = False, |
| | ): |
| | super().__init__() |
| | resnets = [] |
| | attentions = [] |
| |
|
| | is_first_block = in_channels == out_channels == temb_channels |
| | is_middle_block = in_channels != out_channels |
| | add_self_attention = True if is_first_block else False |
| |
|
| | self.has_cross_attention = True |
| | self.attn_num_head_channels = attn_num_head_channels |
| |
|
| | |
| | k_in_channels = out_channels if is_first_block else 2 * out_channels |
| | k_out_channels = in_channels |
| |
|
| | num_layers = num_layers - 1 |
| |
|
| | for i in range(num_layers): |
| | in_channels = k_in_channels if i == 0 else out_channels |
| | groups = in_channels // resnet_group_size |
| | groups_out = out_channels // resnet_group_size |
| |
|
| | if is_middle_block and (i == num_layers - 1): |
| | conv_2d_out_channels = k_out_channels |
| | else: |
| | conv_2d_out_channels = None |
| |
|
| | resnets.append( |
| | ResnetBlock2D( |
| | in_channels=in_channels, |
| | out_channels=out_channels, |
| | conv_2d_out_channels=conv_2d_out_channels, |
| | temb_channels=temb_channels, |
| | eps=resnet_eps, |
| | groups=groups, |
| | groups_out=groups_out, |
| | dropout=dropout, |
| | non_linearity=resnet_act_fn, |
| | time_embedding_norm="ada_group", |
| | conv_shortcut_bias=False, |
| | ) |
| | ) |
| | attentions.append( |
| | KAttentionBlock( |
| | k_out_channels if (i == num_layers - 1) else out_channels, |
| | k_out_channels // attn_num_head_channels |
| | if (i == num_layers - 1) |
| | else out_channels // attn_num_head_channels, |
| | attn_num_head_channels, |
| | cross_attention_dim=cross_attention_dim, |
| | temb_channels=temb_channels, |
| | attention_bias=True, |
| | add_self_attention=add_self_attention, |
| | cross_attention_norm="layer_norm", |
| | upcast_attention=upcast_attention, |
| | ) |
| | ) |
| |
|
| | self.resnets = nn.ModuleList(resnets) |
| | self.attentions = nn.ModuleList(attentions) |
| |
|
| | if add_upsample: |
| | self.upsamplers = nn.ModuleList([KUpsample2D()]) |
| | else: |
| | self.upsamplers = None |
| |
|
| | self.gradient_checkpointing = False |
| |
|
| | def forward( |
| | self, |
| | hidden_states, |
| | res_hidden_states_tuple, |
| | temb=None, |
| | encoder_hidden_states=None, |
| | cross_attention_kwargs=None, |
| | upsample_size=None, |
| | attention_mask=None, |
| | ): |
| | res_hidden_states_tuple = res_hidden_states_tuple[-1] |
| | if res_hidden_states_tuple is not None: |
| | hidden_states = torch.cat([hidden_states, res_hidden_states_tuple], dim=1) |
| |
|
| | for resnet, attn in zip(self.resnets, self.attentions): |
| | if self.training and self.gradient_checkpointing: |
| |
|
| | def create_custom_forward(module, return_dict=None): |
| | def custom_forward(*inputs): |
| | if return_dict is not None: |
| | return module(*inputs, return_dict=return_dict) |
| | else: |
| | return module(*inputs) |
| |
|
| | return custom_forward |
| |
|
| | hidden_states = torch.utils.checkpoint.checkpoint(create_custom_forward(resnet), hidden_states, temb) |
| | hidden_states = torch.utils.checkpoint.checkpoint( |
| | create_custom_forward(attn, return_dict=False), |
| | hidden_states, |
| | encoder_hidden_states, |
| | attention_mask, |
| | cross_attention_kwargs, |
| | )[0] |
| | else: |
| | hidden_states = resnet(hidden_states, temb) |
| | hidden_states = attn( |
| | hidden_states, |
| | encoder_hidden_states=encoder_hidden_states, |
| | emb=temb, |
| | attention_mask=attention_mask, |
| | cross_attention_kwargs=cross_attention_kwargs, |
| | ) |
| |
|
| | if self.upsamplers is not None: |
| | for upsampler in self.upsamplers: |
| | hidden_states = upsampler(hidden_states) |
| |
|
| | return hidden_states |
| |
|
| |
|
| | |
| | class KAttentionBlock(nn.Module): |
| | r""" |
| | A basic Transformer block. |
| | |
| | Parameters: |
| | dim (`int`): The number of channels in the input and output. |
| | num_attention_heads (`int`): The number of heads to use for multi-head attention. |
| | attention_head_dim (`int`): The number of channels in each head. |
| | dropout (`float`, *optional*, defaults to 0.0): The dropout probability to use. |
| | cross_attention_dim (`int`, *optional*): The size of the encoder_hidden_states vector for cross attention. |
| | activation_fn (`str`, *optional*, defaults to `"geglu"`): Activation function to be used in feed-forward. |
| | num_embeds_ada_norm (: |
| | obj: `int`, *optional*): The number of diffusion steps used during training. See `Transformer2DModel`. |
| | attention_bias (: |
| | obj: `bool`, *optional*, defaults to `False`): Configure if the attentions should contain a bias parameter. |
| | """ |
| |
|
| | def __init__( |
| | self, |
| | dim: int, |
| | num_attention_heads: int, |
| | attention_head_dim: int, |
| | dropout: float = 0.0, |
| | cross_attention_dim: Optional[int] = None, |
| | attention_bias: bool = False, |
| | upcast_attention: bool = False, |
| | temb_channels: int = 768, |
| | add_self_attention: bool = False, |
| | cross_attention_norm: Optional[str] = None, |
| | group_size: int = 32, |
| | ): |
| | super().__init__() |
| | self.add_self_attention = add_self_attention |
| |
|
| | |
| | if add_self_attention: |
| | self.norm1 = AdaGroupNorm(temb_channels, dim, max(1, dim // group_size)) |
| | self.attn1 = Attention( |
| | query_dim=dim, |
| | heads=num_attention_heads, |
| | dim_head=attention_head_dim, |
| | dropout=dropout, |
| | bias=attention_bias, |
| | cross_attention_dim=None, |
| | cross_attention_norm=None, |
| | ) |
| |
|
| | |
| | self.norm2 = AdaGroupNorm(temb_channels, dim, max(1, dim // group_size)) |
| | self.attn2 = Attention( |
| | query_dim=dim, |
| | cross_attention_dim=cross_attention_dim, |
| | heads=num_attention_heads, |
| | dim_head=attention_head_dim, |
| | dropout=dropout, |
| | bias=attention_bias, |
| | upcast_attention=upcast_attention, |
| | cross_attention_norm=cross_attention_norm, |
| | ) |
| |
|
| | def _to_3d(self, hidden_states, height, weight): |
| | return hidden_states.permute(0, 2, 3, 1).reshape(hidden_states.shape[0], height * weight, -1) |
| |
|
| | def _to_4d(self, hidden_states, height, weight): |
| | return hidden_states.permute(0, 2, 1).reshape(hidden_states.shape[0], -1, height, weight) |
| |
|
| | def forward( |
| | self, |
| | hidden_states, |
| | encoder_hidden_states=None, |
| | emb=None, |
| | attention_mask=None, |
| | cross_attention_kwargs=None, |
| | ): |
| | cross_attention_kwargs = cross_attention_kwargs if cross_attention_kwargs is not None else {} |
| |
|
| | |
| | if self.add_self_attention: |
| | norm_hidden_states = self.norm1(hidden_states, emb) |
| |
|
| | height, weight = norm_hidden_states.shape[2:] |
| | norm_hidden_states = self._to_3d(norm_hidden_states, height, weight) |
| |
|
| | attn_output = self.attn1( |
| | norm_hidden_states, |
| | encoder_hidden_states=None, |
| | **cross_attention_kwargs, |
| | ) |
| | attn_output = self._to_4d(attn_output, height, weight) |
| |
|
| | hidden_states = attn_output + hidden_states |
| |
|
| | |
| | norm_hidden_states = self.norm2(hidden_states, emb) |
| |
|
| | height, weight = norm_hidden_states.shape[2:] |
| | norm_hidden_states = self._to_3d(norm_hidden_states, height, weight) |
| | attn_output = self.attn2( |
| | norm_hidden_states, |
| | encoder_hidden_states=encoder_hidden_states, |
| | **cross_attention_kwargs, |
| | ) |
| | attn_output = self._to_4d(attn_output, height, weight) |
| |
|
| | hidden_states = attn_output + hidden_states |
| |
|
| | return hidden_states |
| |
|
| | class SPADEGroupNorm(nn.Module): |
| | def __init__(self, norm_nc, label_nc, eps = 1e-5): |
| | super().__init__() |
| |
|
| | self.norm = nn.GroupNorm(32, norm_nc, affine=False) |
| |
|
| | self.eps = eps |
| | nhidden = 128 |
| | self.mlp_shared = nn.Sequential( |
| | nn.Conv2d(label_nc, nhidden, kernel_size=3, padding=1), |
| | nn.ReLU(), |
| | ) |
| | self.mlp_gamma = nn.Conv2d(nhidden, norm_nc, kernel_size=3, padding=1) |
| | self.mlp_beta = nn.Conv2d(nhidden, norm_nc, kernel_size=3, padding=1) |
| |
|
| | def forward(self, x, segmap): |
| | |
| | x = self.norm(x) |
| |
|
| | |
| | segmap = F.interpolate(segmap, size=x.size()[2:], mode='nearest') |
| | actv = self.mlp_shared(segmap) |
| | gamma = self.mlp_gamma(actv) |
| | beta = self.mlp_beta(actv) |
| |
|
| | |
| | return x * (1 + gamma) + beta |
| |
|
| | |
| | class SDMResnetBlock2D(ResnetBlock2D): |
| | r""" |
| | A Resnet block. |
| | |
| | Parameters: |
| | in_channels (`int`): The number of channels in the input. |
| | out_channels (`int`, *optional*, default to be `None`): |
| | The number of output channels for the first conv2d layer. If None, same as `in_channels`. |
| | dropout (`float`, *optional*, defaults to `0.0`): The dropout probability to use. |
| | temb_channels (`int`, *optional*, default to `512`): the number of channels in timestep embedding. |
| | groups (`int`, *optional*, default to `32`): The number of groups to use for the first normalization layer. |
| | groups_out (`int`, *optional*, default to None): |
| | The number of groups to use for the second normalization layer. if set to None, same as `groups`. |
| | eps (`float`, *optional*, defaults to `1e-6`): The epsilon to use for the normalization. |
| | non_linearity (`str`, *optional*, default to `"swish"`): the activation function to use. |
| | time_embedding_norm (`str`, *optional*, default to `"default"` ): Time scale shift config. |
| | By default, apply timestep embedding conditioning with a simple shift mechanism. Choose "scale_shift" or |
| | "ada_group" for a stronger conditioning with scale and shift. |
| | kernal (`torch.FloatTensor`, optional, default to None): FIR filter, see |
| | [`~models.resnet.FirUpsample2D`] and [`~models.resnet.FirDownsample2D`]. |
| | output_scale_factor (`float`, *optional*, default to be `1.0`): the scale factor to use for the output. |
| | use_in_shortcut (`bool`, *optional*, default to `True`): |
| | If `True`, add a 1x1 nn.conv2d layer for skip-connection. |
| | up (`bool`, *optional*, default to `False`): If `True`, add an upsample layer. |
| | down (`bool`, *optional*, default to `False`): If `True`, add a downsample layer. |
| | conv_shortcut_bias (`bool`, *optional*, default to `True`): If `True`, adds a learnable bias to the |
| | `conv_shortcut` output. |
| | conv_2d_out_channels (`int`, *optional*, default to `None`): the number of channels in the output. |
| | If None, same as `out_channels`. |
| | """ |
| |
|
| | def __init__( |
| | self, |
| | in_channels, |
| | out_channels, |
| | segmap_channels: int = 34, |
| | *args, |
| | **kwargs |
| | ): |
| | super().__init__(in_channels=in_channels, out_channels=out_channels, *args, **kwargs) |
| |
|
| | self.SPADE_norm1 = SPADEGroupNorm(in_channels, segmap_channels) |
| | self.SPADE_norm2 = SPADEGroupNorm(out_channels, segmap_channels) |
| |
|
| | def forward(self, input_tensor, segmap, temb): |
| |
|
| | return torch.utils.checkpoint.checkpoint(self._forward, input_tensor, segmap, temb) |
| | def _forward(self, input_tensor, segmap, temb): |
| | assert segmap is not None, "input segmap is None" |
| | hidden_states = input_tensor |
| |
|
| | if self.time_embedding_norm == "ada_group": |
| | hidden_states = self.norm1(hidden_states, temb) |
| | else: |
| | hidden_states = self.norm1(hidden_states) |
| |
|
| | hidden_states = self.SPADE_norm1(hidden_states,segmap) |
| |
|
| | hidden_states = self.nonlinearity(hidden_states) |
| |
|
| | if self.upsample is not None: |
| | |
| | if hidden_states.shape[0] >= 64: |
| | input_tensor = input_tensor.contiguous() |
| | hidden_states = hidden_states.contiguous() |
| | input_tensor = self.upsample(input_tensor) |
| | hidden_states = self.upsample(hidden_states) |
| | elif self.downsample is not None: |
| | input_tensor = self.downsample(input_tensor) |
| | hidden_states = self.downsample(hidden_states) |
| |
|
| | hidden_states = self.conv1(hidden_states) |
| |
|
| | if self.time_emb_proj is not None: |
| | temb = self.time_emb_proj(self.nonlinearity(temb))[:, :, None, None] |
| |
|
| | if temb is not None and self.time_embedding_norm == "default": |
| | hidden_states = hidden_states + temb |
| | hidden_states = self.SPADE_norm2(hidden_states, segmap) |
| |
|
| | if self.time_embedding_norm == "ada_group": |
| | hidden_states = self.norm2(hidden_states, temb) |
| | else: |
| | hidden_states = self.norm2(hidden_states) |
| |
|
| | if temb is not None and self.time_embedding_norm == "scale_shift": |
| | scale, shift = torch.chunk(temb, 2, dim=1) |
| | hidden_states = self.SPADE_norm2(hidden_states,segmap) * (1 + scale) + shift |
| |
|
| | hidden_states = self.nonlinearity(hidden_states) |
| |
|
| | hidden_states = self.dropout(hidden_states) |
| | hidden_states = self.conv2(hidden_states) |
| |
|
| | if self.conv_shortcut is not None: |
| | input_tensor = self.conv_shortcut(input_tensor) |
| |
|
| | output_tensor = (input_tensor + hidden_states) / self.output_scale_factor |
| |
|
| | return output_tensor |
| |
|
| | class ResnetBlock2D(ResnetBlock2D): |
| | def forward(self, input_tensor, temb): |
| | return torch.utils.checkpoint.checkpoint(super().forward, input_tensor, temb) |
| |
|
| | class AttentionBlock(AttentionBlock): |
| | def forward(self, hidden_states): |
| | return torch.utils.checkpoint.checkpoint(super().forward, hidden_states) |