mirror of
https://github.com/espressif/esp-sr.git
synced 2025-09-15 15:28:44 +08:00
feat: add Hi,Lily/Hi,莉莉 wakenet model
This commit is contained in:
parent
ed23118214
commit
23057c7d7e
@ -4,6 +4,9 @@
|
||||
- Available storage is less than the remaining flash space on IDF v5.0.
|
||||
If you can not map model partition successfully, please check the left free storage by `spi_flash_mmap_get_free_pages(ESP_PARTITION_MMAP_DATA)` or update IDF to v5.1 or later.
|
||||
|
||||
## 1.7.1
|
||||
- Add 喵喵同学,Hi,joy, (Hi,Lily/Hi,莉莉) wakenet model
|
||||
|
||||
## 1.7.0
|
||||
- Add first Noise Suppression model: nsnet2
|
||||
- Add more wake word model trained by TTS sample
|
||||
|
||||
@ -158,6 +158,10 @@ choice SR_WN_MODEL_LOAD
|
||||
bool "Hi,Joy (wn9_hijoy_tts)"
|
||||
depends on IDF_TARGET_ESP32S3
|
||||
|
||||
config SR_WN_WN9_HILILI_TTS
|
||||
bool "Hi,Lily/Hi,莉莉 (wn9_hilili_tts)"
|
||||
depends on IDF_TARGET_ESP32S3
|
||||
|
||||
config SR_WN_WN9_CUSTOMWORD
|
||||
bool "customized word (wn9_customword)"
|
||||
depends on IDF_TARGET_ESP32S3
|
||||
@ -231,6 +235,10 @@ menu "Load Multiple Wake Words"
|
||||
bool "Hi,Joy (wn9_hijoy_tts)"
|
||||
depends on IDF_TARGET_ESP32S3
|
||||
|
||||
config SR_WN_WN9_HILILI_TTS_MULTI
|
||||
bool "Hi,Lily/Hi,莉莉 (wn9_hilili_tts)"
|
||||
depends on IDF_TARGET_ESP32S3
|
||||
|
||||
endmenu
|
||||
|
||||
config USE_MULTINET
|
||||
|
||||
@ -25,7 +25,8 @@ The new algorithms will no longer support ESP32 chips.
|
||||
|
||||
Espressif wake word engine **WakeNet** is specially designed to provide a high performance and low memory footprint wake word detection algorithm for users, which enables devices always listen to wake words, such as “Alexa”, “Hi,lexin” and “Hi,ESP”.
|
||||
|
||||
Espressif has not only provided an official wake word "Hi,Lexin","Hi,ESP" to the public for free, but also allows customized wake words. For details on how to customize your own wake words, please see [Espressif Speech Wake Words Customization Process](https://docs.espressif.com/projects/esp-sr/en/latest/esp32s3/wake_word_engine/ESP_Wake_Words_Customization.html) or [Training Wake Words by TTS sample](https://github.com/espressif/esp-sr/issues/88).
|
||||
Espressif offers two ways to customize the wake word, please refer to the following document to choose the one that meets your needs:
|
||||
[Espressif Speech Wake Words Customization Process](https://docs.espressif.com/projects/esp-sr/en/latest/esp32s3/wake_word_engine/ESP_Wake_Words_Customization.html) or [Training Wake Words by TTS sample](https://github.com/espressif/esp-sr/issues/88).
|
||||
|
||||
The following wake words are supported in esp-sr:
|
||||
|
||||
@ -49,6 +50,7 @@ The following wake words are supported in esp-sr:
|
||||
|Hi,小星 | | wn9_hixiaoxing_tts |
|
||||
|小龙小龙 | | wn9_xiaolongxiaolong_tts |
|
||||
|喵喵同学 | | wn9_miaomiaotongxue_tts |
|
||||
|Hi,Lily/Hi,莉莉 | | wn9_hilili_tts |
|
||||
|
||||
*NOTE:* `_tts` suffix means this WakeNet model is trained by TTS samples.
|
||||
|
||||
|
||||
2
model/wakenet_model/wn9_hilili_tts/_MODEL_INFO_
Normal file
2
model/wakenet_model/wn9_hilili_tts/_MODEL_INFO_
Normal file
@ -0,0 +1,2 @@
|
||||
# (neural network type)_(model data version)_(label1_detection window length_threshold for 90%_threshold for 95%)_(label2 ...)_...
|
||||
wakenet9l_tts1h8_Hilily_3_0.633_0.639
|
||||
BIN
model/wakenet_model/wn9_hilili_tts/wn9_data
Normal file
BIN
model/wakenet_model/wn9_hilili_tts/wn9_data
Normal file
Binary file not shown.
BIN
model/wakenet_model/wn9_hilili_tts/wn9_index
Normal file
BIN
model/wakenet_model/wn9_hilili_tts/wn9_index
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user