File size: 10,832 Bytes
17c23ae | 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 | #!/usr/bin/env python3
"""
SymbolicLight — Validation Script
================================
Evaluate the trained model on the TinyStories validation set.
Metrics:
1. Validation Loss / Perplexity
2. Sparsity statistics (average/min/max)
3. Simple text generation demo
Usage:
python validate.py
python validate.py --checkpoint checkpoints/best.pt
python validate.py --generate --prompt "Once upon a time"
"""
import argparse
import math
import sys
import time
import os
import torch
import torch.nn.functional as F
from model import SymbolicLightConfig, SymbolicLightModel
# Windows terminal UTF-8
if sys.platform == 'win32':
os.system('chcp 65001 > nul')
sys.stdout.reconfigure(encoding='utf-8', errors='replace')
def parse_args():
p = argparse.ArgumentParser(description="SymbolicLight Validation")
p.add_argument("--checkpoint", type=str, default="./checkpoints/best.pt",
help="Model checkpoint path")
p.add_argument("--max_samples", type=int, default=5000,
help="Maximum number of validation samples (to reduce wait time)")
p.add_argument("--batch_size", type=int, default=16,
help="Validation batch size")
p.add_argument("--seq_len", type=int, default=256,
help="Sequence length")
p.add_argument("--generate", action="store_true",
help="Whether to run text generation demo")
p.add_argument("--prompt", type=str, default="Once upon a time",
help="Prompt for generation")
p.add_argument("--max_new_tokens", type=int, default=200,
help="Maximum number of generated tokens")
p.add_argument("--temperature", type=float, default=0.8,
help="Generation temperature")
p.add_argument("--top_k", type=int, default=50,
help="Top-K sampling")
return p.parse_args()
def load_model(checkpoint_path, device):
"""Load model and checkpoint"""
print(f"[Model] Loading checkpoint: {checkpoint_path}")
ckpt = torch.load(checkpoint_path, map_location=device, weights_only=False)
# Restore configuration from checkpoint
if "config" in ckpt:
cfg_dict = ckpt["config"]
config = SymbolicLightConfig()
for k, v in cfg_dict.items():
if hasattr(config, k):
setattr(config, k, v)
print(f"[Model] Config loaded from checkpoint")
else:
config = SymbolicLightConfig()
config.vocab_size = 50257
print(f"[Model] Using default config")
model = SymbolicLightModel(config)
# Load weights (strict=False to ignore buffers like v_mem)
if "model_state_dict" in ckpt:
model.load_state_dict(ckpt["model_state_dict"], strict=False)
elif "model" in ckpt:
model.load_state_dict(ckpt["model"], strict=False)
else:
model.load_state_dict(ckpt, strict=False)
model = model.to(device)
model.eval()
# Disable EntropyGate early exit and STDP during validation
# EntropyGate causes exit at layer 0 in eval mode, must be disabled for fair evaluation
for block in model.blocks:
block.entropy_gate.threshold = 0.0 # Do not early exit
model.stdp.enabled = False # Do not update weights online
print(f"[Model] Disabled entropy gate early exit and STDP for validation")
# Print model information
n_params = sum(p.numel() for p in model.parameters())
step = ckpt.get("step", "?")
loss = ckpt.get("best_loss", ckpt.get("loss", "?"))
print(f"[Model] Parameters: {n_params:,} ({n_params/1e6:.1f}M)")
print(f"[Model] Checkpoint step: {step}, loss: {loss}")
return model, config
def load_validation_data(seq_len, max_samples):
"""Load TinyStories validation set"""
import tiktoken
from datasets import load_dataset
enc = tiktoken.get_encoding("gpt2")
print(f"[Data] Loading TinyStories (validation) from HuggingFace...")
ds = load_dataset("roneneldan/TinyStories", split="validation")
print(f"[Data] Loaded {len(ds):,} validation stories")
# Tokenize
print(f"[Data] Tokenizing...")
all_tokens = []
for i, example in enumerate(ds):
text = example.get("text", "")
tokens = enc.encode(text, allowed_special=set())
all_tokens.extend(tokens)
if len(all_tokens) > max_samples * seq_len * 2:
break # Enough
if (i + 1) % 50000 == 0:
print(f" ... tokenized {i+1:,} stories ({len(all_tokens):,} tokens)")
n_samples = min(max_samples, (len(all_tokens) - 1) // seq_len)
print(f"[Data] Total: {len(all_tokens):,} tokens, {n_samples:,} validation samples")
# Convert to tensor
tokens_tensor = torch.tensor(all_tokens[:n_samples * seq_len + 1], dtype=torch.long)
return tokens_tensor, n_samples, enc
@torch.no_grad()
def validate(model, tokens_tensor, n_samples, seq_len, batch_size, device):
"""Calculate loss, perplexity, and sparsity on the validation set"""
model.eval()
total_loss = 0.0
total_tokens = 0
sparsity_list = []
n_batches = 0
print(f"\n{'='*60}")
print(f" VALIDATION ({n_samples:,} samples, batch_size={batch_size})")
print(f"{'='*60}")
start_time = time.time()
for start_idx in range(0, n_samples, batch_size):
end_idx = min(start_idx + batch_size, n_samples)
actual_bs = end_idx - start_idx
# Construct batch
x_list = []
y_list = []
for i in range(start_idx, end_idx):
offset = i * seq_len
x_list.append(tokens_tensor[offset:offset + seq_len])
y_list.append(tokens_tensor[offset + 1:offset + seq_len + 1])
x = torch.stack(x_list).to(device)
y = torch.stack(y_list).to(device)
# Forward (model.forward only returns logits)
with torch.amp.autocast('cuda', dtype=torch.float16):
logits = model(x)
# Loss
loss = F.cross_entropy(
logits.view(-1, logits.size(-1)),
y.view(-1)
)
total_loss += loss.item() * actual_bs * seq_len
total_tokens += actual_bs * seq_len
# Infer sparsity from logits: use model.spike_encoder output
# Note: Do not call spike_encoder separately, it will pollute the membrane potential
# Temporarily skip per-batch sparsity, do a global sampling at the end
n_batches += 1
if n_batches % 50 == 0:
avg_loss_so_far = total_loss / total_tokens
avg_ppl_so_far = math.exp(min(avg_loss_so_far, 20)) # Prevent overflow
elapsed = time.time() - start_time
print(f" Batch {n_batches:4d} | Loss: {avg_loss_so_far:.4f} | "
f"PPL: {avg_ppl_so_far:7.2f} | "
f"Time: {elapsed:.1f}s")
# Final results
avg_loss = total_loss / total_tokens
avg_ppl = math.exp(avg_loss)
elapsed = time.time() - start_time
print(f"\n{'='*60}")
print(f" VALIDATION RESULTS")
print(f"{'='*60}")
print(f" Validation Loss: {avg_loss:.4f}")
print(f" Validation Perplexity: {avg_ppl:.2f}")
if sparsity_list:
avg_sp = sum(sparsity_list) / len(sparsity_list) * 100
min_sp = min(sparsity_list) * 100
max_sp = max(sparsity_list) * 100
print(f" Sparsity (avg): {avg_sp:.1f}%")
print(f" Sparsity (min/max): {min_sp:.1f}% / {max_sp:.1f}%")
print(f" Total tokens: {total_tokens:,}")
print(f" Time: {elapsed:.1f}s")
print(f" Throughput: {total_tokens/elapsed:,.0f} tok/s")
print(f"{'='*60}\n")
return avg_loss, avg_ppl
@torch.no_grad()
def generate_text(model, enc, prompt, max_new_tokens, temperature, top_k, device):
"""Autoregressive text generation"""
model.eval()
print(f"\n{'='*60}")
print(f" TEXT GENERATION")
print(f"{'='*60}")
print(f" Prompt: \"{prompt}\"")
print(f" Temperature: {temperature}, Top-K: {top_k}")
print(f" Max new tokens: {max_new_tokens}")
print(f"{'='*60}\n")
# Encode prompt
token_ids = enc.encode(prompt, allowed_special=set())
tokens = torch.tensor([token_ids], dtype=torch.long, device=device)
generated = list(token_ids)
start_time = time.time()
for i in range(max_new_tokens):
# Truncate to max_seq_len
input_ids = tokens[:, -256:] # Use seq_len from training
with torch.amp.autocast('cuda', dtype=torch.float16):
logits = model(input_ids)
# Take logits at the last position
next_logits = logits[:, -1, :] / temperature
# Top-K filtering
if top_k > 0:
values, _ = torch.topk(next_logits, top_k)
min_val = values[:, -1].unsqueeze(-1)
next_logits = torch.where(
next_logits < min_val,
torch.full_like(next_logits, float('-inf')),
next_logits
)
probs = F.softmax(next_logits, dim=-1)
next_token = torch.multinomial(probs, num_samples=1)
generated.append(next_token.item())
tokens = torch.cat([tokens, next_token], dim=1)
# Can stop early when encountering eos token
# (TinyStories has no special eos token, stop by length)
elapsed = time.time() - start_time
output_text = enc.decode(generated)
print(f"--- Generated Text ---")
print(output_text)
print(f"--- End ---")
print(f"\n[{max_new_tokens} tokens in {elapsed:.2f}s, "
f"{max_new_tokens/elapsed:.1f} tok/s]")
return output_text
def main():
args = parse_args()
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
print(f"[Device] {device}")
# Load model
model, config = load_model(args.checkpoint, device)
# Load validation data
tokens_tensor, n_samples, enc = load_validation_data(args.seq_len, args.max_samples)
# Validate
val_loss, val_ppl = validate(model, tokens_tensor, n_samples,
args.seq_len, args.batch_size, device)
# Text generation demo
if args.generate or True: # Run generation by default
prompts = [
"Once upon a time",
"The little cat",
"Mom said to the children",
]
for prompt in prompts:
generate_text(model, enc, prompt,
args.max_new_tokens, args.temperature,
args.top_k, device)
if __name__ == "__main__":
main()
|