Views
No views yet
| Field | Value |
|---|---|
| Parameters | 9,968,128 |
| Layers | 10 |
| Hidden size | 256 |
| Intermediate size | 768 |
| Query heads | 4 |
| KV heads | 2 |
| Head dimension | 64 |
| Context | 4,096 |
| Vocabulary | 8,192 |
| Embeddings | Tied |
| Attention | GQA, pre-RoPE QK norm |
| MLP | SwiGLU |
| Position encoding | RoPE, theta 100,000 |
| Field | Value |
|---|---|
| Dataset | HuggingFaceFW/fineweb-edu / sample-100BT |
| Dataset revision | 87f09149ef4734204d70ed1d046ddc9ca3f2b8f9 |
| Data access | Streaming |
| Hidden-matrix optimizer | Aspect-Cautious Muon |
| Muon peak learning rate | 0.05 |
| Muon momentum | 0.95, Nesterov |
| Muon Newton-Schulz steps | 5 |
| Cautious Adam residual peak LR | 0.0003 |
| Residual aspect scaling | min(2, sqrt(long_side / short_side)) |
| Embedding/norm optimizer | AdamW |
| AdamW peak learning rate | 0.003 |
| AdamW betas | (0.9, 0.95) |
| Global batch | 132 sequences |
| Tokens per optimizer step | 540,672 |
| Optimizer steps | 46,238 |
| Warmup | 1,750 steps |
| Schedule | Warmup-stable-decay, final 15% cosine cooldown |
| Weight decay | 0.1, then 0.01 after 12,000,000,000 tokens |
| Precision | bfloat16 autocast, float32 master weights |
| Hardware | 8 x NVIDIA RTX PRO 6000 Blackwell Server Edition |
| Seed | 1337 |
1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4model_id = "Banaxi-Tech/custom-optimizer-model-test"
5tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
6model = AutoModelForCausalLM.from_pretrained(
7 model_id,
8 trust_remote_code=True,
9 dtype=torch.bfloat16,
10 device_map="auto",
11)