30 lines
1.1 KiB
Markdown
30 lines
1.1 KiB
Markdown
# rei's fork of Precise-Lite
|
|
|
|
* To install, use `pip3 install . ./runner` for both the engine and runner. All training scripts are included.
|
|
* Use an up-to-date pip to avoid installing conflicting requirements!
|
|
* This fork supports Aarch64 using the `tensorflow_aarch64` packages.
|
|
|
|
# Mycroft Precise-Lite
|
|
|
|
*A lightweight, simple-to-use, RNN wake word listener.*
|
|
|
|
Precise is a wake word listener. The software monitors an audio stream ( usually a microphone ) and when it recognizes a specific phrase it triggers an event. For example, at Mycroft AI the team has trained Precise to recognize the phrase "Hey, Mycroft". When the software recognizes this phrase it puts the rest of Mycroft's software into command mode and waits for a command from the person using the device. Mycroft Precise is fully open source and can be trined to recognize anything from a name to a cough.
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
precise-lite-listen my_model_file.net
|
|
```
|
|
|
|
To convert it into tflite run
|
|
|
|
```bash
|
|
precise-lite-convert my_model_file.net
|
|
```
|
|
|
|
And you can run then tflite
|
|
|
|
```bash
|
|
precise-lite-listen my_model_file.tflite
|
|
```
|