Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/code2k13/pipico_speech_recognition
This repository contains code and instructions to implement single word speech recognition on any board running CircuitPython
https://github.com/code2k13/pipico_speech_recognition
circuitpython digital-signal-processing machine-learning neural-networks python rp2040 speech-recognition tensorflow tinyml
Last synced: 2 months ago
JSON representation
This repository contains code and instructions to implement single word speech recognition on any board running CircuitPython
- Host: GitHub
- URL: https://github.com/code2k13/pipico_speech_recognition
- Owner: code2k13
- License: apache-2.0
- Created: 2024-05-20T08:03:09.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-25T11:20:14.000Z (7 months ago)
- Last Synced: 2024-09-27T09:22:08.986Z (3 months ago)
- Topics: circuitpython, digital-signal-processing, machine-learning, neural-networks, python, rp2040, speech-recognition, tensorflow, tinyml
- Language: Jupyter Notebook
- Homepage: https://ashishware.com/2024/05/20/pipicospeech/
- Size: 3.74 MB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Speech Recognition Using CircuitPython
[![assembled circuit](https://img.youtube.com/vi/COsEE_Mif4k/0.jpg)](https://www.youtube.com/watch?v=COsEE_Mif4k)This repository contains code and instructions to implement single word speech recognition using neural networks on any board running CircuitPython.
The code and instructions were tested with Raspberry Pi Pico board, but should work with almost any board that supports CircuitPython.
This work is mainly inspired from [a tutorial on tensorflow's website](https://www.tensorflow.org/tutorials/audio/simple_audio).Despite being highly experimental, the code is fun to play with 🙂.
## Hardware Requirements
Assuming we are using a Raspiberry Pi Pico:- Raspberry Pi Pico running CircuitPython 9
- A Electret Mic Breakout Board (like [this one](https://www.sparkfun.com/products/12758)). Note: You will need to modify the code if you use a PDM Microphone.
- A pushbutton switch
- LEDs (yellow and green)
- Current limiting resistors.
- Wires for connecting components## Connections
- The output of microphone is connected to `A1` of the Pi Pico. Input to VCC of microphone board is 3.3(OUT) of the Pi Pico.
- The pushbutton is connected to `GP21` of the Pi Pico.
- Yellow LED (system indicator), connected to 'GP19' of the Pi Pico via current limiting resistor.
- Green LED (detection indicator), connected to 'GP18' of the Pi Pico via current limiting resistor.![Schematics](images/pipico_voice_recognition_schem.png)
![Connections](images/pipico_voice_recognition_bb.png)
## Checking if audio is getting recorded
Before proceeding to next step, it is worthwhile to check if our PiPico is actually recording speech.Once you have made all the connections, load the code present in the [`record_speech.py`](record_speech.py) file on the PiPico, and while the PiPico is connected to a computer, record the audio using [`record_speech.ipynb`](notebooks/record_speech.ipynb) notebook (running on the computer). Feel free to tweak the gain on your microphone board till you get a clearer recording.
## Detecting speech.
Copy the following files to the Pi Pico board:
- `code.py`
- `stop_model_min.py`
- `on_model_min.py`
- `no_model_min.py`
- `yes_model_min.py`Choose your model by uncommenting the appropriate line in code.py (only one model works at a time due to memory constraints):
```python
from yes_model_min import predict
#from no_model_min import predict
```After copying the files, your board will reboot. Wait for the yellow LED to flash (this takes about 30 seconds). This means the system is ready. Now, press the pushbutton and speak the word you want the Pi Pico to recognize (like "on"). The yellow LED will light up for a second – make sure you speak while it's on. If the word is detected, the green LED will blink a couple of times. If not, give it another try!
## Adjusting detection threshold
Try to play around with detection threshold in `code.py` to increase accuracy of detection. Modify this line:
```python
#change 0.70 to whatever works for your model.
if prediction[0] > 0.70:
detected()
```## Identifying other words
Want to teach your Pi Pico new words? Check out this [Kaggle notebook](https://www.kaggle.com/code/finalepoch/speech-recognition-using-circuitpython) for instructions on training a model using the '[Speech Commands Dataset](http://download.tensorflow.org/data/speech_commands_v0.01.tar.gz)'.
## Uncovering the Inner Workings
For more insights into the feature extraction technique employed in the project and the methodology used for model training, please refer to the article below:
https://ashishware.com/2024/05/20/pipicospeech/
## Known Issues
**1. Intermittent USB Error on Windows 10**
- **Description:** The Pi Pico may not be recognized correctly as a USB drive when connected to a Windows 10 PC while running this code. This can manifest as a USB error.
- **Workaround:**
1. **Restart the computer:** This often can be resolved by restarting the PC.
2. **Reset flash memory (if restart fails):** If restarting doesn't work, follow the guide on [Adafruit](https://learn.adafruit.com/getting-started-with-raspberry-pi-pico-circuitpython/circuitpython#flash-resetting-uf2-3083182) to reset the Pico's flash memory and reinstall CircuitPython, then upload the code.**2. Slow Startup**
- **Description:** Takes around 20-30 seconds to boot after uploading the code.
- **Causes:**
- Large model files
- Hardware limitations of the Pi Pico
- **Mitigation Strategies:**
- Use [mpy-cross](https://pypi.org/project/mpy-cross/) to reduce size of Python code.**3. Limited Accuracy and Unrelated Word Detection**
- **Description:** The code might sometimes produce inaccurate results, triggering detections for totally un-related words.
- **Potential Causes:**
- Imperfections in the underlying machine learning model or training data
- Environmental factors affecting audio capture (noise, background sounds)
- **Potential Solutions:**
- Refine the machine learning model:
- Retrain the model with a larger and more diverse dataset to improve its generalization ability.
- Consider using data augmentation techniques to artificially expand the training dataset.
- Experiment with different model architectures and hyper-parameters to find one that performs well on your specific task.
- Enhance audio capture quality:
- Implement noise reduction techniques in your code to filter out unwanted background sounds.