File size: 15,665 Bytes
a00d81d | 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 | from __future__ import annotations
import math
from typing import Optional
import torch
import torch.nn as nn
import torch.nn.functional as F
from transformers import PreTrainedModel
from transformers.generation import GenerationMixin
from transformers.modeling_outputs import BaseModelOutputWithPast, CausalLMOutputWithPast
try:
from configuration_hanforge import HanForgeConfig
except ImportError:
from .configuration_hanforge import HanForgeConfig
def rotate_half(x: torch.Tensor) -> torch.Tensor:
x1 = x[..., : x.shape[-1] // 2]
x2 = x[..., x.shape[-1] // 2 :]
return torch.cat((-x2, x1), dim=-1)
def apply_rotary_pos_emb(q: torch.Tensor, k: torch.Tensor, cos: torch.Tensor, sin: torch.Tensor):
cos = cos.unsqueeze(1)
sin = sin.unsqueeze(1)
q = (q * cos) + (rotate_half(q) * sin)
k = (k * cos) + (rotate_half(k) * sin)
return q, k
def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
if n_rep == 1:
return hidden_states
batch, num_key_value_heads, seq_len, head_dim = hidden_states.shape
hidden_states = hidden_states[:, :, None, :, :].expand(batch, num_key_value_heads, n_rep, seq_len, head_dim)
return hidden_states.reshape(batch, num_key_value_heads * n_rep, seq_len, head_dim)
# DISABLED (refactor 20260423, ยง4.2): YaRN ๋ณธ๋ฌธ ๋นํ์ฑํ. from-scratch 4k context์์๋ ๋ถํ์.
# ํ์ผ context ํ์ฅ ์ ์ฐธ์กฐํ ์ ์๋๋ก ์๊ทธ๋์ฒ๋ ๋จ๊ธฐ๊ณ ๋ณธ๋ฌธ๋ง ์ฃผ์ ์ฒ๋ฆฌํ๋ค.
def _compute_yarn_parameters(config: HanForgeConfig, device=None):
raise NotImplementedError(
"YaRN is disabled in this refactor (see research/refactor_plan_20260423.md ยง4.2)."
)
# <<< disabled (refactor 20260423, ยง4.2)
# rope_params = dict(config.rope_scaling or {})
# dim = config.head_dim
# base = config.rope_theta
# if not rope_params or rope_params.get("rope_type", "default") == "default":
# inv_freq = 1.0 / (base ** (torch.arange(0, dim, 2, device=device, dtype=torch.float32) / dim))
# return inv_freq, 1.0
#
# factor = float(rope_params["factor"])
# beta_fast = float(rope_params.get("beta_fast", 32.0))
# beta_slow = float(rope_params.get("beta_slow", 1.0))
# mscale = rope_params.get("mscale")
# mscale_all_dim = rope_params.get("mscale_all_dim")
# original_max = int(rope_params["original_max_position_embeddings"])
#
# def get_mscale(scale, scale_factor=1.0):
# if scale <= 1:
# return 1.0
# return 0.1 * scale_factor * math.log(scale) + 1.0
#
# if mscale is not None and mscale_all_dim is not None:
# attention_factor = float(get_mscale(factor, mscale) / get_mscale(factor, mscale_all_dim))
# else:
# attention_factor = float(get_mscale(factor))
#
# def find_correction_dim(num_rotations, local_dim, local_base, max_position_embeddings):
# return (local_dim * math.log(max_position_embeddings / (num_rotations * 2 * math.pi))) / (
# 2 * math.log(local_base)
# )
#
# def find_correction_range(low_rot, high_rot, local_dim, local_base, max_position_embeddings):
# low = math.floor(find_correction_dim(low_rot, local_dim, local_base, max_position_embeddings))
# high = math.ceil(find_correction_dim(high_rot, local_dim, local_base, max_position_embeddings))
# return max(low, 0), min(high, local_dim - 1)
#
# def linear_ramp_factor(min_idx, max_idx, local_dim):
# if min_idx == max_idx:
# max_idx += 0.001
# linear_func = (torch.arange(local_dim, dtype=torch.float32, device=device) - min_idx) / (max_idx - min_idx)
# return torch.clamp(linear_func, 0, 1)
#
# pos_freqs = base ** (torch.arange(0, dim, 2, device=device, dtype=torch.float32) / dim)
# inv_freq_extrapolation = 1.0 / pos_freqs
# inv_freq_interpolation = 1.0 / (factor * pos_freqs)
# low, high = find_correction_range(beta_fast, beta_slow, dim, base, original_max)
# ramp = 1.0 - linear_ramp_factor(low, high, dim // 2)
# inv_freq = (inv_freq_interpolation * (1.0 - ramp)) + (inv_freq_extrapolation * ramp)
# return inv_freq, attention_factor
# >>> end disabled
def _compute_rope_parameters(config: HanForgeConfig, device=None):
dim = config.head_dim
base = config.rope_theta
inv_freq = 1.0 / (base ** (torch.arange(0, dim, 2, device=device, dtype=torch.float32) / dim))
return inv_freq
class HanForgeRMSNorm(nn.Module):
def __init__(self, hidden_size: int, eps: float = 1e-6):
super().__init__()
self.weight = nn.Parameter(torch.ones(hidden_size))
self.eps = eps
def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
input_dtype = hidden_states.dtype
hidden_states = hidden_states.to(torch.float32)
variance = hidden_states.pow(2).mean(dim=-1, keepdim=True)
hidden_states = hidden_states * torch.rsqrt(variance + self.eps)
return self.weight * hidden_states.to(input_dtype)
class HanForgeRotaryEmbedding(nn.Module):
def __init__(self, config: HanForgeConfig):
super().__init__()
inv_freq = _compute_rope_parameters(config)
self.register_buffer("inv_freq", inv_freq, persistent=False)
def forward(self, x: torch.Tensor, position_ids: torch.Tensor):
inv_freq_expanded = self.inv_freq[None, :, None].float().expand(position_ids.shape[0], -1, 1).to(x.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=x.dtype), sin.to(dtype=x.dtype)
class HanForgeAttention(nn.Module):
def __init__(self, config: HanForgeConfig, layer_idx: int):
super().__init__()
self.layer_idx = layer_idx
self.num_heads = config.num_attention_heads
self.num_key_value_heads = config.num_key_value_heads
self.num_key_value_groups = config.num_key_value_groups
self.head_dim = config.head_dim
# DISABLED (refactor 20260423, ยง4.1): hybrid local/global attention ๋นํ์ฑํ
# self.is_global = config.is_global_layer(layer_idx)
# self.sliding_window = config.sliding_window
self.q_proj = nn.Linear(config.hidden_size, config.hidden_size, bias=False)
kv_hidden = config.num_key_value_heads * self.head_dim
self.k_proj = nn.Linear(config.hidden_size, kv_hidden, bias=False)
self.v_proj = nn.Linear(config.hidden_size, kv_hidden, bias=False)
self.o_proj = nn.Linear(config.hidden_size, config.hidden_size, bias=False)
self.dropout = nn.Dropout(config.attention_dropout)
def forward(
self,
hidden_states: torch.Tensor,
cos: torch.Tensor,
sin: torch.Tensor,
attention_mask: Optional[torch.Tensor],
) -> torch.Tensor:
batch_size, seq_len, hidden_size = hidden_states.shape
q = self.q_proj(hidden_states).view(batch_size, seq_len, self.num_heads, self.head_dim).transpose(1, 2)
k = self.k_proj(hidden_states).view(batch_size, seq_len, self.num_key_value_heads, self.head_dim).transpose(1, 2)
v = self.v_proj(hidden_states).view(batch_size, seq_len, self.num_key_value_heads, self.head_dim).transpose(1, 2)
q, k = apply_rotary_pos_emb(q, k, cos, sin)
k = repeat_kv(k, self.num_key_value_groups)
v = repeat_kv(v, self.num_key_value_groups)
scores = (q @ k.transpose(-2, -1)) / math.sqrt(self.head_dim)
if attention_mask is not None:
scores = scores.masked_fill(~attention_mask, torch.finfo(scores.dtype).min)
attn = F.softmax(scores, dim=-1)
attn = self.dropout(attn)
out = attn @ v
out = out.transpose(1, 2).contiguous().view(batch_size, seq_len, hidden_size)
return self.o_proj(out)
class HanForgeMLP(nn.Module):
def __init__(self, config: HanForgeConfig):
super().__init__()
self.gate_proj = nn.Linear(config.hidden_size, config.intermediate_size, bias=False)
self.up_proj = nn.Linear(config.hidden_size, config.intermediate_size, bias=False)
self.down_proj = nn.Linear(config.intermediate_size, config.hidden_size, bias=False)
def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
return self.down_proj(F.silu(self.gate_proj(hidden_states)) * self.up_proj(hidden_states))
class HanForgeDecoderLayer(nn.Module):
def __init__(self, config: HanForgeConfig, layer_idx: int):
super().__init__()
# DISABLED (refactor 20260423, ยง4.1): hybrid local/global ๋ ์ด์ด ๋ถ๊ธฐ ๋นํ์ฑํ.
# ๋ชจ๋ ๋ ์ด์ด๊ฐ causal full attention ๊ฒฝ๋ก๋ก ๋์ํ๋ค.
# self.is_global = config.is_global_layer(layer_idx)
self.input_layernorm = HanForgeRMSNorm(config.hidden_size, config.rms_norm_eps)
self.self_attn = HanForgeAttention(config, layer_idx)
self.post_attention_layernorm = HanForgeRMSNorm(config.hidden_size, config.rms_norm_eps)
self.mlp = HanForgeMLP(config)
def forward(self, hidden_states: torch.Tensor, cos: torch.Tensor, sin: torch.Tensor, attention_mask: torch.Tensor):
hidden_states = hidden_states + self.self_attn(self.input_layernorm(hidden_states), cos, sin, attention_mask)
hidden_states = hidden_states + self.mlp(self.post_attention_layernorm(hidden_states))
return hidden_states
class HanForgePreTrainedModel(PreTrainedModel):
config_class = HanForgeConfig
base_model_prefix = "model"
_no_split_modules = ["HanForgeDecoderLayer"]
def _init_weights(self, module):
if isinstance(module, nn.Linear):
module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
if module.bias is not None:
module.bias.data.zero_()
elif isinstance(module, nn.Embedding):
module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
class HanForgeModel(HanForgePreTrainedModel):
def __init__(self, config: HanForgeConfig):
super().__init__(config)
self.embed_tokens = nn.Embedding(config.vocab_size, config.hidden_size)
self.layers = nn.ModuleList([HanForgeDecoderLayer(config, idx) for idx in range(config.num_hidden_layers)])
self.norm = HanForgeRMSNorm(config.hidden_size, config.rms_norm_eps)
self.rotary_emb = HanForgeRotaryEmbedding(config)
self.post_init()
def _build_causal_mask(self, batch_size: int, seq_len: int, device: torch.device) -> torch.Tensor:
base = torch.tril(torch.ones(seq_len, seq_len, device=device, dtype=torch.bool))
return base.unsqueeze(0).unsqueeze(0).expand(batch_size, 1, seq_len, seq_len)
# DISABLED (refactor 20260423, ยง4.1): sliding window local mask ๋นํ์ฑํ.
# def _build_local_mask(self, batch_size: int, seq_len: int, device: torch.device) -> torch.Tensor:
# row = torch.arange(seq_len, device=device)[:, None]
# col = torch.arange(seq_len, device=device)[None, :]
# causal = col <= row
# window = col >= (row - self.config.sliding_window + 1)
# mask = (causal & window).to(torch.bool)
# return mask.unsqueeze(0).unsqueeze(0).expand(batch_size, 1, seq_len, seq_len)
def forward(
self,
input_ids: torch.Tensor,
attention_mask: Optional[torch.Tensor] = None,
position_ids: Optional[torch.Tensor] = None,
return_dict: bool = True,
**_: dict,
):
batch_size, seq_len = input_ids.shape
hidden_states = self.embed_tokens(input_ids)
if position_ids is None:
position_ids = torch.arange(seq_len, device=input_ids.device).unsqueeze(0).expand(batch_size, -1)
cos, sin = self.rotary_emb(hidden_states, position_ids)
full_mask = self._build_causal_mask(batch_size, seq_len, hidden_states.device)
if attention_mask is not None:
key_mask = attention_mask[:, None, None, :].to(torch.bool)
full_mask = full_mask & key_mask
# DISABLED (refactor 20260423, ยง4.1): ๋ชจ๋ layer๊ฐ full causal mask ์ฌ์ฉ.
# local_mask ๋ถ๊ธฐ๋ hybrid attention ์ฌ๋์
์์๋ง ์ฌ์ฉํ๋ค.
for layer in self.layers:
hidden_states = layer(hidden_states, cos, sin, full_mask)
hidden_states = self.norm(hidden_states)
if not return_dict:
return (hidden_states,)
return BaseModelOutputWithPast(last_hidden_state=hidden_states)
class HanForgeForCausalLM(HanForgePreTrainedModel, GenerationMixin):
# refactor 20260507 (ยงformat/EOS): _tied_weights_keys ์์ ์ ๊ฑฐ.
# transformers 5.x์ _tied_weights_keys ๋ฉ์ปค๋์ฆ์ด Phase 1 ๋๋ฒ๊น
์์ from_pretrained ์
# .bin ํ์ผ์ ํ์ต๋ weight๋ฅผ silentํ๊ฒ ๋ฌด์ํ๊ณ random init ๊ทธ๋๋ก ์ฌ์ฉํ๋ ๋ฒ๊ทธ๋ฅผ
# ์ผ์ผํด. config tie_word_embeddings=False์ ๊ฒฐํฉํด์ ๋ weight๋ฅผ ๋ณ๊ฐ๋ก ๋ช
์ ์ฒ๋ฆฌ.
# (๊ฐ๋ฅํ๋ฉด ํ์ต ๋ชจ๋ธ์ tie_word_embeddings=False๋ก ์ ์ฅ. base ๋ชจ๋ธ์ ์ผ์์ ์ผ๋ก ์ํ.)
_tied_weights_keys = None
def __init__(self, config: HanForgeConfig):
super().__init__(config)
self.model = HanForgeModel(config)
self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
self.post_init()
# refactor 20260423 (ยง9): tie lm_head.weight to embed_tokens.weight
# post_init ์์์ PreTrainedModel.tie_weights()๊ฐ ๋์ผ ์์
์ ์๋ํ์ง๋ง,
# ์์ ๋ชจ๋ธ + 32k vocab์์ ํ๋ผ๋ฏธํฐ ์ ์ฝ์ ๋ณด์ฅํ๊ธฐ ์ํด ๋ช
์์ ์ผ๋ก ํ๋ค.
if getattr(config, "tie_word_embeddings", True):
self.lm_head.weight = self.model.embed_tokens.weight
def get_input_embeddings(self):
return self.model.embed_tokens
def set_input_embeddings(self, value):
self.model.embed_tokens = value
def get_output_embeddings(self):
return self.lm_head
def set_output_embeddings(self, new_embeddings):
self.lm_head = new_embeddings
def prepare_inputs_for_generation(self, input_ids, attention_mask=None, **kwargs):
if attention_mask is None:
attention_mask = torch.ones_like(input_ids, dtype=torch.long)
position_ids = attention_mask.long().cumsum(-1) - 1
position_ids = position_ids.clamp_min(0)
return {
"input_ids": input_ids,
"attention_mask": attention_mask,
"position_ids": position_ids,
}
def forward(
self,
input_ids: torch.Tensor,
attention_mask: Optional[torch.Tensor] = None,
labels: Optional[torch.Tensor] = None,
return_dict: bool = True,
**kwargs,
):
outputs = self.model(input_ids=input_ids, attention_mask=attention_mask, return_dict=True, **kwargs)
hidden_states = outputs.last_hidden_state
logits = self.lm_head(hidden_states)
loss = None
if labels is not None:
shift_logits = logits[:, :-1, :].contiguous()
shift_labels = labels[:, 1:].contiguous()
loss = F.cross_entropy(
shift_logits.view(-1, shift_logits.size(-1)),
shift_labels.view(-1),
ignore_index=-100,
)
if not return_dict:
result = (logits,)
if loss is not None:
result = (loss,) + result
return result
return CausalLMOutputWithPast(loss=loss, logits=logits)
|