CoolFace
Modelpublic

coyotte508/momo-wake-word

sourceHugging Facemitupdated 6mo agoView on Hugging Face
0likes11downloads
Model Card

Momo Wake Word

Wake word detection model for "Momo", trained via openwakeword.com.

Designed for the home-agent project — a local AI home assistant running on dedicated GPU hardware.

Files

FileFormatUse case
momo.onnxONNXPython (openwakeword), browser (onnxruntime-web)
momo.tfliteTFLiteMobile, microcontrollers, edge devices

Usage (Python)

bash
pip install openwakeword sounddevice numpy
python
from openwakeword.model import Model
from openwakeword.utils import download_models
from huggingface_hub import hf_hub_download

download_models()  # one-time: downloads preprocessing models
model_path = hf_hub_download("coyotte508/momo-wake-word", "momo.onnx")
oww = Model(wakeword_models=[model_path], inference_framework="onnx")

Training

Trained at openwakeword.com with the wake phrase "Momo". The model uses openwakeword's mel-spectrogram + Google speech embedding pipeline for lightweight, CPU-friendly inference.

Language

This model is optimized for French speakers. For other languages, train a new model at openwakeword.com.