Views
No views yet
| File | Description |
|---|---|
best.pt | Final trained weights (best checkpoint at 250K steps) |
step_30000.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_30000.pt is the base checkpoint used for the telescopic X-ray analysis that
revealed the cascade phase transition. To reproduce:step_30000.pt with save-every-5-steps1import torch
2from huggingface_hub import hf_hub_download
3
4# Download checkpoint
5ckpt_path = hf_hub_download("arturoornelasb/triadic-gpt2-medium-v8", "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}