Views
No views yet
| Architecture | LLaMA-style Transformer (12 layers, 1024 hidden, 16 heads, GQA) |
| Parameters | ~300M |
| Optimizer | AdamW |
| Data perturbation | addition-only data (e.g., '123 + 456 = 579') |
| Training data | deqing/addition_dataset |
| Context length | 1024 |
| Tokenizer | Llama 3 (128K vocab) |
| Batch size | 512 sequences |
1from transformers import AutoModelForCausalLM
2
3# Load final checkpoint
4model = AutoModelForCausalLM.from_pretrained("deqing/convergent-llama-300M-adamw-addition")tokens-200M, tokens-400M, ..., tokens-5.0B.1# Load intermediate checkpoint (e.g., at 1B tokens)
2model = AutoModelForCausalLM.from_pretrained("deqing/convergent-llama-300M-adamw-addition", revision="tokens-1B")