File size: 176 Bytes
2f65125
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
"""Command-line entry point for the EDEN training and inference engine."""

from __future__ import annotations

from .engine import main

if __name__ == "__main__":
    main()