Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

wakeforge

wakeforge is a research framework for wake-word detection. It implements architectures, losses, and featurizers from the published wake-word literature, so you can reproduce a paper's result or compare methods side by side. Some included architectures exist to reproduce a published result, not because they are the best default — the per-architecture pages under docs/reference/ say which is which. Train, evaluate, and export lightweight on-device detectors that run anywhere from an ESP32 to a GPU server. Every component exports to ONNX; production inference requires only onnxruntime and numpy — no PyTorch at runtime.

An easy training run is not the same thing as a good detector. Loss going down and a quickstart command exiting 0 prove the pipeline works, not that the result is safe to ship — see docs/guides/expectations.md for what a deployable wake word actually looks like in false-accept and false-reject numbers, and how much data each tier needs to get there.

What is a wake word?

A short phrase ("hey jarvis", "computer", "alexa") that a device listens for continuously. When detected, downstream STT/NLU runs. A useful detector must run on tiny hardware (sub-100 KB, <10 % CPU, no internet), tolerate noise and distance, almost never false-fire, and trigger reliably when spoken. wakeforge is the toolchain that builds such a detector from a single phrase — synthesise data, train, evaluate, export, deploy. What counts as "almost never" and "reliably" in numbers is in docs/guides/expectations.md, not repeated here.

Who is this for?

You are… Start here
Hobbyist waking a Pi with your own phrase docs/getting_started/quickstart.md — ONNX in 5 minutes
Embedded engineer shipping to ESP32 / MCU docs/guides/embedded.md
Voice-assistant integrator (OVOS, Rhasspy, …) docs/guides/inference.md
ML researcher comparing architectures / losses docs/guides/search.md, docs/reference/losses.md, docs/research/rppl.md
New to ML entirely docs/quickstart-kaggle.md — step-by-step guide; runs free on Kaggle / Colab

Highlights

  • Single-string-to-ONNX quickstart — train_from_wakeword("hey jarvis", out) produces a deployable model.
  • 11 built-in featurizers (+ enrichment wrappers) × 15 classifier heads × 15 losses — a real research surface.
  • Genetic + Bayesian HP search with island-model parallelism, adaptive mutation, two-stage refinement.
  • Synthetic datagen — TTS + pure-ONNX voice conversion (voiceclonnx) to bootstrap a dataset from zero recordings.
  • Hard-negative mining and infinite training for industrial-scale negative pools.
  • ONNX-first: featurizer and head export cleanly; no CUDA-only kernels.
  • Hardware tiers from esp32_nano (sub-1 KB int8) to hubert_medium.

Honest trade-offs

  • CPU training works for small tiers; a mid-range GPU is the best UX for larger ones.
  • Synthetic data is great for smoke-testing — production still needs real far-field recordings.
  • ONNX-export is mandatory; non-traceable components (custom CUDA kernels, dynamic control flow) are out of scope. See docs/internals/known_issues.md.
  • SSL featurizers (HuBERT, Wav2Vec2-BERT) are used as pre-exported ONNX and held frozen during downstream training — guarantees train/inference parity but limits adaptation.

Install

# Published package (import name stays ww_trainer):
pip install --pre "wakeforge[datagen,torchcodec]"

For development, clone the repo and install it editable instead:

# Core library + tests
uv pip install -e ".[dev]"

# Quickstart / datagen needs TTS plugins + HF datasets + an audio codec:
uv pip install -e ".[dev,datagen,torchcodec]"

Optional extras (sweep, transformers, mlflow, datagen, vc, mic, viz, markov, ocsvm, torchcodec) — see docs/faq.md.

A default quickstart run needs ≈ 6–8 GB disk and ~5 GB download (or ~1.5 GB with --no-augmentation-data). Voice cloning via --vc-refs adds the per-engine ONNX weights downloaded on first use from the HuggingFace Hub (size varies by voiceclonnx engine). Full per-dataset budget: docs/getting_started/requirements.md.

60-second quickstart

ww_trainer-quickstart --wake-word "hey jarvis" --output-dir ./hey_jarvis

Or in Python:

from ww_trainer.quickstart import train_from_wakeword
result = train_from_wakeword("hey jarvis", "./hey_jarvis",
                             tier="small", epochs=50)
print(result.best_onnx_path, result.metrics)

Output: best_f1_featurizer.onnx + best_f1.onnx under ./hey_jarvis/model/. Load both with OnnxWakeWordInferencer — docs/guides/inference.md.

Documentation

Everything lives in docs/. Start with:

Contributing

Issues and pull requests welcome on the dev branch. Tests live in test/; run with uv run pytest.

Citation

@software{wakeforge,
  title  = {wakeforge: a research framework for on-device wake-word detection},
  author = {TigreGotico contributors},
  year   = {2026},
  url    = {https://github.com/TigreGotico/wakeforge},
  note   = {Funded by NGI0 Commons Fund / NLnet, grant 101135429}
}

Credits

Developed by TigreGótico for OpenVoiceOS.

NGI0 Commons Fund

This project was funded through the NGI0 Commons Fund, a fund established by NLnet with financial support from the European Commission's Next Generation Internet programme, under the aegis of DG Communications Networks, Content and Technology under grant agreement No 101135429.


License

Apache 2.0

Release files for wakeforge 0.4.2a6

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for wakeforge 0.4.2a6
File Size Uploaded
wakeforge-0.4.2a6.tar.gz 255.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for wakeforge 0.4.2a6
File Interpreter ABI Platform
wakeforge-0.4.2a6-py3-none-any.whl Python 3 none any Details

Total release size: 463.4 kB

Release files / wakeforge-0.4.2a6.tar.gz

Download URL wakeforge-0.4.2a6.tar.gz
Size 255.2 kB
Tags Source
SHA-256 checksum
How to use checksums
ed8a40f20b726b45408e0b738b57692bcb90c934b13c8c15ab4dcbc0c6243c97
BLAKE2b-256 checksum
How to use checksums
0ef73d076b28e9e93399596ac05bf1357ac302bc4b7e0a0daa0f512dd1d90dcb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / wakeforge-0.4.2a6-py3-none-any.whl

Download URL wakeforge-0.4.2a6-py3-none-any.whl
Size 208.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
1b8358a42c4a52a6479c16b3b44ae531d9316b0f2f405d0485d8959addfdcd56
BLAKE2b-256 checksum
How to use checksums
e3cf2ef8717a2721c97c3e8f5f6c5d725962a85fcbfa1548fa7223ef9b06d7f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page