File size: 11,961 Bytes
7dcac55 | 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 | """Decoder-only Transformer。RoPE + RMSNorm + SwiGLU + weight tying。
669万トークンしか無いので、パラメータは意図的に小さく取る (Chinchilla 最適は 33万)。
d_model / n_layers は環境変数で振れるようにしてある。
.venv-llm/bin/python scripts/llm/model.py # パラメータ数と過学習テスト
"""
import math
import os
from dataclasses import dataclass
import torch
import torch.nn.functional as F
from torch import nn
@dataclass
class Config:
vocab_size: int = 4096
n_layers: int = int(os.environ.get("LLM_LAYERS", 6))
d_model: int = int(os.environ.get("LLM_DMODEL", 256))
n_heads: int = int(os.environ.get("LLM_HEADS", 4))
context: int = int(os.environ.get("LLM_CONTEXT", 512))
dropout: float = float(os.environ.get("LLM_DROPOUT", 0.1))
# アテンション内の dropout は既定で切る。
#
# dropout_p > 0 を渡すと scaled_dot_product_attention は融合カーネルを使えず、
# B×H×T×T のアテンション行列を実体化する math 経路に落ちる
# (24×4×512×512 で 1 層あたり 100MB。6 層ぶんの往復でメモリ帯域を食い潰す)。
# 正則化は残差側の dropout で足りるので、ここは 0 にして融合経路に乗せる。
attn_dropout: float = float(os.environ.get("LLM_ATTN_DROPOUT", 0.0))
@property
def d_ff(self):
# SwiGLU は行列が 3 つなので、4*d_model 相当に合わせて 2/3 に縮める。
# 64 の倍数に丸めて行列積を素直にする。
raw = int(self.d_model * 4 * 2 / 3)
return (raw + 63) // 64 * 64
@property
def d_head(self):
return self.d_model // self.n_heads
class RMSNorm(nn.Module):
"""LayerNorm から平均を引く処理を落としたもの。小さいモデルでは差が出ないが安い。"""
def __init__(self, dim, eps=1e-6):
super().__init__()
self.weight = nn.Parameter(torch.ones(dim))
self.eps = eps
def forward(self, x):
norm = x.float().pow(2).mean(-1, keepdim=True).add(self.eps).rsqrt()
return (x.float() * norm).type_as(x) * self.weight
def rope_cache(context, d_head, device, base=10000.0):
"""RoPE の cos/sin を先に作っておく。学習中は使い回すだけ。"""
inv = 1.0 / (base ** (torch.arange(0, d_head, 2, device=device).float() / d_head))
pos = torch.arange(context, device=device).float()
freqs = torch.outer(pos, inv)
return freqs.cos(), freqs.sin()
def apply_rope(x, cos, sin):
# x: (B, heads, T, d_head)
t = x.shape[2]
cos = cos[:t].view(1, 1, t, -1)
sin = sin[:t].view(1, 1, t, -1)
# **回転は fp32 で計算して、最後に x の型に戻す。**
#
# cos/sin は fp32 の buffer なので、半精度の x と掛けると結果だけ fp32 に
# 昇格する。そのまま返すと q/k が fp32・v が半精度で
# scaled_dot_product_attention に入り、型が揃わない。
# 精度も落とさずに済むので、計算は fp32 のまま最後に揃える。
even, odd = x[..., 0::2].float(), x[..., 1::2].float()
rotated = torch.stack((even * cos - odd * sin, even * sin + odd * cos), dim=-1)
return rotated.flatten(-2).to(x.dtype)
class Attention(nn.Module):
def __init__(self, cfg):
super().__init__()
self.cfg = cfg
self.qkv = nn.Linear(cfg.d_model, cfg.d_model * 3, bias=False)
self.proj = nn.Linear(cfg.d_model, cfg.d_model, bias=False)
self.dropout = cfg.attn_dropout
def forward(self, x, cos, sin):
b, t, _ = x.shape
h, dh = self.cfg.n_heads, self.cfg.d_head
q, k, v = self.qkv(x).split(self.cfg.d_model, dim=2)
q = q.view(b, t, h, dh).transpose(1, 2)
k = k.view(b, t, h, dh).transpose(1, 2)
v = v.view(b, t, h, dh).transpose(1, 2)
q = apply_rope(q, cos, sin)
k = apply_rope(k, cos, sin)
# is_causal で三角マスクは自前で持たない (CPU でも flash 経路に乗る)
out = F.scaled_dot_product_attention(
q, k, v, is_causal=True, dropout_p=self.dropout if self.training else 0.0
)
return self.proj(out.transpose(1, 2).contiguous().view(b, t, self.cfg.d_model))
class SwiGLU(nn.Module):
def __init__(self, cfg):
super().__init__()
self.gate = nn.Linear(cfg.d_model, cfg.d_ff, bias=False)
self.up = nn.Linear(cfg.d_model, cfg.d_ff, bias=False)
self.down = nn.Linear(cfg.d_ff, cfg.d_model, bias=False)
def forward(self, x):
return self.down(F.silu(self.gate(x)) * self.up(x))
class Block(nn.Module):
def __init__(self, cfg):
super().__init__()
self.n1 = RMSNorm(cfg.d_model)
self.attn = Attention(cfg)
self.n2 = RMSNorm(cfg.d_model)
self.ff = SwiGLU(cfg)
self.drop = nn.Dropout(cfg.dropout)
def forward(self, x, cos, sin):
x = x + self.drop(self.attn(self.n1(x), cos, sin))
return x + self.drop(self.ff(self.n2(x)))
class MicroLM(nn.Module):
def __init__(self, cfg):
super().__init__()
self.cfg = cfg
self.embed = nn.Embedding(cfg.vocab_size, cfg.d_model)
self.drop = nn.Dropout(cfg.dropout)
self.blocks = nn.ModuleList(Block(cfg) for _ in range(cfg.n_layers))
self.norm = RMSNorm(cfg.d_model)
self.head = nn.Linear(cfg.d_model, cfg.vocab_size, bias=False)
# weight tying。669万トークンで語彙 4096 ぶんの出力行列を別に学ぶ余裕はない
self.head.weight = self.embed.weight
cos, sin = rope_cache(cfg.context, cfg.d_head, torch.device("cpu"))
self.register_buffer("cos", cos, persistent=False)
self.register_buffer("sin", sin, persistent=False)
self.apply(self._init)
# 残差の出口だけ層数でスケールを落とす (深くしたときに発散させない)
for name, param in self.named_parameters():
if name.endswith("proj.weight") or name.endswith("down.weight"):
nn.init.normal_(param, mean=0.0, std=0.02 / math.sqrt(2 * cfg.n_layers))
@staticmethod
def _init(module):
if isinstance(module, nn.Linear):
nn.init.normal_(module.weight, mean=0.0, std=0.02)
elif isinstance(module, nn.Embedding):
nn.init.normal_(module.weight, mean=0.0, std=0.02)
def forward(self, idx, targets=None):
x = self.drop(self.embed(idx))
for block in self.blocks:
x = block(x, self.cos, self.sin)
logits = self.head(self.norm(x))
if targets is None:
return logits, None
loss = F.cross_entropy(
logits.view(-1, logits.size(-1)), targets.reshape(-1), ignore_index=-1
)
return logits, loss
def parameter_count(self):
# tying しているので head は数えない (embed と同じテンソル)
seen = set()
total = 0
for param in self.parameters():
if id(param) in seen:
continue
seen.add(id(param))
total += param.numel()
return total
@torch.no_grad()
def generate(self, idx, max_new_tokens, temperature=0.9, top_k=40, stop_id=None,
ban_ids=None, min_new_tokens=0, min_p=0.0, repetition_penalty=1.0):
"""ban_ids: 絶対に出させないトークン。min_new_tokens: それまでは stop_id も出させない。
チャットに使うと `<url>` や `<file>` だけを吐いて終わることが多い
(実測 38%)。あれは正規化が作った記号で発言ではないので、
呼び出し側から外せるようにしてある。
min_p と repetition_penalty は **evex-ft (transformers) 側と同じ手を
こちらでも使えるようにするため**に足した。世代を読み比べるときに、
サンプリングが違うと差がモデル由来かハーネス由来か分からなくなる。
"""
self.eval()
for step in range(max_new_tokens):
window = idx[:, -self.cfg.context:]
logits, _ = self(window)
logits = logits[:, -1, :]
# 繰り返しペナルティは温度より前に掛ける (transformers と同じ順序)。
# 既に出したトークンの確率を割る。負の logit は掛ける方が下がるので分ける
if repetition_penalty and repetition_penalty != 1.0:
for row in range(idx.size(0)):
seen = torch.unique(idx[row])
picked = logits[row, seen]
logits[row, seen] = torch.where(
picked > 0, picked / repetition_penalty, picked * repetition_penalty
)
logits = logits / max(temperature, 1e-5)
if ban_ids:
logits[:, ban_ids] = float("-inf")
# 何か言う前に終わらせない
if stop_id is not None and step < min_new_tokens:
logits[:, stop_id] = float("-inf")
if top_k:
kth = torch.topk(logits, min(top_k, logits.size(-1))).values[:, -1:]
logits = logits.masked_fill(logits < kth, float("-inf"))
probs = F.softmax(logits, dim=-1)
# min_p: 最大確率の min_p 倍を下回る候補を切る。top_k だけより崩れが減る。
# 分布が尖っているときは強く絞り、平らなときは緩む
if min_p and min_p > 0:
floor = probs.max(dim=-1, keepdim=True).values * min_p
probs = torch.where(probs < floor, torch.zeros_like(probs), probs)
probs = probs / probs.sum(dim=-1, keepdim=True)
nxt = torch.multinomial(probs, num_samples=1)
idx = torch.cat((idx, nxt), dim=1)
if stop_id is not None and int(nxt) == stop_id:
break
return idx
if __name__ == "__main__":
cfg = Config()
model = MicroLM(cfg)
params = model.parameter_count()
print(f"layers {cfg.n_layers} / d_model {cfg.d_model} / heads {cfg.n_heads} "
f"/ d_ff {cfg.d_ff} / context {cfg.context}")
print(f"パラメータ {params:,} ({params / 1e6:.2f}M)")
embed = cfg.vocab_size * cfg.d_model
print(f" うち埋め込み {embed:,} ({embed / params * 100:.0f}%)")
print(f"669万トークンに対して {6_685_152 / params:.1f} トークン/パラメータ"
f" (Chinchilla 最適の {6_685_152 / params / 20 * 100:.0f}%)")
# --- 実装が正しいかの確認 ---
#
# 小さい切片を暗記させる。ここで loss が落ちないならモデルかデータの配線が
# 壊れているので、本番を一晩回す意味がない。
#
# dropout は切る。見ているのは「暗記できるか = 配線が通っているか」で、
# 正則化が効いていると当然落ちきらない (0.1 のままだと 400 step で 0.62 止まり、
# 切れば 200 step で 0.012 まで落ちる)。
torch.manual_seed(0)
model = MicroLM(Config(dropout=0.0))
data = torch.randint(0, cfg.vocab_size, (4, 65))
opt = torch.optim.AdamW(model.parameters(), lr=3e-3)
model.train()
losses = []
for step in range(200):
_, loss = model(data[:, :-1], data[:, 1:])
opt.zero_grad(set_to_none=True)
loss.backward()
opt.step()
losses.append(loss.item())
print(f"暗記テスト loss {losses[0]:.3f} -> {losses[-1]:.4f}")
assert losses[-1] < 0.1, f"暗記できていない (loss {losses[-1]:.3f})。配線が壊れている"
# 生成が止まること
out = model.generate(torch.zeros((1, 1), dtype=torch.long), max_new_tokens=8, stop_id=None)
assert out.shape == (1, 9), out.shape
print("model ok")
|