File size: 500 Bytes
debe354 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """
QuantumAP CLI entry point.
Usage:
python -m src # Run demo (synthetic weights)
python -m src --checkpoint FILE # Process real safetensors file
python -m src --generate FILE # Generate synthetic checkpoint
python -m src --test # Run test suite
"""
import sys
import os
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from src.cli import main
if __name__ == "__main__":
main()
|