Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/OpenVoiceOS/ovos-ww-plugin-precise-lite
https://github.com/OpenVoiceOS/ovos-ww-plugin-precise-lite
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/OpenVoiceOS/ovos-ww-plugin-precise-lite
- Owner: OpenVoiceOS
- License: apache-2.0
- Created: 2021-08-15T21:56:32.000Z (over 3 years ago)
- Default Branch: dev
- Last Pushed: 2023-05-09T13:52:37.000Z (over 1 year ago)
- Last Synced: 2024-03-15T15:10:39.640Z (9 months ago)
- Language: Python
- Size: 38.1 KB
- Stars: 3
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ovos-plugins - ovos-ww-plugin-precise-lite
README
## Description
OpenVoiceOS wake word plugin for [precise-lite](https://github.com/OpenVoiceOS/precise-lite)
train models with [precise-lite-trainer](https://github.com/OpenVoiceOS/precise-lite-trainer) or download pre-trained [precise-lite-models](https://github.com/OpenVoiceOS/precise-lite-models)
## Install
This package supports both tflite-runner and the full tensorflow.
To install with tflite, use `pip install ovos-ww-plugin-precise-lite[tflite]`.
For the full tensorflow use `pip install ovos-ww-plugin-precise-lite[full]`.## Configuration
Add the following to your hotwords section in mycroft.conf
```json
"listener": {
"wake_word": "hey mycroft"
},
"hotwords": {
"hey mycroft": {
"module": "ovos-ww-plugin-precise-lite",
"model": "https://github.com/OpenVoiceOS/precise-lite-models/raw/master/wakewords/en/hey_mycroft.tflite",
"listen": true,
"sound": "snd/start_listening.wav",
"expected_duration": 3,
"trigger_level": 3,
"sensitivity": 0.5
}
}
```Get community models [here](https://github.com/OpenVoiceOS/precise-lite-models)
## Other Programming Languages
Community members have ported precise to other programming languages
- Go - [precise-go](https://github.com/tystuyfzand/precise-go) by [tystuyfzand](https://github.com/tystuyfzand)
- Rust - [precise-rs](https://github.com/sheosi/precise-rs) by [sheosi](https://github.com/sheosi)