mirror of https://github.com/vladmandic/automatic
338 lines
12 KiB
Python
338 lines
12 KiB
Python
### original <https://github.com/TencentARC/PhotoMaker/blob/main/photomaker/model_v2.py>
|
|
|
|
import math
|
|
import torch
|
|
import torch.nn as nn
|
|
from transformers.models.clip.modeling_clip import CLIPVisionModelWithProjection
|
|
from transformers.models.clip.configuration_clip import CLIPVisionConfig
|
|
from einops import rearrange
|
|
from einops.layers.torch import Rearrange
|
|
|
|
|
|
class FacePerceiverResampler(torch.nn.Module):
|
|
def __init__(
|
|
self,
|
|
*,
|
|
dim=768,
|
|
depth=4,
|
|
dim_head=64,
|
|
heads=16,
|
|
embedding_dim=1280,
|
|
output_dim=768,
|
|
ff_mult=4,
|
|
):
|
|
super().__init__()
|
|
self.proj_in = torch.nn.Linear(embedding_dim, dim)
|
|
self.proj_out = torch.nn.Linear(dim, output_dim)
|
|
self.norm_out = torch.nn.LayerNorm(output_dim)
|
|
self.layers = torch.nn.ModuleList([])
|
|
for _ in range(depth):
|
|
self.layers.append(
|
|
torch.nn.ModuleList(
|
|
[
|
|
PerceiverAttention(dim=dim, dim_head=dim_head, heads=heads),
|
|
FeedForward(dim=dim, mult=ff_mult),
|
|
]
|
|
)
|
|
)
|
|
|
|
def forward(self, latents, x):
|
|
x = self.proj_in(x)
|
|
for attn, ff in self.layers:
|
|
latents = attn(x, latents) + latents
|
|
latents = ff(latents) + latents
|
|
latents = self.proj_out(latents)
|
|
return self.norm_out(latents)
|
|
|
|
# FFN
|
|
def FeedForward(dim, mult=4):
|
|
inner_dim = int(dim * mult)
|
|
return nn.Sequential(
|
|
nn.LayerNorm(dim),
|
|
nn.Linear(dim, inner_dim, bias=False),
|
|
nn.GELU(),
|
|
nn.Linear(inner_dim, dim, bias=False),
|
|
)
|
|
|
|
|
|
def reshape_tensor(x, heads):
|
|
bs, length, _width = x.shape
|
|
# (bs, length, width) --> (bs, length, n_heads, dim_per_head)
|
|
x = x.view(bs, length, heads, -1)
|
|
# (bs, length, n_heads, dim_per_head) --> (bs, n_heads, length, dim_per_head)
|
|
x = x.transpose(1, 2)
|
|
# (bs, n_heads, length, dim_per_head) --> (bs*n_heads, length, dim_per_head)
|
|
x = x.reshape(bs, heads, length, -1)
|
|
return x
|
|
|
|
|
|
class PerceiverAttention(nn.Module):
|
|
def __init__(self, *, dim, dim_head=64, heads=8):
|
|
super().__init__()
|
|
self.scale = dim_head**-0.5
|
|
self.dim_head = dim_head
|
|
self.heads = heads
|
|
inner_dim = dim_head * heads
|
|
|
|
self.norm1 = nn.LayerNorm(dim)
|
|
self.norm2 = nn.LayerNorm(dim)
|
|
|
|
self.to_q = nn.Linear(dim, inner_dim, bias=False)
|
|
self.to_kv = nn.Linear(dim, inner_dim * 2, bias=False)
|
|
self.to_out = nn.Linear(inner_dim, dim, bias=False)
|
|
|
|
def forward(self, x, latents):
|
|
"""
|
|
Args:
|
|
x (torch.Tensor): image features
|
|
shape (b, n1, D)
|
|
latent (torch.Tensor): latent features
|
|
shape (b, n2, D)
|
|
"""
|
|
x = self.norm1(x)
|
|
latents = self.norm2(latents)
|
|
|
|
b, l, _ = latents.shape
|
|
|
|
q = self.to_q(latents)
|
|
kv_input = torch.cat((x, latents), dim=-2)
|
|
k, v = self.to_kv(kv_input).chunk(2, dim=-1)
|
|
|
|
q = reshape_tensor(q, self.heads)
|
|
k = reshape_tensor(k, self.heads)
|
|
v = reshape_tensor(v, self.heads)
|
|
|
|
# attention
|
|
scale = 1 / math.sqrt(math.sqrt(self.dim_head))
|
|
weight = (q * scale) @ (k * scale).transpose(-2, -1) # More stable with f16 than dividing afterwards
|
|
weight = torch.softmax(weight.float(), dim=-1).type(weight.dtype)
|
|
out = weight @ v
|
|
|
|
out = out.permute(0, 2, 1, 3).reshape(b, l, -1)
|
|
|
|
return self.to_out(out)
|
|
|
|
|
|
class Resampler(nn.Module):
|
|
def __init__(
|
|
self,
|
|
dim=1024,
|
|
depth=8,
|
|
dim_head=64,
|
|
heads=16,
|
|
num_queries=8,
|
|
embedding_dim=768,
|
|
output_dim=1024,
|
|
ff_mult=4,
|
|
max_seq_len: int = 257, # CLIP tokens + CLS token
|
|
apply_pos_emb: bool = False,
|
|
num_latents_mean_pooled: int = 0, # number of latents derived from mean pooled representation of the sequence
|
|
):
|
|
super().__init__()
|
|
self.pos_emb = nn.Embedding(max_seq_len, embedding_dim) if apply_pos_emb else None
|
|
|
|
self.latents = nn.Parameter(torch.randn(1, num_queries, dim) / dim**0.5)
|
|
|
|
self.proj_in = nn.Linear(embedding_dim, dim)
|
|
|
|
self.proj_out = nn.Linear(dim, output_dim)
|
|
self.norm_out = nn.LayerNorm(output_dim)
|
|
|
|
self.to_latents_from_mean_pooled_seq = (
|
|
nn.Sequential(
|
|
nn.LayerNorm(dim),
|
|
nn.Linear(dim, dim * num_latents_mean_pooled),
|
|
Rearrange("b (n d) -> b n d", n=num_latents_mean_pooled),
|
|
)
|
|
if num_latents_mean_pooled > 0
|
|
else None
|
|
)
|
|
|
|
self.layers = nn.ModuleList([])
|
|
for _ in range(depth):
|
|
self.layers.append(
|
|
nn.ModuleList(
|
|
[
|
|
PerceiverAttention(dim=dim, dim_head=dim_head, heads=heads),
|
|
FeedForward(dim=dim, mult=ff_mult),
|
|
]
|
|
)
|
|
)
|
|
|
|
def forward(self, x):
|
|
if self.pos_emb is not None:
|
|
n, device = x.shape[1], x.device
|
|
pos_emb = self.pos_emb(torch.arange(n, device=device))
|
|
x = x + pos_emb
|
|
|
|
latents = self.latents.repeat(x.size(0), 1, 1)
|
|
|
|
x = self.proj_in(x)
|
|
|
|
if self.to_latents_from_mean_pooled_seq:
|
|
meanpooled_seq = masked_mean(x, dim=1, mask=torch.ones(x.shape[:2], device=x.device, dtype=torch.bool))
|
|
meanpooled_latents = self.to_latents_from_mean_pooled_seq(meanpooled_seq)
|
|
latents = torch.cat((meanpooled_latents, latents), dim=-2)
|
|
|
|
for attn, ff in self.layers:
|
|
latents = attn(x, latents) + latents
|
|
latents = ff(latents) + latents
|
|
|
|
latents = self.proj_out(latents)
|
|
return self.norm_out(latents)
|
|
|
|
|
|
def masked_mean(t, *, dim, mask=None):
|
|
if mask is None:
|
|
return t.mean(dim=dim)
|
|
|
|
denom = mask.sum(dim=dim, keepdim=True)
|
|
mask = rearrange(mask, "b n -> b n 1")
|
|
masked_t = t.masked_fill(~mask, 0.0)
|
|
|
|
return masked_t.sum(dim=dim) / denom.clamp(min=1e-5)
|
|
|
|
|
|
VISION_CONFIG_DICT = {
|
|
"hidden_size": 1024,
|
|
"intermediate_size": 4096,
|
|
"num_attention_heads": 16,
|
|
"num_hidden_layers": 24,
|
|
"patch_size": 14,
|
|
"projection_dim": 768
|
|
}
|
|
|
|
|
|
class MLP(nn.Module):
|
|
def __init__(self, in_dim, out_dim, hidden_dim, use_residual=True):
|
|
super().__init__()
|
|
if use_residual:
|
|
assert in_dim == out_dim
|
|
self.layernorm = nn.LayerNorm(in_dim)
|
|
self.fc1 = nn.Linear(in_dim, hidden_dim)
|
|
self.fc2 = nn.Linear(hidden_dim, out_dim)
|
|
self.use_residual = use_residual
|
|
self.act_fn = nn.GELU()
|
|
|
|
def forward(self, x):
|
|
residual = x
|
|
x = self.layernorm(x)
|
|
x = self.fc1(x)
|
|
x = self.act_fn(x)
|
|
x = self.fc2(x)
|
|
if self.use_residual:
|
|
x = x + residual
|
|
return x
|
|
|
|
|
|
class QFormerPerceiver(nn.Module):
|
|
def __init__(self, id_embeddings_dim, cross_attention_dim, num_tokens, embedding_dim=1024, use_residual=True, ratio=4):
|
|
super().__init__()
|
|
|
|
self.num_tokens = num_tokens
|
|
self.cross_attention_dim = cross_attention_dim
|
|
self.use_residual = use_residual
|
|
self.token_proj = nn.Sequential(
|
|
nn.Linear(id_embeddings_dim, id_embeddings_dim*ratio),
|
|
nn.GELU(),
|
|
nn.Linear(id_embeddings_dim*ratio, cross_attention_dim*num_tokens),
|
|
)
|
|
self.token_norm = nn.LayerNorm(cross_attention_dim)
|
|
self.perceiver_resampler = FacePerceiverResampler(
|
|
dim=cross_attention_dim,
|
|
depth=4,
|
|
dim_head=128,
|
|
heads=cross_attention_dim // 128,
|
|
embedding_dim=embedding_dim,
|
|
output_dim=cross_attention_dim,
|
|
ff_mult=4,
|
|
)
|
|
|
|
def forward(self, x, last_hidden_state):
|
|
x = self.token_proj(x)
|
|
x = x.reshape(-1, self.num_tokens, self.cross_attention_dim)
|
|
x = self.token_norm(x) # cls token
|
|
out = self.perceiver_resampler(x, last_hidden_state) # retrieve from patch tokens
|
|
if self.use_residual:
|
|
out = x + 1.0 * out
|
|
return out
|
|
|
|
|
|
class FuseModule(nn.Module):
|
|
def __init__(self, embed_dim):
|
|
super().__init__()
|
|
self.mlp1 = MLP(embed_dim * 2, embed_dim, embed_dim, use_residual=False)
|
|
self.mlp2 = MLP(embed_dim, embed_dim, embed_dim, use_residual=True)
|
|
self.layer_norm = nn.LayerNorm(embed_dim)
|
|
|
|
def fuse_fn(self, prompt_embeds, id_embeds):
|
|
stacked_id_embeds = torch.cat([prompt_embeds, id_embeds], dim=-1)
|
|
stacked_id_embeds = self.mlp1(stacked_id_embeds) + prompt_embeds
|
|
stacked_id_embeds = self.mlp2(stacked_id_embeds)
|
|
stacked_id_embeds = self.layer_norm(stacked_id_embeds)
|
|
return stacked_id_embeds
|
|
|
|
def forward(
|
|
self,
|
|
prompt_embeds,
|
|
id_embeds,
|
|
class_tokens_mask,
|
|
) -> torch.Tensor:
|
|
# id_embeds shape: [b, max_num_inputs, 1, 2048]
|
|
id_embeds = id_embeds.to(prompt_embeds.dtype)
|
|
num_inputs = class_tokens_mask.sum().unsqueeze(0)
|
|
batch_size, max_num_inputs = id_embeds.shape[:2]
|
|
# seq_length: 77
|
|
seq_length = prompt_embeds.shape[1]
|
|
# flat_id_embeds shape: [b*max_num_inputs, 1, 2048]
|
|
flat_id_embeds = id_embeds.view(
|
|
-1, id_embeds.shape[-2], id_embeds.shape[-1]
|
|
)
|
|
# valid_id_mask [b*max_num_inputs]
|
|
valid_id_mask = (
|
|
torch.arange(max_num_inputs, device=flat_id_embeds.device)[None, :]
|
|
< num_inputs[:, None]
|
|
)
|
|
valid_id_embeds = flat_id_embeds[valid_id_mask.flatten()]
|
|
|
|
prompt_embeds = prompt_embeds.view(-1, prompt_embeds.shape[-1])
|
|
class_tokens_mask = class_tokens_mask.view(-1)
|
|
valid_id_embeds = valid_id_embeds.view(-1, valid_id_embeds.shape[-1])
|
|
# slice out the image token embeddings
|
|
image_token_embeds = prompt_embeds[class_tokens_mask]
|
|
stacked_id_embeds = self.fuse_fn(image_token_embeds, valid_id_embeds)
|
|
assert class_tokens_mask.sum() == stacked_id_embeds.shape[0], f"{class_tokens_mask.sum()} != {stacked_id_embeds.shape[0]}"
|
|
prompt_embeds.masked_scatter_(class_tokens_mask[:, None], stacked_id_embeds.to(prompt_embeds.dtype))
|
|
updated_prompt_embeds = prompt_embeds.view(batch_size, seq_length, -1)
|
|
return updated_prompt_embeds
|
|
|
|
|
|
class PhotoMakerIDEncoder_CLIPInsightfaceExtendtoken(CLIPVisionModelWithProjection):
|
|
def __init__(self, id_embeddings_dim=512):
|
|
super().__init__(CLIPVisionConfig(**VISION_CONFIG_DICT))
|
|
self.fuse_module = FuseModule(2048)
|
|
self.visual_projection_2 = nn.Linear(1024, 1280, bias=False)
|
|
|
|
cross_attention_dim = 2048
|
|
# projection
|
|
self.num_tokens = 2
|
|
self.cross_attention_dim = cross_attention_dim
|
|
self.qformer_perceiver = QFormerPerceiver(
|
|
id_embeddings_dim,
|
|
cross_attention_dim,
|
|
self.num_tokens,
|
|
)
|
|
|
|
def forward(self, id_pixel_values, prompt_embeds, class_tokens_mask, id_embeds): # pylint: disable=arguments-differ, arguments-renamed
|
|
b, num_inputs, c, h, w = id_pixel_values.shape
|
|
id_pixel_values = id_pixel_values.view(b * num_inputs, c, h, w)
|
|
|
|
last_hidden_state = self.vision_model(id_pixel_values)[0]
|
|
id_embeds = id_embeds.view(b * num_inputs, -1)
|
|
|
|
id_embeds = self.qformer_perceiver(id_embeds, last_hidden_state)
|
|
id_embeds = id_embeds.view(b, num_inputs, self.num_tokens, -1)
|
|
updated_prompt_embeds = self.fuse_module(prompt_embeds, id_embeds, class_tokens_mask)
|
|
|
|
return updated_prompt_embeds
|