Next version. Models + scripts updated. 2

This commit is contained in:
Pawel
2026-05-21 22:21:26 -04:00
parent 0002ef1545
commit 86d582a572
23 changed files with 1768 additions and 293 deletions

View File

@@ -0,0 +1,19 @@
#!/usr/bin/env python3
"""Convenience wrapper: predict grade for a Kilter frames string."""
from __future__ import annotations
import subprocess
import sys
from pathlib import Path
REPO_ROOT = Path(__file__).resolve().parents[1]
if __name__ == "__main__":
cmd = [
sys.executable,
str(REPO_ROOT / "scripts" / "demo_predict_grade.py"),
"--board",
"kilter",
*sys.argv[1:],
]
raise SystemExit(subprocess.call(cmd))