File size: 13,302 Bytes
6838da9 | 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 | #!/usr/bin/env python3
"""
Train a small GPT (GPT-2-small scale, ~124M params by default) on the
wiki_dump.txt produced by wiki_dump_from_dataset.py, on a single RTX 4090.
What it does:
1. Tokenizes wiki_dump.txt with GPT-2 BPE (tiktoken), stripping the
-----START PAGE----- / -----END PAGE----- markers first.
Caches the tokenized result to .bin files next to the input so re-runs
skip tokenization.
2. Trains a nanoGPT-style decoder-only transformer with bf16 autocast,
flash attention (via F.scaled_dot_product_attention), and torch.compile.
3. Stops on a TIME BUDGET (default 25 min) rather than a fixed iteration
count, since throughput varies by host — this keeps you inside a
30-minute rental window regardless of exact hardware.
4. Shows a tqdm progress bar with live loss + ETA, and prints a sample
generation at the end so you can sanity-check the result.
Usage:
pip install torch tiktoken tqdm numpy
python train_wiki_gpt.py --data wiki_dump.txt --max-minutes 25
Defaults target GPT-2-small (12 layer / 12 head / 768 dim, ~124M params)
sized to comfortably fit a 24GB 4090 with room to spare. Pass --n-layer /
--n-head / --n-embd to shrink further if you want faster iterations.
"""
import argparse
import math
import os
import re
import sys
import time
import numpy as np
import torch
import torch.nn as nn
import torch.nn.functional as F
from tqdm import tqdm
START_MARK = "-----START PAGE-----"
END_MARK = "-----END PAGE-----"
# --------------------------------------------------------------------------
# Data prep: strip markers, tokenize with GPT-2 BPE, cache to .bin
# --------------------------------------------------------------------------
def prepare_data(txt_path: str, val_fraction: float = 0.01):
import tiktoken
base = os.path.splitext(txt_path)[0]
train_bin = base + ".train.bin"
val_bin = base + ".val.bin"
if os.path.exists(train_bin) and os.path.exists(val_bin):
print(f"Found cached tokens: {train_bin}, {val_bin}")
return train_bin, val_bin
print("Tokenizing (first run only, cached after this)...")
with open(txt_path, "r", encoding="utf-8", errors="ignore") as f:
raw = f.read()
# Strip the page markers and titles-as-separators; keep article text.
raw = raw.replace(START_MARK, "").replace(END_MARK, "")
enc = tiktoken.get_encoding("gpt2")
ids = enc.encode_ordinary(raw)
ids = np.array(ids, dtype=np.uint16) # gpt2 vocab (50257) fits in uint16
n_val = int(len(ids) * val_fraction)
train_ids = ids[:-n_val] if n_val > 0 else ids
val_ids = ids[-n_val:] if n_val > 0 else ids[-1000:]
train_ids.tofile(train_bin)
val_ids.tofile(val_bin)
print(f"Tokenized: {len(ids):,} tokens total "
f"({len(train_ids):,} train / {len(val_ids):,} val)")
return train_bin, val_bin
def get_batch(bin_path: str, block_size: int, batch_size: int, device: str):
data = np.memmap(bin_path, dtype=np.uint16, mode="r")
ix = torch.randint(len(data) - block_size - 1, (batch_size,))
x = torch.stack([torch.from_numpy(data[i:i + block_size].astype(np.int64)) for i in ix])
y = torch.stack([torch.from_numpy(data[i + 1:i + 1 + block_size].astype(np.int64)) for i in ix])
x, y = x.to(device, non_blocking=True), y.to(device, non_blocking=True)
return x, y
# --------------------------------------------------------------------------
# Model: minimal nanoGPT-style decoder-only transformer
# --------------------------------------------------------------------------
class CausalSelfAttention(nn.Module):
def __init__(self, n_embd, n_head, block_size, dropout):
super().__init__()
assert n_embd % n_head == 0
self.n_head = n_head
self.n_embd = n_embd
self.c_attn = nn.Linear(n_embd, 3 * n_embd, bias=False)
self.c_proj = nn.Linear(n_embd, n_embd, bias=False)
self.attn_dropout = dropout
self.resid_dropout = nn.Dropout(dropout)
def forward(self, x):
B, T, C = x.shape
q, k, v = self.c_attn(x).split(self.n_embd, dim=2)
q = q.view(B, T, self.n_head, C // self.n_head).transpose(1, 2)
k = k.view(B, T, self.n_head, C // self.n_head).transpose(1, 2)
v = v.view(B, T, self.n_head, C // self.n_head).transpose(1, 2)
y = F.scaled_dot_product_attention(
q, k, v, is_causal=True,
dropout_p=self.attn_dropout if self.training else 0.0,
)
y = y.transpose(1, 2).contiguous().view(B, T, C)
return self.resid_dropout(self.c_proj(y))
class MLP(nn.Module):
def __init__(self, n_embd, dropout):
super().__init__()
self.c_fc = nn.Linear(n_embd, 4 * n_embd, bias=False)
self.gelu = nn.GELU()
self.c_proj = nn.Linear(4 * n_embd, n_embd, bias=False)
self.dropout = nn.Dropout(dropout)
def forward(self, x):
return self.dropout(self.c_proj(self.gelu(self.c_fc(x))))
class Block(nn.Module):
def __init__(self, n_embd, n_head, block_size, dropout):
super().__init__()
self.ln_1 = nn.LayerNorm(n_embd)
self.attn = CausalSelfAttention(n_embd, n_head, block_size, dropout)
self.ln_2 = nn.LayerNorm(n_embd)
self.mlp = MLP(n_embd, dropout)
def forward(self, x):
x = x + self.attn(self.ln_1(x))
x = x + self.mlp(self.ln_2(x))
return x
class GPT(nn.Module):
def __init__(self, vocab_size, block_size, n_layer, n_head, n_embd, dropout=0.0):
super().__init__()
self.block_size = block_size
self.tok_emb = nn.Embedding(vocab_size, n_embd)
self.pos_emb = nn.Embedding(block_size, n_embd)
self.drop = nn.Dropout(dropout)
self.blocks = nn.ModuleList(
[Block(n_embd, n_head, block_size, dropout) for _ in range(n_layer)]
)
self.ln_f = nn.LayerNorm(n_embd)
self.head = nn.Linear(n_embd, vocab_size, bias=False)
self.tok_emb.weight = self.head.weight # weight tying
self.apply(self._init_weights)
n_params = sum(p.numel() for p in self.parameters())
print(f"Model: {n_params / 1e6:.1f}M parameters")
def _init_weights(self, 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):
B, T = idx.shape
pos = torch.arange(T, device=idx.device)
x = self.drop(self.tok_emb(idx) + self.pos_emb(pos))
for block in self.blocks:
x = block(x)
x = self.ln_f(x)
logits = self.head(x)
loss = None
if targets is not None:
loss = F.cross_entropy(logits.view(-1, logits.size(-1)), targets.view(-1))
return logits, loss
@torch.no_grad()
def generate(self, idx, max_new_tokens, temperature=0.8, top_k=50):
for _ in range(max_new_tokens):
idx_cond = idx[:, -self.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)
next_id = torch.multinomial(probs, num_samples=1)
idx = torch.cat((idx, next_id), dim=1)
return idx
# --------------------------------------------------------------------------
# Training
# --------------------------------------------------------------------------
def get_lr(it, warmup_iters, lr_decay_iters, max_lr, min_lr):
if it < warmup_iters:
return max_lr * (it + 1) / warmup_iters
if it > lr_decay_iters:
return min_lr
ratio = (it - warmup_iters) / (lr_decay_iters - warmup_iters)
coeff = 0.5 * (1.0 + math.cos(math.pi * ratio))
return min_lr + coeff * (max_lr - min_lr)
def main():
parser = argparse.ArgumentParser(description="Train a small GPT on the wiki text dump.")
parser.add_argument("--data", type=str, default="wiki_dump.txt", help="Path to the text dump")
parser.add_argument("--out-dir", type=str, default="out", help="Checkpoint output dir")
parser.add_argument("--max-minutes", type=float, default=25, help="Hard time budget for training")
parser.add_argument("--block-size", type=int, default=512, help="Context length")
parser.add_argument("--batch-size", type=int, default=64, help="Batch size (fits 24GB at these dims)")
parser.add_argument("--n-layer", type=int, default=12)
parser.add_argument("--n-head", type=int, default=12)
parser.add_argument("--n-embd", type=int, default=768)
parser.add_argument("--lr", type=float, default=6e-4)
parser.add_argument("--min-lr", type=float, default=6e-5)
parser.add_argument("--weight-decay", type=float, default=0.1)
parser.add_argument("--grad-clip", type=float, default=1.0)
parser.add_argument("--eval-interval", type=int, default=200)
parser.add_argument("--no-compile", action="store_true", help="Disable torch.compile")
args = parser.parse_args()
if not torch.cuda.is_available():
print("No CUDA GPU found. This script needs a GPU (e.g. the rented 4090).")
sys.exit(1)
device = "cuda"
torch.backends.cuda.matmul.allow_tf32 = True
torch.backends.cudnn.allow_tf32 = True
torch.manual_seed(1337)
os.makedirs(args.out_dir, exist_ok=True)
train_bin, val_bin = prepare_data(args.data)
vocab_size = 50304 # round up from gpt2's 50257 to a multiple of 64 for faster matmuls
model = GPT(
vocab_size=vocab_size,
block_size=args.block_size,
n_layer=args.n_layer,
n_head=args.n_head,
n_embd=args.n_embd,
dropout=0.0,
).to(device)
if not args.no_compile:
try:
model = torch.compile(model)
print("torch.compile enabled")
except Exception as e:
print(f"torch.compile unavailable ({e}), continuing without it")
optimizer = torch.optim.AdamW(
model.parameters(), lr=args.lr, weight_decay=args.weight_decay, betas=(0.9, 0.95)
)
# Rough iteration budget just for the LR schedule shape; the real stop
# condition is the wall-clock timer below, not this count.
warmup_iters = 100
lr_decay_iters = 20000
max_seconds = args.max_minutes * 60
start_time = time.time()
@torch.no_grad()
def estimate_val_loss():
model.eval()
losses = []
for _ in range(20):
x, y = get_batch(val_bin, args.block_size, args.batch_size, device)
with torch.autocast(device_type="cuda", dtype=torch.bfloat16):
_, loss = model(x, y)
losses.append(loss.item())
model.train()
return sum(losses) / len(losses)
model.train()
it = 0
pbar = tqdm(total=max_seconds, unit="s", desc="Training (time budget)")
last_elapsed = 0.0
while True:
elapsed = time.time() - start_time
if elapsed >= max_seconds:
break
lr = get_lr(it, warmup_iters, lr_decay_iters, args.lr, args.min_lr)
for g in optimizer.param_groups:
g["lr"] = lr
x, y = get_batch(train_bin, args.block_size, args.batch_size, device)
with torch.autocast(device_type="cuda", dtype=torch.bfloat16):
_, loss = model(x, y)
optimizer.zero_grad(set_to_none=True)
loss.backward()
torch.nn.utils.clip_grad_norm_(model.parameters(), args.grad_clip)
optimizer.step()
if it % args.eval_interval == 0:
val_loss = estimate_val_loss()
tqdm.write(f"iter {it}: train loss {loss.item():.4f}, val loss {val_loss:.4f}, lr {lr:.2e}")
torch.save(
{"model": model.state_dict(), "iter": it, "args": vars(args)},
os.path.join(args.out_dir, "ckpt.pt"),
)
pbar.update(elapsed - last_elapsed)
pbar.set_postfix(loss=f"{loss.item():.3f}", iter=it)
last_elapsed = elapsed
it += 1
pbar.close()
# Final checkpoint
torch.save(
{"model": model.state_dict(), "iter": it, "args": vars(args)},
os.path.join(args.out_dir, "ckpt.pt"),
)
print(f"\nDone. Trained {it} iterations in {(time.time() - start_time) / 60:.1f} min. "
f"Checkpoint saved to {os.path.join(args.out_dir, 'ckpt.pt')}")
# Sample generation as a sanity check
import tiktoken
enc = tiktoken.get_encoding("gpt2")
model.eval()
prompt = "The history of"
idx = torch.tensor([enc.encode_ordinary(prompt)], dtype=torch.long, device=device)
out = model.generate(idx, max_new_tokens=150)
print("\n--- Sample generation ---")
print(enc.decode(out[0].tolist()))
if __name__ == "__main__":
main() |