|
|
import numpy as np |
|
|
import torch |
|
|
from diffusers.configuration_utils import ConfigMixin, register_to_config |
|
|
from torch import nn |
|
|
|
|
|
from backend.attention import attention_function_single_head_spatial |
|
|
|
|
|
|
|
|
def nonlinearity(x): |
|
|
return x * torch.sigmoid(x) |
|
|
|
|
|
|
|
|
def Normalize(in_channels, num_groups=32): |
|
|
return nn.GroupNorm(num_groups=num_groups, num_channels=in_channels, eps=1e-6, affine=True) |
|
|
|
|
|
|
|
|
class DiagonalGaussianDistribution: |
|
|
def __init__(self, parameters, deterministic=False): |
|
|
self.parameters = parameters |
|
|
self.mean, self.logvar = torch.chunk(parameters, 2, dim=1) |
|
|
self.logvar = torch.clamp(self.logvar, -30.0, 20.0) |
|
|
self.deterministic = deterministic |
|
|
self.std = torch.exp(0.5 * self.logvar) |
|
|
self.var = torch.exp(self.logvar) |
|
|
if self.deterministic: |
|
|
self.var = self.std = torch.zeros_like(self.mean).to(device=self.parameters.device) |
|
|
|
|
|
def sample(self): |
|
|
x = self.mean + self.std * torch.randn(self.mean.shape).to(device=self.parameters.device) |
|
|
return x |
|
|
|
|
|
def mode(self): |
|
|
return self.mean |
|
|
|
|
|
|
|
|
class Upsample(nn.Module): |
|
|
def __init__(self, in_channels, with_conv): |
|
|
super().__init__() |
|
|
self.with_conv = with_conv |
|
|
if self.with_conv: |
|
|
self.conv = nn.Conv2d(in_channels, in_channels, kernel_size=3, stride=1, padding=1) |
|
|
|
|
|
@torch.inference_mode() |
|
|
def forward(self, x): |
|
|
try: |
|
|
x = torch.nn.functional.interpolate(x, scale_factor=2.0, mode="nearest") |
|
|
except Exception as e: |
|
|
b, c, h, w = x.shape |
|
|
out = torch.empty((b, c, h * 2, w * 2), dtype=x.dtype, layout=x.layout, device=x.device) |
|
|
split = 8 |
|
|
l = out.shape[1] // split |
|
|
for i in range(0, out.shape[1], l): |
|
|
out[:, i : i + l] = torch.nn.functional.interpolate(x[:, i : i + l].to(torch.float32), scale_factor=2.0, mode="nearest").to(x.dtype) |
|
|
del x |
|
|
x = out |
|
|
|
|
|
if self.with_conv: |
|
|
x = self.conv(x) |
|
|
return x |
|
|
|
|
|
|
|
|
class Downsample(nn.Module): |
|
|
def __init__(self, in_channels, with_conv): |
|
|
super().__init__() |
|
|
self.with_conv = with_conv |
|
|
if self.with_conv: |
|
|
self.conv = nn.Conv2d(in_channels, in_channels, kernel_size=3, stride=2, padding=0) |
|
|
|
|
|
@torch.inference_mode() |
|
|
def forward(self, x): |
|
|
if self.with_conv: |
|
|
pad = (0, 1, 0, 1) |
|
|
x = torch.nn.functional.pad(x, pad, mode="constant", value=0) |
|
|
x = self.conv(x) |
|
|
else: |
|
|
x = torch.nn.functional.avg_pool2d(x, kernel_size=2, stride=2) |
|
|
return x |
|
|
|
|
|
|
|
|
class ResnetBlock(nn.Module): |
|
|
def __init__(self, *, in_channels, out_channels=None, conv_shortcut=False, dropout, temb_channels=512): |
|
|
super().__init__() |
|
|
self.in_channels = in_channels |
|
|
out_channels = in_channels if out_channels is None else out_channels |
|
|
self.out_channels = out_channels |
|
|
self.use_conv_shortcut = conv_shortcut |
|
|
|
|
|
self.swish = torch.nn.SiLU(inplace=True) |
|
|
self.norm1 = Normalize(in_channels) |
|
|
self.conv1 = nn.Conv2d(in_channels, out_channels, kernel_size=3, stride=1, padding=1) |
|
|
if temb_channels > 0: |
|
|
self.temb_proj = nn.Linear(temb_channels, out_channels) |
|
|
self.norm2 = Normalize(out_channels) |
|
|
self.dropout = torch.nn.Dropout(dropout, inplace=True) |
|
|
self.conv2 = nn.Conv2d(out_channels, out_channels, kernel_size=3, stride=1, padding=1) |
|
|
if self.in_channels != self.out_channels: |
|
|
if self.use_conv_shortcut: |
|
|
self.conv_shortcut = nn.Conv2d(in_channels, out_channels, kernel_size=3, stride=1, padding=1) |
|
|
else: |
|
|
self.nin_shortcut = nn.Conv2d(in_channels, out_channels, kernel_size=1, stride=1, padding=0) |
|
|
|
|
|
@torch.inference_mode() |
|
|
def forward(self, x, temb): |
|
|
h = x |
|
|
h = self.norm1(h) |
|
|
h = self.swish(h) |
|
|
h = self.conv1(h) |
|
|
if temb is not None: |
|
|
h = h + self.temb_proj(self.swish(temb))[:, :, None, None] |
|
|
h = self.norm2(h) |
|
|
h = self.swish(h) |
|
|
h = self.dropout(h) |
|
|
h = self.conv2(h) |
|
|
if self.in_channels != self.out_channels: |
|
|
if self.use_conv_shortcut: |
|
|
x = self.conv_shortcut(x) |
|
|
else: |
|
|
x = self.nin_shortcut(x) |
|
|
return x + h |
|
|
|
|
|
|
|
|
class AttnBlock(nn.Module): |
|
|
def __init__(self, in_channels): |
|
|
super().__init__() |
|
|
self.in_channels = in_channels |
|
|
|
|
|
self.norm = Normalize(in_channels) |
|
|
self.q = nn.Conv2d(in_channels, in_channels, kernel_size=1, stride=1, padding=0) |
|
|
self.k = nn.Conv2d(in_channels, in_channels, kernel_size=1, stride=1, padding=0) |
|
|
self.v = nn.Conv2d(in_channels, in_channels, kernel_size=1, stride=1, padding=0) |
|
|
self.proj_out = nn.Conv2d(in_channels, in_channels, kernel_size=1, stride=1, padding=0) |
|
|
|
|
|
@torch.inference_mode() |
|
|
def forward(self, x): |
|
|
h_ = x |
|
|
h_ = self.norm(h_) |
|
|
q = self.q(h_) |
|
|
k = self.k(h_) |
|
|
v = self.v(h_) |
|
|
h_ = attention_function_single_head_spatial(q, k, v) |
|
|
h_ = self.proj_out(h_) |
|
|
return x + h_ |
|
|
|
|
|
|
|
|
class Encoder(nn.Module): |
|
|
def __init__(self, *, ch, out_ch, ch_mult=(1, 2, 4, 8), num_res_blocks, attn_resolutions, dropout=0.0, resamp_with_conv=True, in_channels, resolution, z_channels, double_z=True, use_linear_attn=False, attn_type="vanilla", **kwargs): |
|
|
super().__init__() |
|
|
self.ch = ch |
|
|
self.temb_ch = 0 |
|
|
self.num_resolutions = len(ch_mult) |
|
|
self.num_res_blocks = num_res_blocks |
|
|
self.resolution = resolution |
|
|
self.in_channels = in_channels |
|
|
|
|
|
self.conv_in = nn.Conv2d(in_channels, self.ch, kernel_size=3, stride=1, padding=1) |
|
|
|
|
|
curr_res = resolution |
|
|
in_ch_mult = (1,) + tuple(ch_mult) |
|
|
self.in_ch_mult = in_ch_mult |
|
|
self.down = nn.ModuleList() |
|
|
for i_level in range(self.num_resolutions): |
|
|
block = nn.ModuleList() |
|
|
attn = nn.ModuleList() |
|
|
block_in = ch * in_ch_mult[i_level] |
|
|
block_out = ch * ch_mult[i_level] |
|
|
for i_block in range(self.num_res_blocks): |
|
|
block.append(ResnetBlock(in_channels=block_in, out_channels=block_out, temb_channels=self.temb_ch, dropout=dropout)) |
|
|
block_in = block_out |
|
|
if curr_res in attn_resolutions: |
|
|
attn.append(AttnBlock(block_in)) |
|
|
down = nn.Module() |
|
|
down.block = block |
|
|
down.attn = attn |
|
|
if i_level != self.num_resolutions - 1: |
|
|
down.downsample = Downsample(block_in, resamp_with_conv) |
|
|
curr_res = curr_res // 2 |
|
|
self.down.append(down) |
|
|
|
|
|
self.mid = nn.Module() |
|
|
self.mid.block_1 = ResnetBlock(in_channels=block_in, out_channels=block_in, temb_channels=self.temb_ch, dropout=dropout) |
|
|
self.mid.attn_1 = AttnBlock(block_in) |
|
|
self.mid.block_2 = ResnetBlock(in_channels=block_in, out_channels=block_in, temb_channels=self.temb_ch, dropout=dropout) |
|
|
|
|
|
self.norm_out = Normalize(block_in) |
|
|
self.conv_out = nn.Conv2d(block_in, 2 * z_channels if double_z else z_channels, kernel_size=3, stride=1, padding=1) |
|
|
|
|
|
@torch.inference_mode() |
|
|
def forward(self, x): |
|
|
temb = None |
|
|
h = self.conv_in(x) |
|
|
for i_level in range(self.num_resolutions): |
|
|
for i_block in range(self.num_res_blocks): |
|
|
h = self.down[i_level].block[i_block](h, temb) |
|
|
if len(self.down[i_level].attn) > 0: |
|
|
h = self.down[i_level].attn[i_block](h) |
|
|
if i_level != self.num_resolutions - 1: |
|
|
h = self.down[i_level].downsample(h) |
|
|
|
|
|
h = self.mid.block_1(h, temb) |
|
|
h = self.mid.attn_1(h) |
|
|
h = self.mid.block_2(h, temb) |
|
|
|
|
|
h = self.norm_out(h) |
|
|
h = nonlinearity(h) |
|
|
h = self.conv_out(h) |
|
|
return h |
|
|
|
|
|
|
|
|
class Decoder(nn.Module): |
|
|
def __init__(self, *, ch, out_ch, ch_mult=(1, 2, 4, 8), num_res_blocks, attn_resolutions, dropout=0.0, resamp_with_conv=True, in_channels, resolution, z_channels, give_pre_end=False, tanh_out=False, use_linear_attn=False, **kwargs): |
|
|
super().__init__() |
|
|
self.ch = ch |
|
|
self.temb_ch = 0 |
|
|
self.num_resolutions = len(ch_mult) |
|
|
self.num_res_blocks = num_res_blocks |
|
|
self.resolution = resolution |
|
|
self.in_channels = in_channels |
|
|
self.give_pre_end = give_pre_end |
|
|
self.tanh_out = tanh_out |
|
|
|
|
|
block_in = ch * ch_mult[self.num_resolutions - 1] |
|
|
curr_res = resolution // 2 ** (self.num_resolutions - 1) |
|
|
self.z_shape = (1, z_channels, curr_res, curr_res) |
|
|
print("Working with z of shape {} = {} dimensions.".format(self.z_shape, np.prod(self.z_shape))) |
|
|
|
|
|
self.conv_in = nn.Conv2d(z_channels, block_in, kernel_size=3, stride=1, padding=1) |
|
|
|
|
|
self.mid = nn.Module() |
|
|
self.mid.block_1 = ResnetBlock(in_channels=block_in, out_channels=block_in, temb_channels=self.temb_ch, dropout=dropout) |
|
|
self.mid.attn_1 = AttnBlock(block_in) |
|
|
self.mid.block_2 = ResnetBlock(in_channels=block_in, out_channels=block_in, temb_channels=self.temb_ch, dropout=dropout) |
|
|
|
|
|
self.up = nn.ModuleList() |
|
|
for i_level in reversed(range(self.num_resolutions)): |
|
|
block = nn.ModuleList() |
|
|
attn = nn.ModuleList() |
|
|
block_out = ch * ch_mult[i_level] |
|
|
for i_block in range(self.num_res_blocks + 1): |
|
|
block.append(ResnetBlock(in_channels=block_in, out_channels=block_out, temb_channels=self.temb_ch, dropout=dropout)) |
|
|
block_in = block_out |
|
|
if curr_res in attn_resolutions: |
|
|
attn.append(AttnBlock(block_in)) |
|
|
up = nn.Module() |
|
|
up.block = block |
|
|
up.attn = attn |
|
|
if i_level != 0: |
|
|
up.upsample = Upsample(block_in, resamp_with_conv) |
|
|
curr_res = curr_res * 2 |
|
|
self.up.insert(0, up) |
|
|
|
|
|
self.norm_out = Normalize(block_in) |
|
|
self.conv_out = nn.Conv2d(block_in, out_ch, kernel_size=3, stride=1, padding=1) |
|
|
|
|
|
@torch.inference_mode() |
|
|
def forward(self, z, **kwargs): |
|
|
temb = None |
|
|
h = self.conv_in(z) |
|
|
h = self.mid.block_1(h, temb, **kwargs) |
|
|
h = self.mid.attn_1(h, **kwargs) |
|
|
h = self.mid.block_2(h, temb, **kwargs) |
|
|
|
|
|
for i_level in reversed(range(self.num_resolutions)): |
|
|
for i_block in range(self.num_res_blocks + 1): |
|
|
_h = self.up[i_level].block[i_block](h, temb, **kwargs) |
|
|
del h |
|
|
h = self.up[i_level].attn[i_block](_h, **kwargs) if len(self.up[i_level].attn) > 0 else _h |
|
|
if i_level != 0: |
|
|
_h = self.up[i_level].upsample(h) |
|
|
del h |
|
|
h = _h |
|
|
|
|
|
if self.give_pre_end: |
|
|
return h |
|
|
|
|
|
h = self.norm_out(h) |
|
|
h = nonlinearity(h) |
|
|
h = self.conv_out(h, **kwargs) |
|
|
if self.tanh_out: |
|
|
h = torch.tanh(h) |
|
|
return h |
|
|
|
|
|
|
|
|
class IntegratedAutoencoderKL(nn.Module, ConfigMixin): |
|
|
config_name = "config.json" |
|
|
|
|
|
@register_to_config |
|
|
def __init__(self, in_channels=3, out_channels=3, down_block_types=("DownEncoderBlock2D",), up_block_types=("UpDecoderBlock2D",), block_out_channels=(64,), layers_per_block=1, act_fn="silu", latent_channels=4, norm_num_groups=32, sample_size=32, scaling_factor=0.18215, shift_factor=0.0, latents_mean=None, latents_std=None, force_upcast=True, use_quant_conv=True, use_post_quant_conv=True): |
|
|
super().__init__() |
|
|
ch = block_out_channels[0] |
|
|
ch_mult = [x // ch for x in block_out_channels] |
|
|
self.encoder = Encoder(double_z=True, z_channels=latent_channels, resolution=256, in_channels=in_channels, out_ch=out_channels, ch=ch, ch_mult=ch_mult, num_res_blocks=layers_per_block, attn_resolutions=[], dropout=0.0) |
|
|
self.decoder = Decoder(double_z=True, z_channels=latent_channels, resolution=256, in_channels=in_channels, out_ch=out_channels, ch=ch, ch_mult=ch_mult, num_res_blocks=layers_per_block, attn_resolutions=[], dropout=0.0) |
|
|
self.quant_conv = nn.Conv2d(2 * latent_channels, 2 * latent_channels, 1) if use_quant_conv else None |
|
|
self.post_quant_conv = nn.Conv2d(latent_channels, latent_channels, 1) if use_post_quant_conv else None |
|
|
self.embed_dim = latent_channels |
|
|
self.scaling_factor = scaling_factor |
|
|
self.shift_factor = shift_factor |
|
|
|
|
|
if not isinstance(self.shift_factor, float): |
|
|
self.shift_factor = 0.0 |
|
|
|
|
|
def encode(self, x): |
|
|
z = self.encoder(x) |
|
|
|
|
|
if self.quant_conv is not None: |
|
|
z = self.quant_conv(z) |
|
|
|
|
|
posterior = DiagonalGaussianDistribution(z) |
|
|
return posterior.sample() |
|
|
|
|
|
def decode(self, z): |
|
|
if self.post_quant_conv is not None: |
|
|
z = self.post_quant_conv(z) |
|
|
|
|
|
x = self.decoder(z) |
|
|
return x |
|
|
|
|
|
def process_in(self, latent): |
|
|
return (latent - self.shift_factor) * self.scaling_factor |
|
|
|
|
|
def process_out(self, latent): |
|
|
return (latent / self.scaling_factor) + self.shift_factor |
|
|
|