mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-04-29 00:59:07 -05:00
20 lines
383 B
Python
Executable File
20 lines
383 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
TinyTorch CLI Wrapper
|
|
|
|
Backward compatibility wrapper that calls the new CLI structure.
|
|
"""
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
# Add the project root to Python path
|
|
project_root = Path(__file__).parent.parent
|
|
sys.path.insert(0, str(project_root))
|
|
|
|
# Import and run the new CLI
|
|
from tito.main import main
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|