Spaces:
Sleeping
Sleeping
File size: 27,481 Bytes
0fd26a8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 | from re import A
import torch
import torch.nn as nn
import torchvision.transforms as transforms
import math
import einops
import torch.utils.checkpoint
from functools import partial
import open_clip
import numpy as np
from PIL import Image
import torch.nn.functional as F
import timm
from timm.models.layers import trunc_normal_, Mlp
from .sigmoid.module import LayerNorm, RMSNorm, AdaRMSNorm, TDRMSNorm, QKNorm, TimeDependentParameter
from .common_layers import Linear, EvenDownInterpolate, ChannelFirst, ChannelLast, Embedding
from .axial_rope import AxialRoPE, make_axial_pos
from .trans_autoencoder import TransEncoder, Adaptor
def check_zip(*args):
args = [list(arg) for arg in args]
length = len(args[0])
for arg in args:
assert len(arg) == length
return zip(*args)
class PixelShuffleUpsample(nn.Module):
def __init__(self, dim_in, dim_out, ratio = 2):
super().__init__()
self.ratio = ratio
self.kernel = Linear(dim_in, dim_out * self.ratio * self.ratio)
def forward(self, x):
x = self.kernel(x)
B, H, W, C = x.shape
x = x.reshape(B, H, W, self.ratio, self.ratio, C // self.ratio // self.ratio)
x = x.transpose(2, 3)
x = x.reshape(B, H * self.ratio, W * self.ratio, C // self.ratio // self.ratio)
return x
class PositionEmbeddings(nn.Module):
def __init__(self, max_height, max_width, dim):
super().__init__()
self.max_height = max_height
self.max_width = max_width
self.position_embeddings = Embedding(self.max_height * self.max_width, dim)
def forward(self, x):
B, H, W, C = x.shape
height_idxes = torch.arange(H, device = x.device)[:, None].repeat(1, W)
width_idxes = torch.arange(W, device = x.device)[None, :].repeat(H, 1)
idxes = height_idxes * self.max_width + width_idxes
x = x + self.position_embeddings(idxes[None])
return x
class TextPositionEmbeddings(nn.Module):
def __init__(self, num_embeddings, embedding_dim):
super().__init__()
self.embedding = Embedding(num_embeddings, embedding_dim)
def forward(self, x):
batch_size, num_embeddings, embedding_dim = x.shape
# positions = torch.arange(height * width, device=x.device).reshape(1, height, width)
positions = torch.arange(num_embeddings, device=x.device).unsqueeze(0).expand(batch_size, num_embeddings)
x = x + self.embedding(positions)
return x
class MLPBlock(nn.Module):
def __init__(self, config):
super().__init__()
if config.norm_type == 'LN':
self.norm_type = 'LN'
self.norm = LayerNorm(config.dim)
elif config.norm_type == 'RMSN':
self.norm_type = 'RMSN'
self.norm = RMSNorm(config.dim)
elif config.norm_type == 'TDRMSN':
self.norm_type = 'TDRMSN'
self.norm = TDRMSNorm(config.dim)
elif config.norm_type == 'ADARMSN':
self.norm_type = 'ADARMSN'
self.norm = AdaRMSNorm(config.dim, config.dim)
self.act = nn.GELU()
self.w0 = Linear(config.dim, config.hidden_dim)
self.w1 = Linear(config.dim, config.hidden_dim)
self.w2 = Linear(config.hidden_dim, config.dim)
def forward(self, x):
if self.norm_type == 'LN' or self.norm_type == 'RMSN' or self.norm_type == 'TDRMSN':
x = self.norm(x)
elif self.norm_type == 'ADARMSN':
condition = x[:,0]
x = self.norm(x, condition)
x = self.act(self.w0(x)) * self.w1(x)
x = self.w2(x)
return x
class SelfAttention(nn.Module):
def __init__(self, config):
super().__init__()
assert config.dim % config.num_attention_heads == 0
self.num_heads = config.num_attention_heads
self.head_dim = config.dim // config.num_attention_heads
if hasattr(config, "self_att_prompt") and config.self_att_prompt:
self.condition_key_value = Linear(config.clip_dim, 2 * config.dim, bias = False)
if config.norm_type == 'LN':
self.norm_type = 'LN'
self.norm = LayerNorm(config.dim)
elif config.norm_type == 'RMSN':
self.norm_type = 'RMSN'
self.norm = RMSNorm(config.dim)
elif config.norm_type == 'TDRMSN':
self.norm_type = 'TDRMSN'
self.norm = TDRMSNorm(config.dim)
elif config.norm_type == 'ADARMSN':
self.norm_type = 'ADARMSN'
self.norm = AdaRMSNorm(config.dim, config.dim)
self.pe_type = config.pe_type
if config.pe_type == 'Axial_RoPE':
self.pos_emb = AxialRoPE(self.head_dim, self.num_heads)
self.qk_norm = QKNorm(self.num_heads)
self.query_key_value = Linear(config.dim, 3 * config.dim, bias = False)
self.dense = Linear(config.dim, config.dim)
def forward(self, x, condition_embeds, condition_masks, pos=None):
B, N, C = x.shape
if self.norm_type == 'LN' or self.norm_type == 'RMSN' or self.norm_type == 'TDRMSN':
qkv = self.query_key_value(self.norm(x))
elif self.norm_type == 'ADARMSN':
condition = x[:,0]
qkv = self.query_key_value(self.norm(x, condition))
q, k, v = qkv.reshape(B, N, 3 * self.num_heads, self.head_dim).permute(0, 2, 1, 3).float().chunk(3, dim = 1)
if self.pe_type == 'Axial_RoPE':
q = self.pos_emb(self.qk_norm(q), pos)
k = self.pos_emb(self.qk_norm(k), pos)
if condition_embeds is not None:
_, L, D = condition_embeds.shape
kcvc = self.condition_key_value(condition_embeds)
kc, vc = kcvc.reshape(B, L, 2 * self.num_heads, self.head_dim).permute(0, 2, 1, 3).float().chunk(2, dim = 1)
k = torch.cat([k, kc], dim = 2)
v = torch.cat([v, vc], dim = 2)
mask = torch.cat([torch.ones(B, N, dtype = torch.bool, device = condition_masks.device), condition_masks], dim = -1)
mask = mask[:, None, None, :]
else:
mask = None
x = F.scaled_dot_product_attention(q, k, v, attn_mask = mask)
x = self.dense(x.permute(0, 2, 1, 3).reshape(B, N, C))
return x
class CrossAttention(nn.Module):
def __init__(self, config):
super().__init__()
assert config.dim % config.num_attention_heads == 0
self.num_heads = config.num_attention_heads
self.head_dim = config.dim // config.num_attention_heads
if config.norm_type == 'LN':
self.norm_type = 'LN'
self.norm_q = LayerNorm(config.dim)
self.norm_kv = LayerNorm(config.dim)
elif config.norm_type == 'RMSN':
self.norm_type = 'RMSN'
self.norm_q = RMSNorm(config.dim)
self.norm_kv = RMSNorm(config.dim)
elif config.norm_type == 'TDRMSN':
self.norm_type = 'TDRMSN'
self.norm_q = TDRMSNorm(config.dim)
self.norm_kv = TDRMSNorm(config.dim)
elif config.norm_type == 'ADARMSN':
self.norm_type = 'ADARMSN'
self.norm_q = AdaRMSNorm(config.dim, config.dim)
self.norm_kv = AdaRMSNorm(config.dim, config.dim)
self.pe_type = config.pe_type
if config.pe_type == 'Axial_RoPE':
self.pos_emb = AxialRoPE(self.head_dim, self.num_heads)
self.qk_norm = QKNorm(self.num_heads)
# Query from images (x)
self.query = Linear(config.dim, config.dim, bias = False)
# Key and Value come from image_latent
self.key_value = Linear(config.dim, 2 * config.dim, bias = False)
self.dense = Linear(config.dim, config.dim)
self.weight_mlp = nn.Sequential(
Linear(config.dim * 2, config.dim // 4),
nn.GELU(),
Linear(config.dim // 4, 1),
nn.Sigmoid()
)
def forward(self, x, image_latent, pos=None):
"""
Args:
x: (B, N, C) - Features of the images, used as the query.
image_latent: (B, N, C) - The latent of the input image (already processed into sequence form), used as the key and value.
pos: Position encoding (used for the query and key because they are spatially aligned)
"""
B, N, C = x.shape
B_latent, N_latent, C_latent = image_latent.shape
assert B == B_latent and N == N_latent and C == C_latent, \
f"Shape mismatch: x={x.shape}, image_latent={image_latent.shape}"
x_input = x
# Query from x (images)
if self.norm_type == 'LN' or self.norm_type == 'RMSN' or self.norm_type == 'TDRMSN':
q = self.query(self.norm_q(x))
elif self.norm_type == 'ADARMSN':
condition = x[:,0]
q = self.query(self.norm_q(x, condition))
q = q.reshape(B, N, self.num_heads, self.head_dim).permute(0, 2, 1, 3).float()
# Key and Value come from image_latent
if self.norm_type == 'LN' or self.norm_type == 'RMSN' or self.norm_type == 'TDRMSN':
kv = self.key_value(self.norm_kv(image_latent))
elif self.norm_type == 'ADARMSN':
condition = image_latent[:,0]
kv = self.key_value(self.norm_kv(image_latent, condition))
k, v = kv.reshape(B, N, 2 * self.num_heads, self.head_dim).permute(0, 2, 1, 3).float().chunk(2, dim = 1)
if self.pe_type == 'Axial_RoPE':
q = self.pos_emb(self.qk_norm(q), pos)
k = self.pos_emb(self.qk_norm(k), pos)
# Cross-attention: q from x, k/v from image_latent
atten_output = F.scaled_dot_product_attention(q, k, v, attn_mask = None)
ca_output = self.dense(atten_output.permute(0, 2, 1, 3).reshape(B, N, C))
# token-level weight
combined = torch.cat([x_input, ca_output], dim = -1)
ca_weights = self.weight_mlp(combined)
return ca_output, ca_weights
class TransformerBlock(nn.Module):
def __init__(self, config):
super().__init__()
self.block1 = SelfAttention(config)
# Optionally create CrossAttention (if use_cross_attention=True)
if hasattr(config, 'use_cross_attention') and config.use_cross_attention:
self.block1_cross = CrossAttention(config)
self.use_cross_attention = True
else:
self.block1_cross = None
self.use_cross_attention = False
self.block2 = MLPBlock(config)
self.dropout = nn.Dropout(config.dropout_prob)
self.gradient_checking = config.gradient_checking
def forward(self, x, condition_embeds=None, condition_masks=None, pos=None, image_latent=None, use_cross_atten_mask=None):
if self.gradient_checking:
return torch.utils.checkpoint.checkpoint(
self._forward, x, condition_embeds, condition_masks, pos, image_latent, use_cross_atten_mask
)
else:
return self._forward(x, condition_embeds, condition_masks, pos, image_latent, use_cross_atten_mask)
def _forward(self, x, condition_embeds=None, condition_masks=None, pos=None, image_latent=None, use_cross_atten_mask=None):
x = x + self.dropout(self.block1(x, condition_embeds, condition_masks, pos))
# Cross-Attention (optional, if enabled and image_latent is not None, and use_cross_atten_mask is not True)
# use_cross_atten_mask=True indicates skipping cross attention
# use_cross_atten_mask=None or False indicates using cross attention (if image_latent is present)
should_skip_cross_attn = use_cross_atten_mask is not None and use_cross_atten_mask.all() if isinstance(use_cross_atten_mask, torch.Tensor) else (use_cross_atten_mask == True if use_cross_atten_mask is not None else False)
if self.use_cross_attention and self.block1_cross is not None and image_latent is not None and not should_skip_cross_attn:
if use_cross_atten_mask is not None and isinstance(use_cross_atten_mask, torch.Tensor) and not use_cross_atten_mask.all():
ca_output, ca_weights = self.block1_cross(x, image_latent, pos)
mask_expanded = use_cross_atten_mask.view(-1, 1, 1).to(x.device)
ca_output = ca_output * (1 - mask_expanded.float())
ca_weights = ca_weights * (1 - mask_expanded.float())
x = x + self.dropout(ca_output * ca_weights)
else:
ca_output, ca_weights = self.block1_cross(x, image_latent, pos)
x = x + self.dropout(ca_output * ca_weights)
elif should_skip_cross_attn:
pass
x = x + self.dropout(self.block2(x))
return x
class ConvNeXtBlock(nn.Module):
def __init__(self, config):
super().__init__()
self.block1 = nn.Sequential(
ChannelFirst(),
nn.Conv2d(config.dim, config.dim, kernel_size = config.kernel_size, padding = config.kernel_size // 2, stride = 1, groups = config.dim),
ChannelLast()
)
self.block2 = MLPBlock(config)
self.dropout = nn.Dropout(config.dropout_prob)
self.gradient_checking = config.gradient_checking
def forward(self, x, condition_embeds, condition_masks, pos):
if self.gradient_checking:
return torch.utils.checkpoint.checkpoint(self._forward, x)
else:
return self._forward(x)
def _forward(self, x):
x = x + self.dropout(self.block1(x))
x = x + self.dropout(self.block2(x))
return x
class Stage(nn.Module):
def __init__(self, channels, config, lowres_dim = None, lowres_height = None):
super().__init__()
if config.block_type == "TransformerBlock":
self.encoder_cls = TransformerBlock
elif config.block_type == "ConvNeXtBlock":
self.encoder_cls = ConvNeXtBlock
else:
raise Exception()
self.pe_type = config.pe_type
self.input_layer = nn.Sequential(
EvenDownInterpolate(config.image_input_ratio),
nn.Conv2d(channels, config.dim, kernel_size = config.input_feature_ratio, stride = config.input_feature_ratio),
ChannelLast(),
PositionEmbeddings(config.max_height, config.max_width, config.dim)
)
if self.encoder_cls is TransformerBlock and hasattr(config, 'use_cross_attention') and config.use_cross_attention:
self.image_latent_layer = nn.Sequential(
EvenDownInterpolate(config.image_input_ratio),
nn.Conv2d(channels, config.dim, kernel_size = config.input_feature_ratio, stride = config.input_feature_ratio),
ChannelLast(),
PositionEmbeddings(config.max_height, config.max_width, config.dim)
)
else:
self.image_latent_layer = None
if lowres_dim is not None:
ratio = config.max_height // lowres_height
self.upsample = nn.Sequential(
LayerNorm(lowres_dim),
PixelShuffleUpsample(lowres_dim, config.dim, ratio = ratio),
LayerNorm(config.dim),
)
self.blocks = nn.ModuleList([self.encoder_cls(config) for _ in range(config.num_blocks // 2 * 2 + 1)])
self.skip_denses = nn.ModuleList([Linear(config.dim * 2, config.dim) for _ in range(config.num_blocks // 2)])
self.output_layer = nn.Sequential(
LayerNorm(config.dim),
ChannelFirst(),
nn.Conv2d(config.dim, channels, kernel_size = config.final_kernel_size, padding = config.final_kernel_size // 2),
)
self.tensor_true = torch.nn.Parameter(torch.tensor([-1.0])) if self.encoder_cls is TransformerBlock else None
self.tensor_false = torch.nn.Parameter(torch.tensor([1.0])) if self.encoder_cls is TransformerBlock else None
def forward(self, images, lowres_skips = None, condition_context = None, condition_embeds = None, condition_masks = None, null_indicator=None, image_latent=None, use_cross_atten_mask=None):
if self.pe_type == 'Axial_RoPE' and self.encoder_cls is TransformerBlock:
x = self.input_layer(images)
_, H, W, _ = x.shape
pos = make_axial_pos(H, W)
if image_latent is not None and self.image_latent_layer is not None:
image_latent_processed = self.image_latent_layer(image_latent)
# image_latent_processed: (B, H, W, C)
B_latent, H_latent, W_latent, C_latent = image_latent_processed.shape
assert H == H_latent and W == W_latent, \
f"Spatial dimension mismatch: x={x.shape}, image_latent={image_latent_processed.shape}"
image_latent_seq = image_latent_processed.reshape(B_latent, H_latent * W_latent, C_latent)
else:
image_latent_seq = None
else:
x = self.input_layer(images)
pos = None
if image_latent is not None and self.image_latent_layer is not None:
image_latent_processed = self.image_latent_layer(image_latent)
B_latent, H_latent, W_latent, C_latent = image_latent_processed.shape
image_latent_seq = image_latent_processed.reshape(B_latent, H_latent * W_latent, C_latent)
else:
image_latent_seq = None
if lowres_skips is not None:
x = x + self.upsample(lowres_skips)
if self.encoder_cls is TransformerBlock:
B, H, W, C = x.shape
x = x.reshape(B, H * W, C)
if null_indicator is not None:
indicator_tensor = torch.where(null_indicator, self.tensor_true, self.tensor_false)
indicator_tensor = indicator_tensor.view(B, 1, 1).expand(-1, -1, C)
x = torch.cat([indicator_tensor, x], dim = 1)
if image_latent_seq is not None:
indicator_latent = indicator_tensor
image_latent_seq = torch.cat([indicator_latent, image_latent_seq], dim = 1)
external_skips = [x]
num_blocks = len(self.blocks)
in_blocks = self.blocks[:(num_blocks // 2)]
mid_block = self.blocks[(num_blocks // 2)]
out_blocks = self.blocks[(num_blocks // 2 + 1):]
skips = []
for block in in_blocks:
if isinstance(block, TransformerBlock):
x = block(x, condition_embeds=condition_embeds, condition_masks=condition_masks, pos=pos, image_latent=image_latent_seq, use_cross_atten_mask=use_cross_atten_mask)
else:
x = block(x, condition_embeds, condition_masks, pos)
external_skips.append(x)
skips.append(x)
# mid_block
if isinstance(mid_block, TransformerBlock):
x = mid_block(x, condition_embeds=condition_embeds, condition_masks=condition_masks, pos=pos, image_latent=image_latent_seq, use_cross_atten_mask=use_cross_atten_mask)
else:
x = mid_block(x, condition_embeds, condition_masks, pos)
external_skips.append(x)
for dense, block in check_zip(self.skip_denses, out_blocks):
x = dense(torch.cat([x, skips.pop()], dim = -1))
if isinstance(block, TransformerBlock):
x = block(x, condition_embeds=condition_embeds, condition_masks=condition_masks, pos=pos, image_latent=image_latent_seq, use_cross_atten_mask=use_cross_atten_mask)
else:
x = block(x, condition_embeds, condition_masks, pos)
external_skips.append(x)
if self.encoder_cls is TransformerBlock:
if null_indicator is not None:
x = x[:, 1:, :]
external_skips = [skip[:, 1:, :] for skip in external_skips]
if image_latent_seq is not None:
image_latent_seq = image_latent_seq[:, 1:, :]
x = x.reshape(B, H, W, C)
external_skips = [skip.reshape(B, H, W, C) for skip in external_skips]
output = self.output_layer(x)
return output, external_skips
class MRModel(nn.Module):
def __init__(self, config):
super().__init__()
self.channels = config.channels
self.block_grad_to_lowres = config.block_grad_to_lowres
self.adapter = nn.Sequential(
nn.Linear(config.adapter_in_embed, config.clip_dim),
)
self.token_compressor = nn.Linear( 576, config.num_clip_token)
for stage_config in config.stage_configs:
if hasattr(config, "clip_dim"):
stage_config.clip_dim = config.clip_dim
if hasattr(config, "num_clip_token"):
stage_config.num_clip_token = config.num_clip_token
if hasattr(config, "gradient_checking"):
stage_config.gradient_checking = config.gradient_checking
if hasattr(config, "pe_type"):
stage_config.pe_type = config.pe_type
else:
stage_config.pe_type = 'APE'
if hasattr(config, "norm_type"):
stage_config.norm_type = config.norm_type
else:
stage_config.norm_type = 'LN'
#### diffusion model
if hasattr(config, "not_training_diff") and config.not_training_diff:
self.has_diff = False
else:
self.has_diff = True
lowres_dims = [None] + [stage_config.dim * (stage_config.num_blocks // 2 * 2 + 2) for stage_config in config.stage_configs[:-1]]
lowres_heights = [None] + [stage_config.max_height for stage_config in config.stage_configs[:-1]]
self.stages = nn.ModuleList([
Stage(self.channels, stage_config, lowres_dim = lowres_dim, lowres_height=lowres_height)
for stage_config, lowres_dim, lowres_height in check_zip(config.stage_configs, lowres_dims, lowres_heights)]
)
#### Text VE
if hasattr(config.VAE, "num_down_sample_block"):
down_sample_block = config.VAE.num_down_sample_block
else:
down_sample_block = 3
self.context_encoder = TransEncoder(d_model=config.clip_dim, N=config.VAE.num_blocks, num_token=config.num_clip_token,
head_num=config.VAE.num_attention_heads, d_ff=config.VAE.hidden_dim,
latten_size=config.channels*config.stage_configs[-1].max_height*config.stage_configs[-1].max_width * 2,
down_sample_block=down_sample_block, dropout=config.VAE.dropout_prob, last_norm=False)
#### image encoder to train VE
self.open_clip, _, self.open_clip_preprocess = open_clip.create_model_and_transforms('ViT-L-16-SigLIP-256', pretrained=None)
if config.stage_configs[-1].max_width==32:
# for 256px generation
self.open_clip_output = Mlp(in_features=1024,
hidden_features=config.channels*config.stage_configs[-1].max_height*config.stage_configs[-1].max_width,
out_features=config.channels*config.stage_configs[-1].max_height*config.stage_configs[-1].max_width,
norm_layer=nn.LayerNorm,
)
else:
# for 512px generation
self.open_clip_output = Adaptor(input_dim=1024,
tar_dim=config.channels*config.stage_configs[-1].max_height*config.stage_configs[-1].max_width
)
del self.open_clip.text
del self.open_clip.logit_bias
def _forward(self, images, log_snr, condition_context = None, condition_text_embeds = None, condition_text_masks = None, condition_drop_prob = None, null_indicator=None, image_latent=None, use_cross_atten_mask=None):
if self.has_diff:
TimeDependentParameter.seed_time(self, log_snr)
assert condition_context is None
assert condition_text_embeds is None
if condition_text_embeds is not None:
condition_embeds = self.text_conditioning(condition_text_embeds)
condition_masks = condition_text_masks
else:
condition_embeds = None
condition_masks = None
outputs = []
lowres_skips = None
for stage in self.stages:
output, lowres_skips = stage(
images,
lowres_skips = lowres_skips,
condition_context = condition_context,
condition_embeds = condition_embeds,
condition_masks = condition_masks,
null_indicator=null_indicator,
image_latent=image_latent,
use_cross_atten_mask=use_cross_atten_mask
)
outputs.append(output)
lowres_skips = torch.cat(lowres_skips, dim = -1)
if self.block_grad_to_lowres:
lowres_skips = lowres_skips.detach()
return outputs
else:
return [images]
def _reparameterize(self, mu, logvar):
std = torch.exp(0.5 * logvar)
eps = torch.randn_like(std)
return eps * std + mu
def _text_encoder(self, condition_context, tar_shape, mask):
output = self.context_encoder(condition_context, mask)
mu, log_var = torch.chunk(output, 2, dim=-1)
z = self._reparameterize(mu, log_var)
return [z, mu, log_var]
def _text_decoder(self, condition_enbedding, tar_shape):
context_token = self.context_decoder(condition_enbedding)
return context_token
def _img_clip(self, image_input):
image_latent = self.open_clip.encode_image(image_input)
image_latent = self.open_clip_output(image_latent)
return image_latent, self.open_clip.logit_scale
def forward(self, x, t = None, log_snr = None, text_encoder=False, text_decoder=False, image_clip=False, shape=None, mask=None, null_indicator=None, image_latent=None, use_cross_atten_mask=None):
if text_encoder:
# apply adapter layer
adapted_cond = self.adapter(x)
adapted_cond = adapted_cond.transpose(1, 2)
adapted_cond = self.token_compressor(adapted_cond)
adapted_cond = adapted_cond.transpose(1, 2)
if mask is not None and mask.shape[1] == 576:
mask = mask[:, :77]
return self._text_encoder(condition_context = adapted_cond, tar_shape=shape, mask=mask)
elif text_decoder:
return self._text_decoder(condition_enbedding = x, tar_shape=shape) # mask is not needed for decoder
elif image_clip:
return self._img_clip(image_input = x)
else:
assert log_snr.dtype == torch.float32
return self._forward(images = x, log_snr = log_snr, null_indicator=null_indicator, image_latent=image_latent, use_cross_atten_mask=use_cross_atten_mask) |