ares-static-lab / scripts /estimate_params.py
jacmor64's picture
Deploy Ares Static Lab Colab training pipeline
8fa3dd6 verified
Raw
History Blame Contribute Delete
345 Bytes
from pathlib import Path
import sys
ROOT = Path(__file__).resolve().parents[1]
sys.path.insert(0, str(ROOT))
from ares_core.config import AresConfig, estimate_parameters
for cfg_path in sorted((ROOT / "configs").glob("*.json")):
cfg = AresConfig.from_json(cfg_path)
print(f"{cfg_path.name}: ~{estimate_parameters(cfg):,} parameters")