Spaces:
Paused
Paused
File size: 14,613 Bytes
186aa49 | 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 | # Copyright 2026 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import torch
import torch.nn as nn
import torch.nn.functional as F
from ...configuration_utils import ConfigMixin, register_to_config
from ...loaders import PeftAdapterMixin
from ..attention import AttentionModuleMixin
from ..attention_dispatch import dispatch_attention_fn
from ..modeling_utils import ModelMixin
def _rotate_half(hidden_states: torch.Tensor) -> torch.Tensor:
hidden_states_1 = hidden_states[..., : hidden_states.shape[-1] // 2]
hidden_states_2 = hidden_states[..., hidden_states.shape[-1] // 2 :]
return torch.cat((-hidden_states_2, hidden_states_1), dim=-1)
def _apply_rotary_pos_emb(
hidden_states: torch.Tensor, cos: torch.Tensor, sin: torch.Tensor, unsqueeze_dim: int = 1
) -> torch.Tensor:
cos = cos.unsqueeze(unsqueeze_dim)
sin = sin.unsqueeze(unsqueeze_dim)
return (hidden_states * cos) + (_rotate_half(hidden_states) * sin)
class AnimaRotaryEmbedding(nn.Module):
def __init__(self, head_dim: int, rope_theta: float = 10000.0):
super().__init__()
inv_freq = 1.0 / (
rope_theta ** (torch.arange(0, head_dim, 2, dtype=torch.int64).to(dtype=torch.float32) / head_dim)
)
self.register_buffer("inv_freq", inv_freq, persistent=False)
def forward(self, hidden_states: torch.Tensor, position_ids: torch.Tensor) -> tuple[torch.Tensor, torch.Tensor]:
inv_freq_expanded = self.inv_freq[None, :, None].float().expand(position_ids.shape[0], -1, 1)
inv_freq_expanded = inv_freq_expanded.to(hidden_states.device)
position_ids_expanded = position_ids[:, None, :].float()
freqs = (inv_freq_expanded @ position_ids_expanded).transpose(1, 2)
emb = torch.cat((freqs, freqs), dim=-1)
cos = emb.cos()
sin = emb.sin()
return cos.to(dtype=hidden_states.dtype), sin.to(dtype=hidden_states.dtype)
class AnimaTextConditionerAttnProcessor:
_attention_backend = None
_parallel_config = None
def __call__(
self,
attn: "AnimaTextConditionerAttention",
hidden_states: torch.Tensor,
attention_mask: torch.Tensor | None = None,
encoder_hidden_states: torch.Tensor | None = None,
position_embeddings: tuple[torch.Tensor, torch.Tensor] | None = None,
encoder_position_embeddings: tuple[torch.Tensor, torch.Tensor] | None = None,
) -> torch.Tensor:
encoder_hidden_states = hidden_states if encoder_hidden_states is None else encoder_hidden_states
input_shape = hidden_states.shape[:-1]
encoder_input_shape = encoder_hidden_states.shape[:-1]
query = attn.q_proj(hidden_states)
key = attn.k_proj(encoder_hidden_states)
value = attn.v_proj(encoder_hidden_states)
query = query.view(*input_shape, attn.num_attention_heads, attn.attention_head_dim)
key = key.view(*encoder_input_shape, attn.num_attention_heads, attn.attention_head_dim)
value = value.view(*encoder_input_shape, attn.num_attention_heads, attn.attention_head_dim)
query = attn.q_norm(query)
key = attn.k_norm(key)
if position_embeddings is not None:
if encoder_position_embeddings is None:
raise ValueError("`encoder_position_embeddings` must be provided when using rotary embeddings.")
cos, sin = position_embeddings
query = _apply_rotary_pos_emb(query, cos, sin, unsqueeze_dim=2)
cos, sin = encoder_position_embeddings
key = _apply_rotary_pos_emb(key, cos, sin, unsqueeze_dim=2)
hidden_states = dispatch_attention_fn(
query,
key,
value,
attn_mask=attention_mask,
dropout_p=0.0,
is_causal=False,
backend=self._attention_backend,
parallel_config=self._parallel_config,
)
hidden_states = hidden_states.flatten(2, 3).contiguous()
hidden_states = attn.o_proj(hidden_states)
return hidden_states
class AnimaTextConditionerAttention(nn.Module, AttentionModuleMixin):
_default_processor_cls = AnimaTextConditionerAttnProcessor
_available_processors = [AnimaTextConditionerAttnProcessor]
_supports_qkv_fusion = False
def __init__(
self,
query_dim: int,
context_dim: int,
num_attention_heads: int,
attention_head_dim: int,
processor: AnimaTextConditionerAttnProcessor | None = None,
):
super().__init__()
inner_dim = num_attention_heads * attention_head_dim
self.num_attention_heads = num_attention_heads
self.attention_head_dim = attention_head_dim
self.q_proj = nn.Linear(query_dim, inner_dim, bias=False)
self.q_norm = nn.RMSNorm(attention_head_dim, eps=1e-6)
self.k_proj = nn.Linear(context_dim, inner_dim, bias=False)
self.k_norm = nn.RMSNorm(attention_head_dim, eps=1e-6)
self.v_proj = nn.Linear(context_dim, inner_dim, bias=False)
self.o_proj = nn.Linear(inner_dim, query_dim, bias=False)
if processor is None:
processor = self._default_processor_cls()
self.set_processor(processor)
def forward(
self,
hidden_states: torch.Tensor,
attention_mask: torch.Tensor | None = None,
encoder_hidden_states: torch.Tensor | None = None,
position_embeddings: tuple[torch.Tensor, torch.Tensor] | None = None,
encoder_position_embeddings: tuple[torch.Tensor, torch.Tensor] | None = None,
) -> torch.Tensor:
return self.processor(
self,
hidden_states,
attention_mask=attention_mask,
encoder_hidden_states=encoder_hidden_states,
position_embeddings=position_embeddings,
encoder_position_embeddings=encoder_position_embeddings,
)
class AnimaTextConditionerBlock(nn.Module):
def __init__(
self,
source_dim: int,
model_dim: int,
num_attention_heads: int = 16,
mlp_ratio: float = 4.0,
use_self_attention: bool = True,
use_layer_norm: bool = False,
):
super().__init__()
self.use_self_attention = use_self_attention
norm_cls = nn.LayerNorm if use_layer_norm else nn.RMSNorm
norm_kwargs = {} if use_layer_norm else {"eps": 1e-6}
if use_self_attention:
self.norm_self_attn = norm_cls(model_dim, **norm_kwargs)
self.self_attn = AnimaTextConditionerAttention(
query_dim=model_dim,
context_dim=model_dim,
num_attention_heads=num_attention_heads,
attention_head_dim=model_dim // num_attention_heads,
)
self.norm_cross_attn = norm_cls(model_dim, **norm_kwargs)
self.cross_attn = AnimaTextConditionerAttention(
query_dim=model_dim,
context_dim=source_dim,
num_attention_heads=num_attention_heads,
attention_head_dim=model_dim // num_attention_heads,
)
self.norm_mlp = norm_cls(model_dim, **norm_kwargs)
self.mlp = nn.Sequential(
nn.Linear(model_dim, int(model_dim * mlp_ratio)),
nn.GELU(),
nn.Linear(int(model_dim * mlp_ratio), model_dim),
)
def forward(
self,
hidden_states: torch.Tensor,
encoder_hidden_states: torch.Tensor,
target_attention_mask: torch.Tensor | None = None,
source_attention_mask: torch.Tensor | None = None,
position_embeddings: tuple[torch.Tensor, torch.Tensor] | None = None,
source_position_embeddings: tuple[torch.Tensor, torch.Tensor] | None = None,
) -> torch.Tensor:
if self.use_self_attention:
norm_hidden_states = self.norm_self_attn(hidden_states)
attn_hidden_states = self.self_attn(
norm_hidden_states,
attention_mask=target_attention_mask,
position_embeddings=position_embeddings,
encoder_position_embeddings=position_embeddings,
)
hidden_states = hidden_states + attn_hidden_states
norm_hidden_states = self.norm_cross_attn(hidden_states)
attn_hidden_states = self.cross_attn(
norm_hidden_states,
attention_mask=source_attention_mask,
encoder_hidden_states=encoder_hidden_states,
position_embeddings=position_embeddings,
encoder_position_embeddings=source_position_embeddings,
)
hidden_states = hidden_states + attn_hidden_states
hidden_states = hidden_states + self.mlp(self.norm_mlp(hidden_states))
return hidden_states
class AnimaTextConditioner(ModelMixin, ConfigMixin, PeftAdapterMixin):
r"""
Text conditioner used by Anima to map Qwen3 hidden states and T5 token ids to Cosmos text embeddings.
Anima reuses the Cosmos Predict2 DiT. The only model-specific conditioning module is this LLM adapter, which
cross-attends from learned T5 token embeddings to Qwen3 text encoder hidden states before the diffusion loop.
`target_dim` is the conditioner output dimension and must match the transformer's `text_embed_dim`.
"""
_supports_gradient_checkpointing = True
_no_split_modules = ["AnimaTextConditionerBlock"]
@register_to_config
def __init__(
self,
source_dim: int = 1024,
target_dim: int = 1024,
model_dim: int = 1024,
num_layers: int = 6,
num_attention_heads: int = 16,
mlp_ratio: float = 4.0,
target_vocab_size: int = 32128,
use_self_attention: bool = True,
use_layer_norm: bool = False,
min_sequence_length: int = 512,
):
super().__init__()
self.embed = nn.Embedding(target_vocab_size, target_dim)
self.in_proj = nn.Linear(target_dim, model_dim) if model_dim != target_dim else nn.Identity()
self.rotary_emb = AnimaRotaryEmbedding(model_dim // num_attention_heads)
self.blocks = nn.ModuleList(
[
AnimaTextConditionerBlock(
source_dim=source_dim,
model_dim=model_dim,
num_attention_heads=num_attention_heads,
mlp_ratio=mlp_ratio,
use_self_attention=use_self_attention,
use_layer_norm=use_layer_norm,
)
for _ in range(num_layers)
]
)
self.out_proj = nn.Linear(model_dim, target_dim)
self.norm = nn.RMSNorm(target_dim, eps=1e-6)
self.gradient_checkpointing = False
@staticmethod
def _prepare_attention_mask(attention_mask: torch.Tensor | None) -> torch.Tensor | None:
if attention_mask is None:
return None
attention_mask = attention_mask.to(torch.bool)
if attention_mask.ndim == 2:
attention_mask = attention_mask.unsqueeze(1).unsqueeze(1)
return attention_mask
def forward(
self,
source_hidden_states: torch.Tensor,
target_input_ids: torch.Tensor,
target_attention_mask: torch.Tensor | None = None,
source_attention_mask: torch.Tensor | None = None,
) -> torch.Tensor:
"""
Args:
source_hidden_states (`torch.Tensor` of shape `(batch_size, source_sequence_length, source_dim)`):
Qwen3 text encoder hidden states to condition on.
target_input_ids (`torch.Tensor` of shape `(batch_size, target_sequence_length)`):
T5 token ids used as learned query tokens.
target_attention_mask (`torch.Tensor`, *optional*):
Attention mask for the target T5 token ids.
source_attention_mask (`torch.Tensor`, *optional*):
Attention mask for the source Qwen3 hidden states.
Returns:
`torch.Tensor`: Text conditioning embeddings for the Cosmos transformer.
"""
target_attention_mask = self._prepare_attention_mask(target_attention_mask)
source_attention_mask = self._prepare_attention_mask(source_attention_mask)
hidden_states = self.embed(target_input_ids).to(dtype=source_hidden_states.dtype)
hidden_states = self.in_proj(hidden_states)
position_ids = torch.arange(hidden_states.shape[1], device=hidden_states.device).unsqueeze(0)
source_position_ids = torch.arange(source_hidden_states.shape[1], device=hidden_states.device).unsqueeze(0)
position_embeddings = self.rotary_emb(hidden_states, position_ids)
source_position_embeddings = self.rotary_emb(hidden_states, source_position_ids)
for block in self.blocks:
if torch.is_grad_enabled() and self.gradient_checkpointing:
hidden_states = self._gradient_checkpointing_func(
block,
hidden_states,
source_hidden_states,
target_attention_mask,
source_attention_mask,
position_embeddings,
source_position_embeddings,
)
else:
hidden_states = block(
hidden_states,
source_hidden_states,
target_attention_mask=target_attention_mask,
source_attention_mask=source_attention_mask,
position_embeddings=position_embeddings,
source_position_embeddings=source_position_embeddings,
)
hidden_states = self.norm(self.out_proj(hidden_states))
if target_attention_mask is not None:
hidden_states = hidden_states * target_attention_mask.squeeze(1).squeeze(1).to(hidden_states).unsqueeze(-1)
if hidden_states.shape[1] < self.config.min_sequence_length:
hidden_states = F.pad(hidden_states, (0, 0, 0, self.config.min_sequence_length - hidden_states.shape[1]))
return hidden_states
|