| #!/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", | |
| ) | |