Views
No views yet
| File | Description |
|---|---|
best.pt | Final trained weights (best checkpoint at 50K steps) |
step_5000.pt | Base checkpoint before phase transition (for X-ray reproducibility) |
run_config.json | Full training configuration |
gold_extended_v7.json | Gold standard: 72 primitives + extended concept targets |
step_5000.pt is the base checkpoint used for the telescopic X-ray analysis that
revealed the cascade phase transition. To reproduce:step_5000.pt with save-every-5-steps| Metric | V8 (GPT-2 Medium) | V9 (GPT-Neo 125M) |
|---|---|---|
| R² (wave) | 0.943 | 0.734 |
| Regime | Overdamped (d/w=1.34) | Underdamped (d/w=0.70) |
| dAIC | +92.2 | +44.5 |
| Cascade duration | ~145 steps | ~45 steps |
| Bits involved | 65/72 (90%) | 31/72 (43%) |
| Preferred model | Wave | Wave |
1import torch
2from huggingface_hub import hf_hub_download
3
4# Download checkpoint
5ckpt_path = hf_hub_download("arturoornelasb/triadic-gptneo-125m-v9", "best.pt")
6checkpoint = torch.load(ckpt_path, map_location="cpu")
7
8# Or use with triadic_extractor (pip install reptimeline)
9from triadic_extractor import TriadicExtractor
10extractor = TriadicExtractor(n_bits=72)
11snap = extractor.extract(ckpt_path, concepts, device='cuda')1@misc{ornelas2026triadic,
2 author = {Ornelas Brand, J. Arturo},
3 title = {Triadic Duality: Ontological Primitives as Emergent Algebraic Structure in Neural Representations},
4 year = {2026},
5 doi = {10.5281/zenodo.19375167},
6 publisher = {Zenodo},
7}