Views
No views yet
| architecture | base |
| d_model | 896 |
| effective layers | 16 |
| compute budget | 1e18 FLOPs |
| training steps | 41,346 |
| parameters (stored) | 246,036,224 |
| peak LR | 0.01 |
| batch size | 16 |
| data-order seed | 45 |
| init seed | 42 |
| muP width_ratio | 7.0 (d_base=128) |
42 for all four runs, as is the validation-batch order.
The spread across seeds 42-45 therefore measures data-order variance, which is a
lower bound on full run-to-run variance — a study that also varied initialization
would be expected to show equal or greater spread. Do not read these error bars as
total training noise.1from transformers import AutoModelForCausalLM, AutoTokenizer
2m = AutoModelForCausalLM.from_pretrained(
3 "ml-ryanlee/seedvar-base-1e18-d896-seed45", trust_remote_code=True)
4tok = AutoTokenizer.from_pretrained("gpt2")core_9mcqa::olmes.
When evaluating, pass max_length=1024 — the RoPE buffer is sized to the 1024-token
training context and longer sequences overflow it.