EDEN / eden /cli.py
Rybib's picture
Upload EDEN model and code
2f65125 verified
Raw
History Blame
176 Bytes
"""Command-line entry point for the EDEN training and inference engine."""
from __future__ import annotations
from .engine import main
if __name__ == "__main__":
main()