mirror of
https://github.com/kyegomez/OpenMythos.git
synced 2026-05-02 09:33:27 +02:00
11 lines
186 B
Python
11 lines
186 B
Python
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:,}")
|