Views
No views yet
| Checkpoint | Params | Description |
|---|---|---|
checkpoints/fno_gla_gpu_v3_22b/step_111897_final.pt | 1.13B | Main FELA model, trained on 22B tokens (6×B200) |
checkpoints/chunk_ablation/variant_64/final.pt | 109M | GLA chunk ablation - C=64 |
checkpoints/chunk_ablation/variant_256/final.pt | 109M | GLA chunk ablation - C=256 |
checkpoints/chunk_ablation/variant_512/final.pt | 109M | GLA chunk ablation - C=512 |
checkpoints/chunk_ablation/variant_1024/final.pt | 109M | GLA chunk ablation - C=1024 |
checkpoints/cpu_diloco_v9/v9_step001500.pt | 109M | CPU DiLoCo v9 - 10x c7i.4xlarge, 1.5B tokens |
checkpoints/fela_byte_128m/step_038146_final.pt | 128M | Byte-level LM - no tokenizer, vocab=261, 5B bytes, val_bpb=1.692 |
1pip install uv
2uv syncpip install torch datasets tiktoken lm-eval boto31python scripts/train_gpu.py \
2 --config gpt2-1b \
3 --data-dir /path/to/data \
4 --ckpt-dir checkpoints/run1python train_cpu_gpt2.py \
2 --config gpt2-small \
3 --tokens 5e8 \
4 --node-rank $RANK \
5 --num-nodes 10 \
6 --master-ip $MASTER_IP \
7 --s3-bucket my-bucket \
8 --run-name cpu_gpt21python scripts/run_eval.py \
2 --checkpoint checkpoints/fno_gla_gpu_v3_22b/step_111897_final.pt \
3 --tasks wikitext,boolq,hellaswag,arc_easy,piqaresults/paper_eval_22b/:| File | Contents |
|---|---|
lm_eval_results.json | BoolQ, HellaSwag, ARC-E, PIQA, WinoGrande |
longctx_bpb.csv | BPB vs context length (256→65K tokens) |
throughput.csv | Prefill throughput on NVIDIA B200 |
wallclock.csv | Prefill throughput on NVIDIA A10G vs SDPA |
vram.csv | Peak VRAM vs sequence length (A10G) |
needle_heatmap.json | Passkey retrieval accuracy heatmap |
python prepare.py