Datasets:
File size: 434 Bytes
cbb33d5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """Thin wrapper around the mcr CLI so it runs without installing the package.
PYTHONPATH=src python scripts/run_eval.py eval \
--model st_text --benchmark ssrb --output runs/demo --max-queries 50
"""
import os
import sys
sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "src"))
from mcr.cli import main # noqa: E402
if __name__ == "__main__":
raise SystemExit(main())
|