seyedsaleh / persian-speech-recognition

Simple word recognition using CNN on Raspberry Pi board 🗣

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contributors Forks Stargazers Issues MIT License


persian-speech-recognition

Simple single persian word speech recognition using CNN on Raspberry Pi board 🗣
Explore the docs »

Demo persian word speech recognition (Google Colab) . Report Bug & Request Feature

Table of Contents
  1. About The Project
  2. Parts
  3. Results
  4. License
  5. Dataset
  6. Contact

About The Project

In this project, everything starts from a spoken speech from which features are extracted to recognize which word was said (which turns into a classification task). The end goal is to accurately identify a set of predefined words from short audio clips.

There are six classes to recognize. There is no problem adding as much as you may wish. You should change the number of model category output and input dataset labels a bit.

For instance, the task in this project will be to classify audio between six words in the Farsi language (words meaning in the bracket):

  • Garm [Hot]
  • Sard [Cold]
  • Roshan [Bright]
  • Tarik [Dim]
  • Khodkar [Automatic]
  • Dasti [Manual]

Although single word speech recognition is not suitable for continuous speech recognition, it could be used to build a voice assistant or bot. To show this capability, we have implemented the algorithm on the Raspberry Pi board.

Look at our result! 😄

(back to top)

Built With

Major frameworks/libraries used to this project:

(back to top)

Parts

Data preparation and augmentation

Considering the lack of data in the collected database, we will add some noise to each data and use it as new data for network training. The extra noise power is calculated according to the power of each signal so that the audio signal is not completely damaged.

In this way, we will have about 500 data for each word to train our word recognition network. We will use one audio channel (mono) to read each voice. Thus, for each sound, we will have a signal with a specific sampling frequency; the sampling frequency of the input dataset signals is 54,000 Hz, which we did not change.

To clear the data, we read the zero values ​​after reading the audio signals from both sides. (trimming)

Finally, we sorted data by numbers, and the original audio and the noise files are stored in a folder with the word name as the label.

Pre-processing

We have two critical problems for preparing data to feed into the neural network.

  1. We can't just feed an audio file to a CNN. That's outrageous!
  2. We need to prepare a fixed size vector for each audio file for classification.

What's the solution?

  1. We could use embedding to overcome this problem. An embedding is a mapping from discrete objects, such as words vectors of real numbers. There are a lot of techniques and python packages for audio feature extraction. We use the most obvious and simple one, MFCC encoding, which is super effective for working with speech signals.

  2. To overcome this problem, all we need to do is pad the output vectors with a constant value of 0. MFCC vectors might vary in size for different audio inputs; CNN can't handle sequence data, so we need to prepare a fixed size vector for all audio files.

MFCC (Mel Frequency Cepstral Coefficients): In short, In sound processing, the Mel-frequency cepstrum (MFC) represents the short-term power spectrum of a sound, based on a linear cosine transform of a log power spectrum on a nonlinear Mel scale of frequency.

Process

We will process the signal and get its MFCC, so finally, we are pooling signal with 0 to the size of predefined max_width. Then, we read all sound files from each labeled directory and do the mfcc transform, then save the mfcc created matrices in a .npy file named after the name of the label to use for the training network.

Model

We use a Convolutional Neural Network (CNN) with one-dimensional convolutions on the raw audio waveform to classify samples.

Raspberry Pi code

(back to top)

Results

The model achieves 99.73% accuracy on the validation set. The results show that the model can predict samples of words it has seen during training with high accuracy. Still, it somewhat struggles to generalize to terms outside the training data scope and extremely noisy samples.

(back to top)

License

Distributed under the MIT License. See LICENSE.txt for more information.

(back to top)

Dataset

We will use our own dataset which we have collected for this project. This database has been collected by Telegram messengers (social network), thanks its voice recording. First we record voice data from about 250 different people varrying the sex, age and save these data, then we categorized each voice data to its specific group (labeling) and did the task of data cleaning and converting its format from .ogg to .wav. This dataset has been prepared after several days of efforts by a group of 10 people.

Each folder contains approximately 250 audio files for each word. The name of the folder is actually the label of those audio files. You can play some audio files randomly to get an overall idea.

(back to top)

Contact

Seyedmohammadsaleh Mirzatabatabaei - @seyedsaleh - seyedsaleh.edu@gmail.com

Project Link: https://github.com/seyedsaleh/persian-speech-recognition

(back to top)


About

Simple word recognition using CNN on Raspberry Pi board 🗣

License:MIT License


Languages

Language:Jupyter Notebook 100.0%