ESP-SR 语音识别框架
Go to file
Wu Jian Gang 78892a97b5 Merge branch 'bugfix_afe_config' into 'master'
bugfix(afe): Update esp_afe_config.h and esp_afe_sr_iface.h for esp32

See merge request speech-recognition-framework/esp-sr!5
2022-12-14 11:27:32 +08:00
.github/workflows Sync Issues to Jira 2021-11-08 16:50:07 +08:00
docs docs:fix_bugs 2022-12-02 15:13:10 +08:00
esp-tts bugfix(tts): Fix some wrong pronounce 2022-11-04 17:11:17 +08:00
include bugfix(afe): Update esp_afe_config.h and esp_afe_sr_iface.h for esp32 2022-12-14 11:04:09 +08:00
lib feat(dl_lib): do not load dl lib code by IRAM.text 2022-11-18 20:21:59 +08:00
model feat(afe): Add debug method 2022-10-13 11:26:32 +08:00
src bugfix: Fix the memory leak issue in esp_srmodel_init function 2022-10-14 16:40:26 +08:00
tool doc(tool): Rename the README 2021-11-18 21:03:40 +08:00
.gitignore testing 2022-11-23 20:01:24 +08:00
.gitlab-ci.yml ci: Push master and release branch to github 2022-12-14 11:09:12 +08:00
.readthedocs.yml doec/trans_md_2_rst 2022-11-15 17:18:30 +08:00
CHANGELOG.md feature/add AFE component & update wakenet 2021-02-25 11:01:29 +08:00
CMakeLists.txt bugfix: Remove Multiply definition 'print_afe_info' 2022-11-01 17:23:00 +08:00
component.mk bugfix: Add src/include path in component.mk 2022-08-17 20:57:55 +08:00
Kconfig.projbuild bugfix(mfcc): fix the crash issus in mfcc destory function 2022-10-09 17:26:13 +08:00
libversion feat(MN): Fix the memory leak of MN; Modify the method of resetting speech commands 2022-02-17 14:23:09 +08:00
LICENSE add README 2019-08-06 12:01:02 +08:00
README.md docs: fix same bugs in docs 2022-12-02 11:39:21 +08:00

esp_sr

Espressif esp_sr provides basic algorithms for Speech Recognition applications. Now, this framework has four modules:

  • The wake word detection model WakeNet
  • The speech command recognition model MultiNet
  • Audio Front-End AFE
  • The text to speech model esp-tts

These algorithms are provided in the form of a component, so they can be integrated into your projects with minimum efforts. ESP32-S3 is recommended, which supports AI instructions and larger, high-speech octal SPI PSRAM. The new algorithms will no longer support ESP32 chips.

Wake Word Engine

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 wake words, such as “Alexa”, “Hi,lexin” and “Hi,ESP”. You can refer to Model loading method to build your project.

Currently, Espressif has not only provided an official wake word "Hi,Lexin","Hi,ESP" to 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.

Speech Command Recognition

Espressif's speech command recognition model MultiNet is specially designed to provide a flexible off-line speech command recognition model. With this model, you can easily add your own speech commands, eliminating the need to train model again. You can refer to Model loading method to build your project.

Currently, Espressif MultiNet supports up to 200 Chinese or English speech commands, such as “打开空调” (Turn on the air conditioner) and “打开卧室灯” (Turn on the bedroom light).

Audio Front End

Espressif Audio Front-End AFE integrates AEC (Acoustic Echo Cancellation), VAD (Voice Activity Detection), BSS(Blind Source Separation) and NS (Noise Suppression).

Our two-mic Audio Front-End (AFE) have been qualified as a “Software Audio Front-End Solution” for Amazon Alexa Built-in devices.

In order to achieve optimal performance: