File size: 324 Bytes
759d0dd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/usr/bin/env python3
from pathlib import Path
from openwakeword_ax import main
ROOT = Path(__file__).resolve().parents[1]
if __name__ == "__main__":
main(
default_models_dir=ROOT / "models/650",
default_output=ROOT / "outputs/openwakeword_ax650_board.json",
target_hardware="AX650",
)
|