Views
No views yet
markhenry/cayley-large-2L-mlp_in-20B,
the CayleySAE flagship at the same chassis. Same backbone, same training recipe
verbatim except sparsity_mode=none — the SAE bottleneck is the only
architectural difference.| cayley-large-2L-mlp_in-20B | vanilla-large-parity-3B | |
|---|---|---|
| val_loss (CE) | 2.8081 | 2.8284 |
| training tokens | 20.0B | 3.000B |
| iters | 12,716 | 5,723 |
| n_layer / d_model / heads | 24 / 2048 / 16 | 24 / 2048 / 16 |
| pos enc | learned | learned |
| optimizer | Muon + AdamW (decoupled) | Muon + AdamW (decoupled) |
n_layer=24, n_head=16, n_embd=2048
seq_len=1024, pos_encoding=learned, vocab=50304
sparsity_mode=none
optimizer: Muon + AdamW (decoupled)
muon_lr = 8e-3 → 1e-4
adamw_lr = 3e-4 → 1e-5
schedule: linear_warmdown, warmup=200, warmdown_frac=0.5
batch_size = 64, gradient_accumulation_steps = 8
tokens/iter = 64 × 1024 × 8 = 524,288
max_tokens = 3.0B → max_iters = 5,723
warmdown starts at iter 2,861 (50% point)val(N, D) = E + A·N^(−α) + B·D^(−β) to ten calibration probes:| n_layer | d_model | N | D | observed val |
|---|---|---|---|---|
| 6 | 512 | 44.7M | 0.5B | 4.244 |
| 6 | 512 | 44.7M | 1.0B | 3.890 |
| 6 | 512 | 44.7M | 2.0B | 3.702 |
| 12 | 512 | 63.5M | 1.0B | 3.759 |
| 12 | 512 | 63.5M | 2.0B | 3.558 |
| 24 | 1024 | 354M | 0.5B | 3.573 |
| 24 | 1024 | 354M | 1.0B | 3.284 |
| 24 | 1024 | 354M | 2.0B | 3.090 |
| 24 | 1024 | 354M | 4.0B | 2.958 |
| 24 | 2048 | 1311M | 3.0B | 2.828 (this) |
12 · n_layer · d² + vocab · d (vocab=50304).ckpt.pt — full checkpoint (model + Muon momentum + AdamW state + iter_num,
best_val_loss, wandb_step_offset). 5.46 GB.config.json — training config snapshot.train_vanilla_large_parity_3B.sh — the script that produced this checkpoint.1import torch
2ckpt = torch.load("ckpt.pt", map_location="cpu", weights_only=False)
3# ckpt contains: model, optimizer_states, iter_num=5723, best_val_loss=2.8284, config, model_configckpt["model"] and build the model from config.json.cayley-large-2L-mlp_in-20B for alignment-tax measurements at the 1.3B chassis.