File size: 18,158 Bytes
cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac e716756 dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac 59e4dc1 cf4bcac e716756 dd9d5c4 cf4bcac dd9d5c4 02d6021 cf4bcac dd9d5c4 cf4bcac 59e4dc1 dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 59e4dc1 cf4bcac 59e4dc1 cf4bcac 59e4dc1 cf4bcac 59e4dc1 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac 02d6021 cf4bcac 02d6021 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac dd9d5c4 cf4bcac | 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 | """
Eve-2-MoE — Custom Mixture of Experts Language Model
=====================================================
Architecture: DeepSeek-V3 style Shared Expert + Top-K Routed Experts + RoPE
Author: Anthony Maio / Making Minds AI Research
License: MIT
Usage (HuggingFace):
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained(
"anthonym21/Eve-2-MoE-272M", trust_remote_code=True
)
Usage (standalone):
from modeling_eve import ModelConfig, DeepSeekMoE
model = DeepSeekMoE(ModelConfig())
"""
import torch
import torch.nn as nn
import torch.nn.functional as F
import math
from collections import OrderedDict
from dataclasses import dataclass
# ============================================================
# Standalone config (no transformers dependency)
# ============================================================
@dataclass
class ModelConfig:
"""Configuration for Eve-2-MoE (standalone, no HF dependency)."""
# Model dimensions
vocab_size: int = 50304
n_layer: int = 12
n_embd: int = 512
n_head: int = 8
head_dim: int = 64
block_size: int = 2048
# MoE settings
num_experts: int = 8
top_k: int = 2
expert_intermediate_size: int = 1408
shared_expert_intermediate_size: int = 1408
router_aux_loss_coef: float = 0.01
# Training settings
use_checkpointing: bool = False # Gradient checkpointing (saves VRAM, costs speed)
# RoPE settings
rope_theta: float = 10000.0
# ============================================================
# Utility: strip torch.compile prefix from state dicts
# ============================================================
def _strip_orig_mod_prefix(state_dict):
"""Remove '_orig_mod.' prefix from keys saved by torch.compile'd models."""
cleaned = OrderedDict()
for k, v in state_dict.items():
cleaned[k.replace("_orig_mod.", "")] = v
return cleaned
# ============================================================
# Building blocks (shared by standalone and HF models)
# ============================================================
class RMSNorm(nn.Module):
"""Root Mean Square Layer Normalization."""
def __init__(self, dim: int, eps: float = 1e-5):
super().__init__()
self.eps = eps
self.weight = nn.Parameter(torch.ones(dim))
def forward(self, x: torch.Tensor) -> torch.Tensor:
return x * torch.rsqrt(x.pow(2).mean(-1, keepdim=True) + self.eps) * self.weight
def precompute_rope_freqs(head_dim: int, max_seq_len: int, theta: float = 10000.0,
device: torch.device = None) -> torch.Tensor:
"""Precompute the complex exponential frequencies for RoPE.
Returns a (max_seq_len, head_dim // 2) complex tensor.
"""
freqs = 1.0 / (theta ** (torch.arange(0, head_dim, 2, device=device).float() / head_dim))
t = torch.arange(max_seq_len, device=device).float()
freqs = torch.outer(t, freqs)
return torch.polar(torch.ones_like(freqs), freqs) # complex64
def apply_rope(x: torch.Tensor, freqs_cis: torch.Tensor) -> torch.Tensor:
"""Apply rotary position embeddings to input tensor.
Args:
x: (B, n_head, T, head_dim)
freqs_cis: (T, head_dim // 2) complex
Returns:
(B, n_head, T, head_dim) with rotary embeddings applied
"""
# Reshape x to complex: (B, n_head, T, head_dim//2, 2) -> complex
B, H, T, D = x.shape
x_complex = torch.view_as_complex(x.float().reshape(B, H, T, D // 2, 2))
# Broadcast freqs_cis: (1, 1, T, head_dim//2)
freqs_cis = freqs_cis[:T].unsqueeze(0).unsqueeze(0)
x_rotated = x_complex * freqs_cis
# Back to real: (B, H, T, head_dim)
return torch.view_as_real(x_rotated).reshape(B, H, T, D).type_as(x)
class MLP(nn.Module):
"""Feed-forward network with SwiGLU activation."""
def __init__(self, config, intermediate_size: int = None):
super().__init__()
hidden_dim = intermediate_size or config.expert_intermediate_size
self.w1 = nn.Linear(config.n_embd, hidden_dim, bias=False) # Gate
self.w2 = nn.Linear(config.n_embd, hidden_dim, bias=False) # Up
self.c_proj = nn.Linear(hidden_dim, config.n_embd, bias=False) # Down
def forward(self, x: torch.Tensor) -> torch.Tensor:
return self.c_proj(F.silu(self.w1(x)) * self.w2(x))
class SharedMoE(nn.Module):
"""Mixture of Experts with one shared expert and K routed experts.
DeepSeek-V3 style: a shared expert processes all tokens while a top-k
router selects from a pool of specialized experts per token.
"""
def __init__(self, config):
super().__init__()
self.config = config
self.top_k = config.top_k
# Shared expert (always active)
self.shared_expert = MLP(config, config.shared_expert_intermediate_size)
# Routed experts
self.experts = nn.ModuleList([MLP(config) for _ in range(config.num_experts)])
self.router = nn.Linear(config.n_embd, config.num_experts, bias=False)
def forward(self, x: torch.Tensor) -> tuple[torch.Tensor, torch.Tensor]:
B, T, C = x.shape
# Shared path
shared_out = self.shared_expert(x)
# Router
logits = self.router(x)
probs = F.softmax(logits, dim=-1)
# Top-K selection with normalized weights
top_k_weights, top_k_indices = torch.topk(probs, self.top_k, dim=-1)
top_k_weights = top_k_weights / top_k_weights.sum(dim=-1, keepdim=True)
# Load balancing auxiliary loss
flat_probs = probs.view(-1, self.config.num_experts)
expert_usage = flat_probs.mean(dim=0)
aux_loss = torch.sum(expert_usage * expert_usage) * self.config.num_experts
# Route tokens to experts
routed_out = torch.zeros_like(x)
flat_x = x.view(-1, C)
flat_indices = top_k_indices.view(-1, self.top_k)
flat_weights = top_k_weights.view(-1, self.top_k)
for i, expert in enumerate(self.experts):
mask = flat_indices == i
batch_idx, rank_idx = torch.where(mask)
if batch_idx.numel() > 0:
expert_input = flat_x[batch_idx]
expert_output = expert(expert_input)
weight = flat_weights[batch_idx, rank_idx].unsqueeze(-1)
routed_out.view(-1, C).index_add_(0, batch_idx, expert_output * weight)
return shared_out + routed_out, aux_loss
class CausalSelfAttention(nn.Module):
"""Multi-head causal self-attention with Rotary Position Embeddings."""
def __init__(self, config):
super().__init__()
self.n_head = config.n_head
self.head_dim = config.head_dim
self.n_embd = config.n_embd
self.c_attn = nn.Linear(config.n_embd, 3 * config.n_embd, bias=False)
self.c_proj = nn.Linear(config.n_embd, config.n_embd, bias=False)
def forward(self, x: torch.Tensor, freqs_cis: torch.Tensor) -> torch.Tensor:
B, T, C = x.shape
qkv = self.c_attn(x)
q, k, v = qkv.split(self.n_embd, dim=2)
q = q.view(B, T, self.n_head, self.head_dim).transpose(1, 2)
k = k.view(B, T, self.n_head, self.head_dim).transpose(1, 2)
v = v.view(B, T, self.n_head, self.head_dim).transpose(1, 2)
# Apply RoPE to Q and K
q = apply_rope(q, freqs_cis)
k = apply_rope(k, freqs_cis)
# Flash Attention (auto-dispatches to cuDNN/FlashAttn kernels)
y = F.scaled_dot_product_attention(q, k, v, is_causal=True)
y = y.transpose(1, 2).contiguous().view(B, T, C)
return self.c_proj(y)
class Block(nn.Module):
"""Transformer block: RMSNorm -> Attention -> RMSNorm -> MoE."""
def __init__(self, config):
super().__init__()
self.ln_1 = RMSNorm(config.n_embd)
self.attn = CausalSelfAttention(config)
self.ln_2 = RMSNorm(config.n_embd)
self.mlp = SharedMoE(config)
def forward(self, x: torch.Tensor, freqs_cis: torch.Tensor) -> tuple[torch.Tensor, torch.Tensor]:
x = x + self.attn(self.ln_1(x), freqs_cis)
mlp_out, aux_loss = self.mlp(self.ln_2(x))
x = x + mlp_out
return x, aux_loss
# ============================================================
# Standalone model (backward compatible, no HF dependency)
# ============================================================
class DeepSeekMoE(nn.Module):
"""Eve-2-MoE: DeepSeek-V3 style Mixture of Experts language model.
Standalone nn.Module — works without the transformers library.
For HuggingFace integration, use EveMoEForCausalLM instead.
Architecture:
- Token embeddings (no learned position embeddings — uses RoPE)
- N transformer blocks with RoPE attention + shared MoE FFN
- RMSNorm + tied linear head
"""
def __init__(self, config: ModelConfig):
super().__init__()
self.config = config
self.transformer = nn.ModuleDict(dict(
wte=nn.Embedding(config.vocab_size, config.n_embd),
h=nn.ModuleList([Block(config) for _ in range(config.n_layer)]),
ln_f=RMSNorm(config.n_embd),
))
self.lm_head = nn.Linear(config.n_embd, config.vocab_size, bias=False)
# Weight tying
self.transformer.wte.weight = self.lm_head.weight
# Precompute RoPE frequencies (registered as buffer so they move with .to(device))
freqs_cis = precompute_rope_freqs(config.head_dim, config.block_size, config.rope_theta)
self.register_buffer("freqs_cis", freqs_cis, persistent=False)
# Initialize weights
self.apply(self._init_weights)
def _init_weights(self, module):
if isinstance(module, nn.Linear):
torch.nn.init.normal_(module.weight, mean=0.0, std=0.02)
if module.bias is not None:
torch.nn.init.zeros_(module.bias)
elif isinstance(module, nn.Embedding):
torch.nn.init.normal_(module.weight, mean=0.0, std=0.02)
def forward(self, idx: torch.Tensor, targets: torch.Tensor = None) -> tuple[torch.Tensor, torch.Tensor]:
B, T = idx.shape
assert T <= self.config.block_size, f"Sequence length {T} exceeds block_size {self.config.block_size}"
x = self.transformer.wte(idx)
total_aux_loss = 0.0
for block in self.transformer.h:
if self.config.use_checkpointing and self.training:
x, aux_loss = torch.utils.checkpoint.checkpoint(
block, x, self.freqs_cis, use_reentrant=False
)
else:
x, aux_loss = block(x, self.freqs_cis)
total_aux_loss += aux_loss
x = self.transformer.ln_f(x)
logits = self.lm_head(x)
loss = None
if targets is not None:
loss = F.cross_entropy(logits.view(-1, logits.size(-1)), targets.view(-1))
loss = loss + self.config.router_aux_loss_coef * total_aux_loss
return logits, loss
@torch.no_grad()
def generate(self, idx: torch.Tensor, max_new_tokens: int,
temperature: float = 0.8, top_k: int = 50) -> torch.Tensor:
"""Autoregressive generation with temperature and top-k sampling."""
for _ in range(max_new_tokens):
idx_cond = idx[:, -self.config.block_size:]
logits, _ = self(idx_cond)
logits = logits[:, -1, :] / temperature
if top_k is not None:
v, _ = torch.topk(logits, min(top_k, logits.size(-1)))
logits[logits < v[:, [-1]]] = -float("Inf")
probs = F.softmax(logits, dim=-1)
idx_next = torch.multinomial(probs, num_samples=1)
idx = torch.cat((idx, idx_next), dim=1)
return idx
# ============================================================
# HuggingFace PreTrainedModel integration
# (only available when transformers is installed)
# ============================================================
try:
from transformers import PreTrainedModel
from transformers.modeling_outputs import CausalLMOutputWithPast
try:
from .configuration_eve import EveConfig
except ImportError:
from configuration_eve import EveConfig
class EveMoEPreTrainedModel(PreTrainedModel):
"""Base class for Eve-2-MoE HuggingFace models."""
config_class = EveConfig
base_model_prefix = "transformer"
supports_gradient_checkpointing = True
_no_split_modules = ["Block"]
def _init_weights(self, module):
std = 0.02
if isinstance(module, nn.Linear):
module.weight.data.normal_(mean=0.0, std=std)
if module.bias is not None:
module.bias.data.zero_()
elif isinstance(module, nn.Embedding):
module.weight.data.normal_(mean=0.0, std=std)
class EveMoEForCausalLM(EveMoEPreTrainedModel):
"""Eve-2-MoE for causal language modeling (HuggingFace compatible).
This model has the same weights and architecture as DeepSeekMoE but
follows HuggingFace conventions for from_pretrained() and generate().
Usage:
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained(
"anthonym21/Eve-2-MoE-272M", trust_remote_code=True
)
output = model.generate(input_ids, max_new_tokens=100)
"""
_tied_weights_keys = ["lm_head.weight"]
def __init__(self, config: EveConfig):
super().__init__(config)
self.transformer = nn.ModuleDict(dict(
wte=nn.Embedding(config.vocab_size, config.n_embd),
h=nn.ModuleList([Block(config) for _ in range(config.n_layer)]),
ln_f=RMSNorm(config.n_embd),
))
self.lm_head = nn.Linear(config.n_embd, config.vocab_size, bias=False)
# Precompute RoPE frequencies
freqs_cis = precompute_rope_freqs(config.head_dim, config.block_size, config.rope_theta)
self.register_buffer("freqs_cis", freqs_cis, persistent=False)
# Initialize weights and apply final processing
self.post_init()
def get_input_embeddings(self):
return self.transformer.wte
def set_input_embeddings(self, value):
self.transformer.wte = value
def get_output_embeddings(self):
return self.lm_head
def set_output_embeddings(self, new_embeddings):
self.lm_head = new_embeddings
def forward(
self,
input_ids: torch.LongTensor = None,
attention_mask: torch.Tensor = None,
labels: torch.LongTensor = None,
return_dict: bool = None,
**kwargs,
):
"""
Args:
input_ids: Token IDs, shape (batch, seq_len).
attention_mask: Ignored (model uses causal mask via Flash Attention).
Accepted for pipeline/generate() compatibility.
labels: Language modeling labels. Same shape as input_ids.
The loss is computed with internal shift (labels[..., 1:] predicted
from input[..., :-1]), following HuggingFace convention.
return_dict: Whether to return a CausalLMOutputWithPast or a tuple.
"""
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
B, T = input_ids.shape
assert T <= self.config.block_size, \
f"Sequence length {T} exceeds block_size {self.config.block_size}"
x = self.transformer.wte(input_ids)
total_aux_loss = 0.0
for block in self.transformer.h:
if self.config.use_checkpointing and self.training:
x, aux_loss = torch.utils.checkpoint.checkpoint(
block, x, self.freqs_cis, use_reentrant=False
)
else:
x, aux_loss = block(x, self.freqs_cis)
total_aux_loss += aux_loss
x = self.transformer.ln_f(x)
logits = self.lm_head(x)
loss = None
if labels is not None:
# Shift so that tokens < n predict n (HF convention)
shift_logits = logits[..., :-1, :].contiguous()
shift_labels = labels[..., 1:].contiguous()
loss = F.cross_entropy(
shift_logits.view(-1, self.config.vocab_size),
shift_labels.view(-1),
)
loss = loss + self.config.router_aux_loss_coef * total_aux_loss
if not return_dict:
output = (logits,)
return (loss,) + output if loss is not None else output
return CausalLMOutputWithPast(
loss=loss,
logits=logits,
)
def prepare_inputs_for_generation(self, input_ids, attention_mask=None, **kwargs):
# Truncate to block_size for models without KV cache
if input_ids.shape[1] > self.config.block_size:
input_ids = input_ids[:, -self.config.block_size:]
if attention_mask is not None:
attention_mask = attention_mask[:, -self.config.block_size:]
return {
"input_ids": input_ids,
"attention_mask": attention_mask,
}
def load_state_dict(self, state_dict, *args, **kwargs):
"""Override to handle weights saved from torch.compile'd models."""
# Strip _orig_mod. prefix if present (torch.compile artifact)
if any(k.startswith("_orig_mod.") for k in state_dict.keys()):
state_dict = _strip_orig_mod_prefix(state_dict)
return super().load_state_dict(state_dict, *args, **kwargs)
except ImportError:
# transformers not installed — standalone usage only (DeepSeekMoE + ModelConfig)
pass
|