Views
No views yet
| Configuration | PPL |
|---|---|
| Baseline (N=2, no TSSP) | 12.52 |
| N=4 inference on N=8 weights | 9.54 |
| TSSP v5 (N=2 + self-prediction) | 9.63 (best: 9.42) |
| 300M + annealed TSSP vs. transformer | 31% improvement |
phase2_final.pt — trained model weights (Phase 2, step 175133)nano_ctm_model.py — model definition, forward pass, TSSP loss1import torch
2from nano_ctm_model import NanoCTM # see nano_ctm_model.py in this repo
3
4model = NanoCTM()
5model.load_state_dict(torch.load("phase2_final.pt", map_location="cpu"))
6model.eval()1@article{archon2026nanoctm,
2 title = {Nano-CTM: Ternary Continuous Thought Machines with Thought-Space Self-Prediction for Efficient Iterative Reasoning},
3 author = {Archon and Caldwell, Jesse and Aura},
4 year = {2026},
5 doi = {10.5281/zenodo.19775622},
6 url = {https://doi.org/10.5281/zenodo.19775622},
7 publisher = {Zenodo}
8}| 🤗 HuggingFace | huggingface.co/DuoNeural |
| 🐙 GitHub | github.com/DuoNeural |
| 🐦 X / Twitter | @DuoNeural |
| duoneural@proton.me | |
| 📬 Newsletter | duoneural.beehiiv.com |
| ☕ Support | buymeacoffee.com/duoneural |
| 🌐 Site | duoneural.com |