Views
No views yet
| File | Architecture / training depth | Parameters | Robust best loop | Robust best CE / PPL |
|---|---|---|---|---|
checkpoints/curriculum_8_to_16_100m.pt | BASE, 60% of tokens at T=8 then 40% at T=16 | 7,342,592 | 16 | 4.381245 / 79.937 |
checkpoints/curriculum_16_to_8_100m.pt | BASE, matched reverse curriculum | 7,342,592 | 8 | 4.412476 / 82.473 |
checkpoints/base_fixed8_100m.pt | BASE, fixed T=8 | 7,342,592 | 8 | 4.374509 / 79.400 |
checkpoints/far_h0_fixed8_100m.pt | FAR-H0, fixed T=8 | 8,261,184 | 8 | 4.382841 / 80.064 |
curriculum_8_to_16_100m.pt. Its useful inference-depth
optimum moves to loop 16. The reverse control returns the optimum to loop 8.src/ and scripts/evaluate.py: exact model and depth-sweep implementation.configs/: exact configuration for each released checkpoint.tokenizer/tokenizer.json: byte-level BPE tokenizer with vocabulary 16,384.results/: compact published metrics.SHA256SUMS.txt: integrity hashes for all checkpoint and tokenizer artifacts.scripts/prepare_data.py or follow the GitHub reproduction guide.1hf download GeneralFY/mini-research-on-looped-transformers2026 \
2 --local-dir mini-research-on-looped-transformers2026
3cd mini-research-on-looped-transformers2026
4
5python -m venv .venv
6source .venv/bin/activate
7python -m pip install torch==2.8.0 --index-url https://download.pytorch.org/whl/cu128
8python -m pip install -r requirements.txt
9
10sha256sum -c SHA256SUMS.txt
11
12python scripts/evaluate.py \
13 --config configs/curriculum_8_to_16_100m.yaml \
14 --checkpoint checkpoints/curriculum_8_to_16_100m.pt \
15 --data-dir /path/to/data \
16 --loops 1:32 \
17 --validation-tokens 65536 \
18 --diagnostic-tokens 65536 \
19 --kl-tokens 512 \
20 --output results/reproduced_100m_65k.csvstrict=True. These files are research artifacts rather than a
transformers.AutoModel package.8bc102b584df978bd7619fb752ad84ca41ed1656aa403d406f1345c92f836d6b5f2f0950743afdc9f338fc0d0d408e4214529940bc3f9d04e0218d4ec29760f8