Video-ORA-4B / code /orarl /cli /prepare.py
lyhisme's picture
Add 4B model card, benchmark assets, and release code
0185029 verified
Raw
History Blame Contribute Delete
449 Bytes
"""Console entry point for the portable data builder."""
from __future__ import annotations
from collections.abc import Sequence
def main(argv: Sequence[str] | None = None) -> int:
"""Load the data builder lazily so CLI help stays lightweight."""
from orarl.data.build import main as build_main
result = build_main(argv)
return int(result) if result is not None else 0
if __name__ == "__main__":
raise SystemExit(main())