Views
No views yet
| Size | HF Base | Checkpoint | Total Params | Non-embedding Params | Tokens seen (pretrain) | Tokens / Param |
|---|---|---|---|---|---|---|
| 70M | EleutherAI/pythia-70m | step 512 | 70.4M | 18.9M | ~1.07B | ~15 + continued |
| 160M | EleutherAI/pythia-160m | step 1000 | ~162M | ~125M | ~2.1B | ~13 + continued |
| 410M | EleutherAI/pythia-410m | step 3000 | 405.3M | ~350M | ~6.29B | ~15.5 + continued |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "avgJo3/a2d-gpt-neox-160M" # or 70m / 160m variant
4revision = "main" # or specific checkpoint tag if uploaded separately
5
6model = AutoModelForCausalLM.from_pretrained(
7 model_name,
8 revision=revision,
9 trust_remote_code=True
10)
11tokenizer = AutoTokenizer.from_pretrained(
12 model_name,
13 revision=revision,
14 trust_remote_code=True
15)1@article{biderman2023pythia,
2 title={Pythia: A Suite for Analyzing Large Language Models Across Training and Scaling},
3 author={Biderman, Stella and others},
4 journal={ICML},
5 year={2023}
6}