Views
No views yet
| File | Format | Use case |
|---|---|---|
momo.onnx | ONNX | Python (openwakeword), browser (onnxruntime-web) |
momo.tflite | TFLite | Mobile, microcontrollers, edge devices |
pip install openwakeword sounddevice numpy1from openwakeword.model import Model
2from openwakeword.utils import download_models
3from huggingface_hub import hf_hub_download
4
5download_models() # one-time: downloads preprocessing models
6model_path = hf_hub_download("coyotte508/momo-wake-word", "momo.onnx")
7oww = Model(wakeword_models=[model_path], inference_framework="onnx")