Tiny, custom, on-device wake-word detection. Train your own in seconds, deploy anywhere (Python / browser / mobile).
Project description
Heed Wake Word
Train your own wake word in seconds, or grab a ready-made one, then run it fully on-device. The model is a 40 to 235 KB file that runs in Python, in the browser, and on iOS and Android. Everything runs locally, so the audio never leaves the device and there are no usage fees.
Heed is Apache-2.0 licensed, so commercial and closed-source use are fine, with no copyleft.
Try it with no install. Train in Colab on a free GPU, either the quick generic trainer (type a phrase, done) or the train-on-your-own-voice notebook (record or upload a few clips, then test it in the notebook). Or try the live browser demo, which runs entirely client-side (source: examples/inference_browser).
Two ways to use it
- Train a custom word. Record a phrase a few times, or let TTS synthesize it across hundreds of voices, then train on CPU or GPU in seconds and export.
- Use a pretrained word. The mobile demo bundles four example words (hey doc, activate x, hey jarvis, hey scout) and an open "custom" slot for a model you train and push from the studio. hey doc and activate x are the solid ones. hey jarvis and hey scout are quick placeholders that show off live multi-word switching. Slightly better pretrained defaults are planned.
Both paths produce the same artifact. You get an ONNX or TFLite model plus a
wake.json preprocessing contract, and it runs the same way on every platform.
Where Heed fits
Tools like Picovoice (Porcupine), openWakeWord, and LiveKit are the established options today, and they are all good. Heed is for a specific gap: a fully permissive (Apache-2.0), train-your-own wake word that also runs client-side in the browser.
In practice that means you train a custom word in seconds from the studio or the CLI, with multi-speaker TTS and a cross-speaker evaluation so the model works for people other than you. The result is a sub-250 KB model that runs the same way in Python, in the browser, and on iOS and Android, as ONNX (float32 or int8) or TFLite. You can self-host the studio in Docker or train in Colab with no setup at all, and commercial and closed-source use carry no per-call fees.
Quickstart (about a minute)
pip install "heed-wakeword[ui]" # base plus the browser studio
heed ui # opens http://127.0.0.1:7777
The studio opens to an empty workspace (your projects live in the folder you launch it from), so create a project, give it a phrase, and record a few positives and negatives. Then press Train and Live-test. A GPU is optional and gets used when present. If you prefer the terminal:
heed init my_phrase --phrase "hey computer"
heed train my_phrase # quick, tuned to your voice
heed train my_phrase --tts-pos 400 --kokoro-pos 200 # cross-speaker, works for anyone
heed export my_phrase # wake.onnx, wake.int8.onnx, wake.tflite, wake.json
The package is heed-wakeword on PyPI. You import it as heed, and the command
is heed.
What you get
- Tiny and fast. A 41 to 235 KB model (INT8 is roughly 40% of that), with 1 to 15 ms inference on a phone CPU. Three sizes to pick from; see Models and customization below.
- Many runtimes, every platform. ONNX (fp32 and INT8) and TFLite, on Python, the browser (onnxruntime-web), and React Native iOS and Android.
- A streaming preprocessor we wrote ourselves. A causal high-pass with 50/60 Hz notches feeds a 25 ms Hann window, a 512-point FFT (a power of two, so it stays fast in any language), a 40-bin log-mel, and CMN. It runs incrementally, recomputing only the frames that new audio touched, and it agrees with Python bit-for-bit in JS (CI checks this). On a phone, prep is about 15 to 20 ms per 100 ms of audio, and an energy gate skips the model during silence.
- Quality you can measure. A cross-speaker held-out eval and a cross-TTS-family eval tell you whether a model works beyond the trainer's own voice, before you ship it.
- A permissive stack. torch, numpy, scipy, soundfile, click, with optional piper-tts, kokoro-onnx, flask, and onnxruntime, all under MIT, BSD, or Apache-2.0. The models you train are yours to ship.
Models and customization
You choose the model size at training time. All three are tiny and run the same way everywhere; larger means more discriminative power for harder phrases.
| Size | Params | ONNX fp32 | ONNX int8 | Pick it when |
|---|---|---|---|---|
| small | ~10K | 41 KB | ~16 KB | tightest budget, short and distinct phrases, microcontrollers |
| medium (default) | ~27K | 108 KB | ~41 KB | the default; best balance of accuracy and size |
| large | ~60K | 235 KB | ~94 KB | harder phrases or maximum robustness, still under 250 KB |
Inference is 1 to 15 ms per 100 ms of audio on a phone CPU at any size. Every model exports in three formats: ONNX float32 (the portable default), ONNX int8 (smallest, lower power on NPUs, sometimes slightly slower on desktop x86), and TFLite (for the Android NNAPI and iOS Core ML delegates). See Export and deploy for which to use.
What you can tune, and where:
| Knob | What it does | Where |
|---|---|---|
| Phrase | the wake word itself | heed init --phrase or the studio |
| Model size | small, medium, or large | heed train --model-size or the studio |
| Cross-speaker breadth | synthetic speakers mixed in so it works for anyone, not just you | --tts-pos, --kokoro-pos, or the studio |
| Sensitivity | calibrates the trigger threshold to a target false-positive rate | heed train --target-fpr, or edit threshold in wake.json afterward |
| Trigger behavior | frames above threshold, refractory hold, smoothing, energy gate | the trigger and energy_gate blocks in wake.json, no retrain |
| Augmentation | SpecAugment, room reverb, a noise pool, a speaker warp, all on by default | trainer flags or the studio settings |
The threshold, trigger, and gate live in wake.json, so you can change how eager
a model is after training without retraining it. Everything else is a training
choice. Full walkthrough in the
studio guide.
The four bundled words are ready to use without training: switch between them in the browser demo, in the mobile slots, or grab the full pack (all three sizes) from the releases page.
Deploy anywhere
The model consumes log-mel features, so any runtime reproduces the same
preprocessing chain. wake.json specifies it in full, and there are reference
implementations in Python (heed/audio.py) and JS
(examples/*/preprocessing.js) that agree bit-for-bit.
| Target | How |
|---|---|
| Python | onnxruntime on CPU. See export/README.md. |
| Browser | onnxruntime-web with examples/inference_browser/. Fully client-side and static-hostable on Vercel, Netlify, or GitHub Pages; ships a vercel.json. |
| iOS and Android | examples/inference_react_native/, with ONNX fp32/INT8 and TFLite, plus live word and runtime switching. |
| Other native (Flutter, Swift, Kotlin) | Run the ONNX or TFLite model, then port the preprocessing from the Python or JS reference (about 250 lines). |
Deployment needs none of the training dependencies. A 3 MB runtime and your sub-250 KB model cover it.
Install
pip install heed-wakeword # core: train and the model
pip install "heed-wakeword[ui]" # plus the browser studio (Flask)
pip install "heed-wakeword[tts]" # plus piper-tts, then: heed download-tts
pip install "heed-wakeword[kokoro]" # plus kokoro-onnx, then: heed download-kokoro
pip install "heed-wakeword[export]" # plus onnx and onnxruntime (export, verify)
pip install "heed-wakeword[all]" # everything
heed doctor # check torch, onnxruntime, and TTS
heed smoke # synthetic end-to-end self-test, no mic
Self-host the studio (Docker)
Run the studio in a container, no local Python setup. Pull the prebuilt image:
docker run --rm -p 7777:7777 -v "$PWD/workspace:/workspace" ghcr.io/andreibulzan/heed:latest
Then open http://127.0.0.1:7777. Or build from source with docker compose up.
Recordings and trained models persist in ./workspace, and the image bundles the
TTS voices so training works out of the box. See the
Docker guide.
Recording good data
This is the biggest lever on quality.
- Positives. 8 to 30 recordings of the phrase. Vary your prosody, distance from the mic, and room. Variety beats raw count.
- Negatives. Distractor phrases in your own voice ("good morning", "the weather is nice") make precious hard negatives. Add similar-sounding phrases (for "hey doc", add "hey John") so the model learns the boundary.
- Cross-speaker. Turn on TTS (
--tts-pos,--kokoro-pos) to synthesize the phrase across hundreds of voices, so the model is not tied to you. Confirm with the cross-speaker eval before you ship.
CLI reference
<name> is a project you pick with heed init; that folder holds your clips, the
trained model, and the export. A full run is just:
heed init myword --phrase "hey scout"
heed train myword --tts-pos 400 --kokoro-pos 300 --model-size medium
heed export myword
Full command list:
heed ui [--host 127.0.0.1] [--port 7777] [--workspace DIR]
heed init <name> --phrase "..."
heed record <name> --kind {positive|negative} --count N
heed download-tts / download-kokoro
heed train <name> [--epochs N] [--tts-pos N] [--kokoro-pos N]
[--target-fpr X] [--model-size {small|medium|large}] ...
heed test <name> <audio.wav>
heed listen <name>
heed eval <name> [--positive-dir P] [--negative-dir N]
heed cross-tts-test <name>
heed export <name>
heed smoke / doctor
Run heed <cmd> --help for the full options.
Design, in one paragraph
Log-mel spectrograms (40 bins, a 25 ms window, a 10 ms hop, a 512-point FFT)
feed a small depthwise-separable 1D CNN over time, with a stride-2 stem, a few
DS-conv blocks, a global average pool, and a linear head. Training builds a
per-user set from a handful of real positives, signal-processing augmentation (a
VTLP-style speaker warp, reverb, noise, gain), and optional multi-speaker TTS,
with a speaker-prototype regularizer that discourages sensitivity to the
trainer's own voice. The high-pass is causal and state-retaining, so the exact
same filtering streams chunk by chunk on-device, and the STFT is computed
incrementally so only the frames that new audio touched get recomputed. The
threshold is calibrated to a target false-positive rate, and inference is a
sliding window with an RMS and voice-band energy gate in front of the model.
See notes/ for the design rationale and a comparison with prior work.
GPU and CPU
Training auto-detects CUDA and uses it when present, otherwise it runs on CPU.
The model is small, so CPU training works fine and is only a little slower.
Model inference is CPU-only by design, because the model is far too small for
GPU offload to beat the data-transfer cost. The one place a GPU pays off is TTS
synthesis during training. See the install notes for the optional
onnxruntime-gpu swap.
Documentation
Full guides live in docs/, and heed --help (or heed <command> --help) covers the CLI:
- The studio: record, train, evaluate, and export from your browser. The fastest way to a model.
- Export and deploy: the formats, the
wake.jsoncontract, sensitivity tuning, and how to run a model in Python, the browser, mobile, or native code. - Train in Colab: the zero-install notebook trainers on a free GPU.
- Self-host with Docker: run the studio in a container.
- Mobile (iOS and Android): the React Native demo.
- Browser and JavaScript: the client-side reference and porting template.
Roadmap
Everything below works today: custom training from the studio or the CLI, on GPU or CPU; multi-speaker TTS augmentation and a cross-speaker evaluation; ONNX and TFLite export with verified numerical equivalence; inference in the browser and on iOS and Android, with live multi-word switching; a zero-install Colab trainer; a static client-side browser demo; and a Docker image for the studio.
A few directions are interesting for later: a curated pack of speaker-independent phrases, more reference preprocessing ports, folding the preprocessing into the model graph so raw audio goes straight in, or embedded targets like TFLite-Micro. None of these are promised. This is a v0.1, and what runs today is the real scope.
Troubleshooting and FAQ
heed: command not found after installing. The console script landed outside
your PATH, or you installed into a different interpreter than you are running. Use
python -m heed.cli --help, and install into the same Python you run
(python -m pip install heed-wakeword).
Training errors about TTS or voices. Multi-speaker TTS is optional. Install it
and fetch the voices once: pip install "heed-wakeword[tts,kokoro]", then
heed download-tts and heed download-kokoro. Without them, just train without
--tts-pos/--kokoro-pos; the studio skips them with a warning. heed doctor
shows what is available.
It fires on everything (false triggers). Record hard negatives in your own
voice, especially near-misses (for "hey doc", record "hey", "hey John", "hey
there"); the studio suggests these as phonetic neighbors. If it still over-fires
in a noisy room, raise threshold in wake.json toward your real spoken score
(genuine hits usually score 0.9 or higher).
It does not fire when I say it. Usually too few or too-similar positives. Record 10 to 15, varied in distance, tone, and speed. Check that the threshold is not set above your real scores and that the mic is not muted.
It works for me but not for other people. A model trained only on your voice is
speaker-locked. Add --tts-pos 400 --kokoro-pos 300 to train across hundreds of
synthetic voices, and read the cross-speaker held-out eval before you ship.
Browser demo: the mic does nothing. Browsers only allow mic capture over
https or localhost. Serve the folder (python -m http.server 8000); do not
open index.html as a file. If you just changed the model or code, hard-refresh
to clear the cached .js and .onnx.
Mobile: "No development build installed." The installed app's package id does
not match, or there is no dev build on the phone yet. Build one once
(npx expo run:android, or eas build --profile development --platform ios). On
iOS run eas device:create first, or the build installs but will not open. After
that, JS and model changes are just a Metro reload: npx expo start --dev-client --clear, no rebuild.
How do I run only inference, without torch? Deployment needs none of the
training stack. Ship onnxruntime (or onnxruntime-web / -react-native) plus
your model and wake.json, and reproduce the preprocessing from heed/audio.py
or preprocessing.js. See
Export and deploy.
The PyPI page README looks out of date. PyPI bakes the README into each release at build time and does not pull from GitHub, so the project page reflects the last published version. The GitHub README is always current.
License
Apache-2.0. You can use Heed commercially, in closed-source products, with no obligation to open your own code. Keep the license and NOTICE file. The license includes a patent grant. Every dependency is MIT, BSD, or Apache-2.0.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file heed_wakeword-0.1.3.tar.gz.
File metadata
- Download URL: heed_wakeword-0.1.3.tar.gz
- Upload date:
- Size: 117.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0b2e3fbf4a9a804c6a6c636d831e7e44c7fd5e9cf8200f916cbd558e36f3d35
|
|
| MD5 |
46a42b0f0d4b115a845c5716098b2f17
|
|
| BLAKE2b-256 |
a4ce134dda76d39d7d8477b75885976134f21c9edd8ffb90de3095f202598f2e
|
File details
Details for the file heed_wakeword-0.1.3-py3-none-any.whl.
File metadata
- Download URL: heed_wakeword-0.1.3-py3-none-any.whl
- Upload date:
- Size: 118.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d89079fdc32d81669740cf9e95a24015204759c65c3377b74e77e96009c6d69
|
|
| MD5 |
e2e3528e33e75b913fef9e0268e95974
|
|
| BLAKE2b-256 |
ba0e8e49e69b84679be822f34e3bcf2578d58bc259727f4ec412a9beffdbffc9
|