new examples folder

This commit is contained in:
Kye Gomez 2026-04-22 13:00:57 -04:00
parent 963e11277d
commit 227dbb1532
5 changed files with 109 additions and 80 deletions

View file

@ -0,0 +1,10 @@
from open_mythos import (
mythos_1b,
OpenMythos,
)
cfg = mythos_1b()
model = OpenMythos(cfg)
total = sum(p.numel() for p in model.parameters())
print(f"Parameters: {total:,}")