A lightweight inference library for training custom keyword spotting models and running real-time voice command detection.
Project description
A Python library for training custom keyword spotting models and running real-time voice command detection.
⚡ About KeywordTensor
KeywordTensor is built for developers who want to integrate voice commands into their Python projects without requiring deep knowledge of audio processing.
- Bring your own
.wavfiles: Just put your audio files into folders (e.g.,dataset/hello/,dataset/stop/). - Trigger custom Python actions: Easily map recognized words directly to your own Python functions. No Speech-to-Text required—KeywordTensor detects predefined commands and directly triggers Python callbacks.
- Automated Export & Config: Training automatically generates your optimized model and its configuration file. This allows you to launch live inference with a single command later. No manual saving required!
- Built-in Audio Augmentation: We automatically mutate your
.wavfiles during training (PitchShift, Gain & Polarity Inversion, Colored Noise) to improve robustness in noisy environments. - SpecAugment Pipeline: Raw audio is converted to Mel-spectrograms with Time and Frequency Masking applied. The model learns to recognize commands even if the microphone crackles or the audio drops out.
- Continuous Listening: A rolling buffer averages predictions over time to prevent sudden false positive clicks.
- Full Control: We hide the complexity by default, but give you full access to all deep learning training and listening parameters (training configuration, validation settings, and inference thresholds).
📦 Pre-trained Models
Don't have time to record your own dataset? You can use our ready-to-go models.
-
A highly robust model trained specifically to handle high-pitched children's voices and extremely noisy environments. This model was successfully deployed in a live public demonstration during the "Noc Naukowców" (Researchers' Night) event.
-
More models coming soon!
💻 Quick Start & API
1. Installation (Choose your variant)
The library is available in two variants on PyPI depending on your needs:
-
pip install keywordtensorInstalls the full training environment. Use this on your PC or Server to train your models. -
pip install keywordtensor-edgeA lightweight runtime variant. It strips out heavy training dependencies (likefastai), providing only what is needed for real-time inference (listen()). Perfect for Raspberry Pi or IoT devices.
2. Training your model
The .train() method takes your audio files and trains a neural network using PyTorch and FastAI under the hood.
import keywordtensor
model = keywordtensor.Engine()
# The engine automatically applies audio & spectrogram augmentations during training
model.train(
dataset_path="path/to/audio/dataset",
model_name="my_custom_model",
epochs=30,
batch_size=32
)
Training parameters:
You have total control over the pipeline. Available parameters in .train():
dataset_path(required): Path to your dataset folder. Any number of folders (classes) is supported.model_name(default: 'myownmodel'): Name of the final exported model.epochs(default: 30): Number of training cycles over your dataset.batch_size(default: 32): Number of audio samples processed simultaneously.learning_rate(Automatic): The engine dynamically searches for the optimal learning rate for your specific dataset and automatically applies the One-Cycle Policy.wd(default: 0.01): Weight decay (L2 penalty) to prevent overfitting.eps(default: 0.01): Label smoothing epsilon to improve generalization.valid_pct(default: 0.1): Percentage of data reserved for validation.duration(default: 3.0): The exact duration of your audio clips in seconds. If an audio clip is shorter, it will be automatically padded with zeros (silence). If it is longer, it will be accurately truncated to match this length.sr(default: 16000): Sample rate of your audio files.
3. Live Inference & Custom Actions
Once trained (or using a pre-trained model like prawda_falsz), you can run real-time inference using your microphone.
import keywordtensor as kt
model = kt.Engine()
# Define your custom actions
def on_hello():
print("Action triggered: 'Hello' detected!")
def on_stop():
print("Action triggered: Stopping the robot!")
# Map keywords to your Python functions with per-keyword cooldowns
model.listen(
model_name="my_custom_model",
actions={
"hello": {"function": on_hello, "cooldown": 2.0},
"stop": {"function": on_stop, "cooldown": 3.0}
},
min_confidence=0.6,
n_averages=3
)
Listen parameters:
The .listen() method itself accepts the following runtime arguments:
model_name(required): The name of the model to load. You can provide the path to your own trained model, or use the built-in"prawda_falsz"model which is highly robust to noise and pitched voices.actions(default: None): Optional dictionary mapping detected keywords to Python callbacks. You can pass just a function (defaults to 0.0s cooldown), or a dictionary for precise control:{"function": your_function, "cooldown": 2.0}. Cooldowns are tracked individually per keyword!min_confidence(default: 0.6): The probability threshold (0.0 to 1.0) required to trigger the action.n_averages(default: 3): Temporal smoothing. Averages the last N predictions to prevent false positive clicks.
Config file parameters:
The rest of the underlying parameters are loaded automatically from the <model_name>_config.json file!
When you run .train(), this file is automatically generated for you. It looks like this:
{
"labels": ["hello", "stop"],
"mean": -40.15,
"std": 17.35,
"duration": 3.0,
"sr": 16000
}
This file dictates the rules for the inference engine:
labels: The list of keywords the model was trained on.duration: The size of the rolling audio buffer in seconds.sr: The microphone sample rate.mean/std: Normalization statistics for the Mel-spectrogram.
💡 Total Flexibility: Want to adjust the microphone sample rate or buffer duration without retraining? Just open the JSON file and edit it!
Bringing your own model? No problem! If you trained an ONNX model entirely outside of KeywordTensor, simply drop it into your folder, create a matching
your_model_config.jsonfile next to it with the parameters above, and the.listen()method will load and run your external model.
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 keywordtensor_edge-1.0.3.tar.gz.
File metadata
- Download URL: keywordtensor_edge-1.0.3.tar.gz
- Upload date:
- Size: 41.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53fb80c1f7b809f05831a1ebbad2c5fa8d14510a072177f15c138cf078a93faf
|
|
| MD5 |
b50e3aa266346cd11a738f9cae68cd45
|
|
| BLAKE2b-256 |
83c7bd2d794ea93b412c25a6782496bfd173917c3fb075b445918a83376112c7
|
Provenance
The following attestation bundles were made for keywordtensor_edge-1.0.3.tar.gz:
Publisher:
publish.yml on fkondela/keywordtensor
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
keywordtensor_edge-1.0.3.tar.gz -
Subject digest:
53fb80c1f7b809f05831a1ebbad2c5fa8d14510a072177f15c138cf078a93faf - Sigstore transparency entry: 2155846228
- Sigstore integration time:
-
Permalink:
fkondela/keywordtensor@5dd8bf10d249a536f25a890dde536a0a8a3ab10a -
Branch / Tag:
refs/tags/v1.0.3 - Owner: https://github.com/fkondela
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5dd8bf10d249a536f25a890dde536a0a8a3ab10a -
Trigger Event:
release
-
Statement type:
File details
Details for the file keywordtensor_edge-1.0.3-py3-none-any.whl.
File metadata
- Download URL: keywordtensor_edge-1.0.3-py3-none-any.whl
- Upload date:
- Size: 41.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22eb5d14609019bbbb130d62de1e1670c3ed01d5360e6f7fc30c18bccb263dcd
|
|
| MD5 |
76cad69287beef3d9fba41a1db6acb03
|
|
| BLAKE2b-256 |
f8affdad9ea6f928debfdd90f9ab3edbe241a95ca8d1b937371d85141c8c3d7f
|
Provenance
The following attestation bundles were made for keywordtensor_edge-1.0.3-py3-none-any.whl:
Publisher:
publish.yml on fkondela/keywordtensor
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
keywordtensor_edge-1.0.3-py3-none-any.whl -
Subject digest:
22eb5d14609019bbbb130d62de1e1670c3ed01d5360e6f7fc30c18bccb263dcd - Sigstore transparency entry: 2155846369
- Sigstore integration time:
-
Permalink:
fkondela/keywordtensor@5dd8bf10d249a536f25a890dde536a0a8a3ab10a -
Branch / Tag:
refs/tags/v1.0.3 - Owner: https://github.com/fkondela
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@5dd8bf10d249a536f25a890dde536a0a8a3ab10a -
Trigger Event:
release
-
Statement type: