| import math
|
| from dataclasses import dataclass
|
|
|
| import torch
|
| from einops import rearrange
|
| from torch import Tensor, nn
|
|
|
| from ..math import attention, rope
|
|
|
| def get_linear_split_map(
|
| hidden_size: int = 3072,
|
| mlp_ratio: float = 4.0,
|
| single_linear1_mlp_ratio: float | None = None,
|
| linear1_mlp_ratio: float | None = None,
|
| ):
|
| mlp_hidden_dim = int(hidden_size * mlp_ratio)
|
| if linear1_mlp_ratio is None and mlp_ratio == 3.0:
|
| lin1_ratio = mlp_ratio * 2
|
| else:
|
| lin1_ratio = linear1_mlp_ratio if linear1_mlp_ratio is not None else mlp_ratio
|
| lin1_mlp = int(hidden_size * (single_linear1_mlp_ratio if single_linear1_mlp_ratio is not None else lin1_ratio))
|
| split_linear_modules_map = {
|
| "qkv": {"mapped_modules": ["q", "k", "v"], "split_sizes": [hidden_size, hidden_size, hidden_size]},
|
| "linear1": {
|
| "mapped_modules": ["linear1_attn_q", "linear1_attn_k", "linear1_attn_v", "linear1_mlp"],
|
| "split_sizes": [hidden_size, hidden_size, hidden_size, lin1_mlp],
|
| },
|
| "linear1_qkv": {
|
| "mapped_modules": ["linear1_attn_q", "linear1_attn_k", "linear1_attn_v"],
|
| "split_sizes": [hidden_size, hidden_size, hidden_size],
|
| },
|
| }
|
| return split_linear_modules_map
|
|
|
|
|
| class EmbedND(nn.Module):
|
| def __init__(self, dim: int, theta: int, axes_dim: list[int]):
|
| super().__init__()
|
| self.dim = dim
|
| self.theta = theta
|
| self.axes_dim = axes_dim
|
|
|
| def forward(self, ids: Tensor) -> Tensor:
|
| n_axes = ids.shape[-1]
|
| emb = torch.cat(
|
| [rope(ids[..., i], self.axes_dim[i], self.theta) for i in range(n_axes)],
|
| dim=-3,
|
| )
|
|
|
| return emb.unsqueeze(1)
|
|
|
| class EmbedNDFlux2(nn.Module):
|
| def __init__(self, dim: int, theta: int, axes_dim: list[int]):
|
| super().__init__()
|
| self.dim = dim
|
| self.theta = theta
|
| self.axes_dim = axes_dim
|
|
|
| def forward(self, ids: Tensor) -> Tensor:
|
| emb = torch.cat(
|
| [rope(ids[..., i], self.axes_dim[i], self.theta) for i in range(len(self.axes_dim))],
|
| dim=-3,
|
| )
|
|
|
| return emb.unsqueeze(1)
|
|
|
|
|
| def timestep_embedding(t: Tensor, dim, max_period=10000, time_factor: float = 1000.0):
|
| """
|
| Create sinusoidal timestep embeddings.
|
| :param t: a 1-D Tensor of N indices, one per batch element.
|
| These may be fractional.
|
| :param dim: the dimension of the output.
|
| :param max_period: controls the minimum frequency of the embeddings.
|
| :return: an (N, D) Tensor of positional embeddings.
|
| """
|
| t = time_factor * t
|
| half = dim // 2
|
| freqs = torch.exp(-math.log(max_period) * torch.arange(start=0, end=half, dtype=torch.float32) / half).to(
|
| t.device
|
| )
|
|
|
| args = t[:, None].float() * freqs[None]
|
| embedding = torch.cat([torch.cos(args), torch.sin(args)], dim=-1)
|
| if dim % 2:
|
| embedding = torch.cat([embedding, torch.zeros_like(embedding[:, :1])], dim=-1)
|
| if torch.is_floating_point(t):
|
| embedding = embedding.to(t)
|
| return embedding
|
|
|
|
|
| class MLPEmbedder(nn.Module):
|
| def __init__(self, in_dim: int, hidden_dim: int, bias: bool = True):
|
| super().__init__()
|
| self.in_layer = nn.Linear(in_dim, hidden_dim, bias=bias)
|
| self.silu = nn.SiLU()
|
| self.out_layer = nn.Linear(hidden_dim, hidden_dim, bias=bias)
|
|
|
| def forward(self, x: Tensor) -> Tensor:
|
| return self.out_layer(self.silu(self.in_layer(x)))
|
|
|
|
|
| class RMSNorm(torch.nn.Module):
|
| def __init__(self, dim: int):
|
| super().__init__()
|
| self.scale = nn.Parameter(torch.ones(dim))
|
|
|
| def forward(self, x: Tensor):
|
| x_dtype = x.dtype
|
| x = x.float()
|
| rrms = torch.rsqrt(torch.mean(x**2, dim=-1, keepdim=True) + 1e-6)
|
| return (x * rrms).to(dtype=x_dtype) * self.scale
|
|
|
|
|
|
|
| class QKNorm(torch.nn.Module):
|
| def __init__(self, dim: int):
|
| super().__init__()
|
| self.query_norm = RMSNorm(dim)
|
| self.key_norm = RMSNorm(dim)
|
|
|
| def forward(self, q: Tensor, k: Tensor, v: Tensor) -> tuple[Tensor, Tensor]:
|
| if k != None:
|
| return self.key_norm(k).to(v)
|
| else:
|
| return self.query_norm(q).to(v)
|
|
|
|
|
|
|
|
|
|
|
| class SelfAttention(nn.Module):
|
| def __init__(self, dim: int, num_heads: int = 8, qkv_bias: bool = False, proj_bias: bool = True):
|
| super().__init__()
|
| self.num_heads = num_heads
|
| head_dim = dim // num_heads
|
|
|
| self.qkv = nn.Linear(dim, dim * 3, bias=qkv_bias)
|
| self.norm = QKNorm(head_dim)
|
| self.proj = nn.Linear(dim, dim, bias=proj_bias)
|
|
|
| def forward(self, x: Tensor, pe: Tensor) -> Tensor:
|
| raise Exception("not implemented")
|
|
|
| @dataclass
|
| class ModulationOut:
|
| shift: Tensor
|
| scale: Tensor
|
| gate: Tensor
|
|
|
| class ChromaModulationOut(ModulationOut):
|
| @classmethod
|
| def from_offset(cls, tensor: torch.Tensor, offset: int = 0):
|
| return cls(
|
| shift=tensor[:, offset : offset + 1, :],
|
| scale=tensor[:, offset + 1 : offset + 2, :],
|
| gate=tensor[:, offset + 2 : offset + 3, :],
|
| )
|
|
|
|
|
| def split_mlp(mlp, x, divide = 8):
|
| x_shape = x.shape
|
| x = x.view(-1, x.shape[-1])
|
| chunk_size = int(x.shape[0]/divide)
|
| chunk_size = int(x_shape[1]/divide)
|
| x_chunks = torch.split(x, chunk_size)
|
| for i, x_chunk in enumerate(x_chunks):
|
| mlp_chunk = mlp[0](x_chunk)
|
| mlp_chunk = mlp[1](mlp_chunk)
|
| x_chunk[...] = mlp[2](mlp_chunk)
|
| return x.reshape(x_shape)
|
|
|
| class Modulation(nn.Module):
|
| def __init__(self, dim: int, double: bool, bias: bool = True):
|
| super().__init__()
|
| self.is_double = double
|
| self.multiplier = 6 if double else 3
|
| self.lin = nn.Linear(dim, self.multiplier * dim, bias=bias)
|
|
|
| def forward(self, vec: Tensor) -> tuple[ModulationOut, ModulationOut | None]:
|
| out = self.lin(nn.functional.silu(vec))[:, None, :].chunk(self.multiplier, dim=-1)
|
|
|
| return (
|
| ModulationOut(*out[:3]),
|
| ModulationOut(*out[3:]) if self.is_double else None,
|
| )
|
|
|
| class SiLUActivation(nn.Module):
|
| def __init__(self):
|
| super().__init__()
|
| self.gate_fn = nn.SiLU()
|
|
|
| def forward(self, x: Tensor) -> Tensor:
|
| x1, x2 = x.chunk(2, dim=-1)
|
| return self.gate_fn(x1) * x2
|
|
|
|
|
| class DoubleStreamBlock(nn.Module):
|
| def __init__(self, hidden_size: int, num_heads: int, mlp_ratio: float, qkv_bias: bool = False, shared_modulation = False, double_mlp_ratio: float | None = None, double_linear1_mlp_ratio: float | None = None, mod_bias: bool = True, mlp_bias: bool = True, proj_bias: bool = True):
|
| super().__init__()
|
| lin1_ratio = double_linear1_mlp_ratio
|
| if lin1_ratio is None:
|
| base_ratio = double_mlp_ratio if double_mlp_ratio is not None else mlp_ratio
|
| lin1_ratio = base_ratio * 2 if base_ratio == 3.0 else base_ratio
|
| mlp_hidden_dim = int(hidden_size * (double_mlp_ratio if double_mlp_ratio is not None else mlp_ratio))
|
| lin1_mlp_dim = int(hidden_size * lin1_ratio)
|
| self.num_heads = num_heads
|
| self.hidden_size = hidden_size
|
| self.shared_modulation = shared_modulation
|
| if not shared_modulation:
|
| self.img_mod = Modulation(hidden_size, double=True, bias=mod_bias)
|
| self.img_norm1 = nn.LayerNorm(hidden_size, elementwise_affine=False, eps=1e-6)
|
| self.img_attn = SelfAttention(dim=hidden_size, num_heads=num_heads, qkv_bias=qkv_bias, proj_bias=proj_bias)
|
|
|
| self.img_norm2 = nn.LayerNorm(hidden_size, elementwise_affine=False, eps=1e-6)
|
| if double_linear1_mlp_ratio is not None:
|
| self.img_mlp = nn.Sequential(
|
| nn.Linear(hidden_size, lin1_mlp_dim, bias=mlp_bias),
|
| SiLUActivation(),
|
| nn.Linear(lin1_mlp_dim // 2, hidden_size, bias=mlp_bias),
|
| )
|
| else:
|
| self.img_mlp = nn.Sequential(
|
| nn.Linear(hidden_size, lin1_mlp_dim, bias=mlp_bias),
|
| nn.GELU(approximate="tanh"),
|
| nn.Linear(mlp_hidden_dim, hidden_size, bias=mlp_bias),
|
| )
|
|
|
| if not shared_modulation:
|
| self.txt_mod = Modulation(hidden_size, double=True, bias=mod_bias)
|
| self.txt_norm1 = nn.LayerNorm(hidden_size, elementwise_affine=False, eps=1e-6)
|
| self.txt_attn = SelfAttention(dim=hidden_size, num_heads=num_heads, qkv_bias=qkv_bias, proj_bias=proj_bias)
|
|
|
| self.txt_norm2 = nn.LayerNorm(hidden_size, elementwise_affine=False, eps=1e-6)
|
| if double_linear1_mlp_ratio is not None:
|
| self.txt_mlp = nn.Sequential(
|
| nn.Linear(hidden_size, lin1_mlp_dim, bias=mlp_bias),
|
| SiLUActivation(),
|
| nn.Linear(lin1_mlp_dim // 2, hidden_size, bias=mlp_bias),
|
| )
|
| else:
|
| self.txt_mlp = nn.Sequential(
|
| nn.Linear(hidden_size, lin1_mlp_dim, bias=mlp_bias),
|
| nn.GELU(approximate="tanh"),
|
| nn.Linear(mlp_hidden_dim, hidden_size, bias=mlp_bias),
|
| )
|
|
|
| def forward(self, img: Tensor, txt: Tensor, vec: Tensor, pe: Tensor, *, NAG: dict | None = None) -> tuple[Tensor, Tensor]:
|
| if self.shared_modulation:
|
| (img_mod1, img_mod2), (txt_mod1, txt_mod2) = vec
|
| else:
|
| img_mod1, img_mod2 = self.img_mod(vec)
|
| txt_mod1, txt_mod2 = self.txt_mod(vec)
|
|
|
|
|
| img_modulated = self.img_norm1(img)
|
| img_modulated.mul_(1 + img_mod1.scale)
|
| img_modulated.add_(img_mod1.shift)
|
|
|
| shape = (*img_modulated.shape[:2], self.num_heads, int(img_modulated.shape[-1] / self.num_heads) )
|
| img_q = self.img_attn.q(img_modulated).view(*shape).transpose(1,2)
|
| img_k = self.img_attn.k(img_modulated).view(*shape).transpose(1,2)
|
| img_v = self.img_attn.v(img_modulated).view(*shape).transpose(1,2)
|
| del img_modulated
|
|
|
|
|
| img_q= self.img_attn.norm(img_q, None, img_v)
|
| img_k= self.img_attn.norm(None, img_k, img_v)
|
|
|
|
|
| txt_modulated = self.txt_norm1(txt)
|
| txt_modulated.mul_(1 + txt_mod1.scale)
|
| txt_modulated.add_(txt_mod1.shift)
|
|
|
| shape = (*txt_modulated.shape[:2], self.num_heads, int(txt_modulated.shape[-1] / self.num_heads) )
|
| txt_q = self.txt_attn.q(txt_modulated).view(*shape).transpose(1,2)
|
| txt_k = self.txt_attn.k(txt_modulated).view(*shape).transpose(1,2)
|
| txt_v = self.txt_attn.v(txt_modulated).view(*shape).transpose(1,2)
|
| del txt_modulated
|
|
|
|
|
| txt_q = self.txt_attn.norm(txt_q, None, txt_v)
|
| txt_k = self.txt_attn.norm(None, txt_k, txt_v)
|
|
|
|
|
| q = torch.cat((txt_q, img_q), dim=2)
|
| del txt_q, img_q
|
| k = torch.cat((txt_k, img_k), dim=2)
|
| del txt_k, img_k
|
| v = torch.cat((txt_v, img_v), dim=2)
|
| del txt_v, img_v
|
|
|
| qkv_list = [q, k, v]
|
| del q, k, v
|
| attn = attention(qkv_list, pe=pe, txt_len=txt.shape[1], NAG=NAG)
|
|
|
| txt_attn, img_attn = attn[:, : txt.shape[1]], attn[:, txt.shape[1] :]
|
|
|
|
|
| torch.addcmul(img, self.img_attn.proj(img_attn), img_mod1.gate, out=img)
|
| mod_img = self.img_norm2(img)
|
| mod_img.mul_(1 + img_mod2.scale)
|
| mod_img.add_(img_mod2.shift)
|
| mod_img = split_mlp(self.img_mlp, mod_img)
|
|
|
| torch.addcmul(img, mod_img, img_mod2.gate, out=img)
|
| mod_img = None
|
|
|
|
|
| torch.addcmul(txt, self.txt_attn.proj(txt_attn), txt_mod1.gate, out=txt)
|
| torch.addcmul(txt, self.txt_mlp((1 + txt_mod2.scale) * self.txt_norm2(txt) + txt_mod2.shift), txt_mod2.gate, out=txt)
|
| return img, txt
|
|
|
|
|
| class SingleStreamBlock(nn.Module):
|
| """
|
| A DiT block with parallel linear layers as described in
|
| https://arxiv.org/abs/2302.05442 and adapted modulation interface.
|
| """
|
|
|
| def __init__(
|
| self,
|
| hidden_size: int,
|
| num_heads: int,
|
| mlp_ratio: float = 4.0,
|
| qk_scale: float | None = None,
|
| shared_modulation = False,
|
| single_linear1_mlp_ratio: float | None = None,
|
| single_mlp_hidden_ratio: float | None = None,
|
| linear_bias: bool = True,
|
| modulation_bias: bool = True,
|
| ):
|
| super().__init__()
|
| self.hidden_dim = hidden_size
|
| self.num_heads = num_heads
|
| self.shared_modulation = shared_modulation
|
| head_dim = hidden_size // num_heads
|
| self.scale = qk_scale or head_dim**-0.5
|
| lin1_mlp_dim = int(hidden_size * (single_linear1_mlp_ratio if single_linear1_mlp_ratio is not None else mlp_ratio))
|
| self.use_silu = single_linear1_mlp_ratio is not None
|
| if self.use_silu:
|
| self.mlp_hidden_dim = lin1_mlp_dim // 2
|
| else:
|
| self.mlp_hidden_dim = int(hidden_size * (single_mlp_hidden_ratio if single_mlp_hidden_ratio is not None else mlp_ratio))
|
|
|
| self.linear1 = nn.Linear(hidden_size, hidden_size * 3 + lin1_mlp_dim, bias=linear_bias)
|
|
|
| self.linear2 = nn.Linear(hidden_size + self.mlp_hidden_dim, hidden_size, bias=linear_bias)
|
|
|
| self.norm = QKNorm(head_dim)
|
|
|
| self.hidden_size = hidden_size
|
| self.pre_norm = nn.LayerNorm(hidden_size, elementwise_affine=False, eps=1e-6)
|
|
|
| self.mlp_act = SiLUActivation() if self.use_silu else nn.GELU(approximate="tanh")
|
| if not shared_modulation:
|
| self.modulation = Modulation(hidden_size, double=False, bias=modulation_bias)
|
| else:
|
| self.modulation = None
|
|
|
| def forward(self, x: Tensor, vec: Tensor, pe: Tensor, *, txt_len: int | None = None, NAG: dict | None = None) -> Tensor:
|
| if self.shared_modulation:
|
| mod = vec
|
| elif self.modulation is not None:
|
| mod, _ = self.modulation(vec)
|
| x_mod = self.pre_norm(x)
|
| x_mod.mul_(1 + mod.scale)
|
| x_mod.add_(mod.shift)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| shape = (*x_mod.shape[:2], self.num_heads, int(x_mod.shape[-1] / self.num_heads) )
|
| q = self.linear1_attn_q(x_mod).view(*shape).transpose(1,2)
|
| k = self.linear1_attn_k(x_mod).view(*shape).transpose(1,2)
|
| v = self.linear1_attn_v(x_mod).view(*shape).transpose(1,2)
|
|
|
| q = self.norm(q, None, v)
|
| k = self.norm(None, k, v)
|
|
|
|
|
| qkv_list = [q, k, v]
|
| del q, k, v
|
| attn = attention(qkv_list, pe=pe, txt_len=txt_len, NAG=NAG)
|
|
|
|
|
| x_mod_shape = x_mod.shape
|
| x_mod = x_mod.view(-1, x_mod.shape[-1])
|
| chunk_size = int(x_mod_shape[1]/6)
|
| x_chunks = torch.split(x_mod, chunk_size)
|
| attn = attn.view(-1, attn.shape[-1])
|
| attn_chunks =torch.split(attn, chunk_size)
|
| for x_chunk, attn_chunk in zip(x_chunks, attn_chunks):
|
| mlp_chunk = self.linear1_mlp(x_chunk)
|
| mlp_chunk = self.mlp_act(mlp_chunk)
|
| attn_mlp_chunk = torch.cat((attn_chunk, mlp_chunk), -1)
|
| del attn_chunk, mlp_chunk
|
| x_chunk[...] = self.linear2(attn_mlp_chunk)
|
| del attn_mlp_chunk
|
| x_mod = x_mod.view(x_mod_shape)
|
| torch.addcmul(x, x_mod, mod.gate, out=x)
|
| return x
|
|
|
|
|
| class LastLayer(nn.Module):
|
| def __init__(
|
| self,
|
| hidden_size: int,
|
| patch_size: int,
|
| out_channels: int,
|
| chroma_modulation: bool = False,
|
| use_linear: bool = True,
|
| linear_bias: bool = True,
|
| modulation_bias: bool = True,
|
| ):
|
| super().__init__()
|
| self.chroma_modulation = chroma_modulation
|
| self.use_linear = use_linear
|
| self.norm_final = nn.LayerNorm(hidden_size, elementwise_affine=False, eps=1e-6)
|
| self.linear = (
|
| nn.Linear(hidden_size, patch_size * patch_size * out_channels, bias=linear_bias)
|
| if use_linear
|
| else None
|
| )
|
| if not chroma_modulation:
|
| self.adaLN_modulation = nn.Sequential(
|
| nn.SiLU(), nn.Linear(hidden_size, 2 * hidden_size, bias=modulation_bias)
|
| )
|
|
|
|
|
| def forward(self, x: Tensor, vec: Tensor) -> Tensor:
|
| if self.chroma_modulation:
|
| shift, scale = vec
|
| shift = shift.squeeze(1)
|
| scale = scale.squeeze(1)
|
| else:
|
| shift, scale = self.adaLN_modulation(vec).chunk(2, dim=1)
|
|
|
| x = torch.addcmul(shift[:, None, :], 1 + scale[:, None, :], self.norm_final(x))
|
| x = self.linear(x)
|
| return x
|
|
|
|
|
| class DistilledGuidance(nn.Module):
|
| def __init__(self, in_dim: int, out_dim: int, hidden_dim: int, n_layers = 5):
|
| super().__init__()
|
| self.in_proj = nn.Linear(in_dim, hidden_dim, bias=True)
|
| self.layers = nn.ModuleList([MLPEmbedder(hidden_dim, hidden_dim) for x in range( n_layers)])
|
| self.norms = nn.ModuleList([RMSNorm(hidden_dim) for x in range( n_layers)])
|
| self.out_proj = nn.Linear(hidden_dim, out_dim)
|
|
|
|
|
| def forward(self, x: Tensor) -> Tensor:
|
| x = self.in_proj(x)
|
|
|
| for layer, norms in zip(self.layers, self.norms):
|
| x = x + layer(norms(x))
|
|
|
| x = self.out_proj(x)
|
|
|
| return x
|
|
|
|
|
| class SigLIPMultiFeatProjModel(torch.nn.Module):
|
| """
|
| SigLIP Multi-Feature Projection Model for processing style features from different layers
|
| and projecting them into a unified hidden space.
|
|
|
| Args:
|
| siglip_token_nums (int): Number of SigLIP tokens, default 257
|
| style_token_nums (int): Number of style tokens, default 256
|
| siglip_token_dims (int): Dimension of SigLIP tokens, default 1536
|
| hidden_size (int): Hidden layer size, default 3072
|
| context_layer_norm (bool): Whether to use context layer normalization, default False
|
| """
|
|
|
| def __init__(
|
| self,
|
| siglip_token_nums: int = 257,
|
| style_token_nums: int = 256,
|
| siglip_token_dims: int = 1536,
|
| hidden_size: int = 3072,
|
| context_layer_norm: bool = False,
|
| ):
|
| super().__init__()
|
|
|
|
|
| self.high_embedding_linear = nn.Sequential(
|
| nn.Linear(siglip_token_nums, style_token_nums),
|
| nn.SiLU()
|
| )
|
| self.high_layer_norm = (
|
| nn.LayerNorm(siglip_token_dims) if context_layer_norm else nn.Identity()
|
| )
|
| self.high_projection = nn.Linear(siglip_token_dims, hidden_size, bias=True)
|
|
|
|
|
| self.mid_embedding_linear = nn.Sequential(
|
| nn.Linear(siglip_token_nums, style_token_nums),
|
| nn.SiLU()
|
| )
|
| self.mid_layer_norm = (
|
| nn.LayerNorm(siglip_token_dims) if context_layer_norm else nn.Identity()
|
| )
|
| self.mid_projection = nn.Linear(siglip_token_dims, hidden_size, bias=True)
|
|
|
|
|
| self.low_embedding_linear = nn.Sequential(
|
| nn.Linear(siglip_token_nums, style_token_nums),
|
| nn.SiLU()
|
| )
|
| self.low_layer_norm = (
|
| nn.LayerNorm(siglip_token_dims) if context_layer_norm else nn.Identity()
|
| )
|
| self.low_projection = nn.Linear(siglip_token_dims, hidden_size, bias=True)
|
|
|
| def forward(self, siglip_outputs):
|
| """
|
| Forward pass function
|
|
|
| Args:
|
| siglip_outputs: Output from SigLIP model, containing hidden_states
|
|
|
| Returns:
|
| torch.Tensor: Concatenated multi-layer features with shape [bs, 3*style_token_nums, hidden_size]
|
| """
|
| dtype = next(self.high_embedding_linear.parameters()).dtype
|
|
|
|
|
| high_embedding = self._process_layer_features(
|
| siglip_outputs.hidden_states[-2],
|
| self.high_embedding_linear,
|
| self.high_layer_norm,
|
| self.high_projection,
|
| dtype
|
| )
|
|
|
|
|
| mid_embedding = self._process_layer_features(
|
| siglip_outputs.hidden_states[-11],
|
| self.mid_embedding_linear,
|
| self.mid_layer_norm,
|
| self.mid_projection,
|
| dtype
|
| )
|
|
|
|
|
| low_embedding = self._process_layer_features(
|
| siglip_outputs.hidden_states[-20],
|
| self.low_embedding_linear,
|
| self.low_layer_norm,
|
| self.low_projection,
|
| dtype
|
| )
|
|
|
|
|
| return torch.cat((high_embedding, mid_embedding, low_embedding), dim=1)
|
|
|
| def _process_layer_features(
|
| self,
|
| hidden_states: torch.Tensor,
|
| embedding_linear: nn.Module,
|
| layer_norm: nn.Module,
|
| projection: nn.Module,
|
| dtype: torch.dtype
|
| ) -> torch.Tensor:
|
| """
|
| Helper function to process features from a single layer
|
|
|
| Args:
|
| hidden_states: Input hidden states [bs, seq_len, dim]
|
| embedding_linear: Embedding linear layer
|
| layer_norm: Layer normalization
|
| projection: Projection layer
|
| dtype: Target data type
|
|
|
| Returns:
|
| torch.Tensor: Processed features [bs, style_token_nums, hidden_size]
|
| """
|
|
|
| embedding = embedding_linear(
|
| hidden_states.to(dtype).transpose(1, 2)
|
| ).transpose(1, 2)
|
|
|
|
|
| embedding = layer_norm(embedding)
|
|
|
|
|
| embedding = projection(embedding)
|
|
|
| return embedding
|
|
|