Views
No views yet
| Architecture | LLaMA-style Transformer (12 layers, 1024 hidden, 16 heads, GQA) |
| Parameters | ~300M |
| Optimizer | Muon (for 2D weights) + AdamW (for embeddings/bias/norm) |
| Data perturbation | block-diagonal attention mask (numbers cannot attend to context) |
| Training data | FineWeb-Edu sample-10BT (~9.4B tokens) |
| Context length | 1024 |
| Tokenizer | Llama 3 (128K vocab) |
| Batch size | 512 sequences |
tokens-200M, tokens-400M, ..., tokens-9.6B.1from transformers import AutoModelForCausalLM
2
3# Load final checkpoint
4model = AutoModelForCausalLM.from_pretrained("deqing/convergent-llama-300M-muon-isolate")
5
6# Load intermediate checkpoint (e.g., at 1B tokens)
7model = AutoModelForCausalLM.from_pretrained("deqing/convergent-llama-300M-muon-isolate", revision="tokens-1B")