top of page
Writer's pictureAlik Sargsyan

Speech Recognition with Deep Learning Toolkit for LabVIEW

Updated: Aug 25, 2019


Speech recognition with deep learning toolkit for Labview by Ngene

In this post, we would like to share the knowledge we acquired during participation in Kaggle competition. Although we didn’t win the competition the experience we had was worth it.


The project offered by Kaggle included a Speech Recognition problem that was supposed to be solved with Deep Learning algorithms. We thought this was a perfect opportunity to share our approach of tackling the challenge and conduct a demonstration of Deep Learning Toolkit by Ngene at the same time.


This blog post is organized in the following order:

  1. Problem and dataset description

  2. Insights on how Convolutional Neural Networks can be applied for Speech Recognition problems

  3. Explanation of the main VIs of this specific project, namely Dataset Preprocessing:

  • Training

  • Deployment for test/inference


Dataset and the problem

The dataset is Speech Commands Datasets released by TensorFlow. It includes 65,000 one-second-long utterances of 30 short words pronounced by thousands of different people. The task was to build an algorithm that can identify which specific word was pronounced in the audio sample.


Convolutional Neural Network classifier for spectrograms

As the waveforms which represent only time and amplitude of the pronounced words are almost the same, we have decided to convert those one-dimensional waveforms into two-dimensional spectrograms by including the third component that is the frequency of the signal. The differences between the signals are clearly expressed now.

Waveforms and spectrogramms
Waveforms and corresponding spectrograms of few sample audios.

CNN based classifiers which are one of the few successful techniques that are capable of classifying complex images have been chosen to be used in this specific problem, thus converting voice recognition problem into image classification. As a part of the data preparation process, we will need to convert the spectrograms of the signals into images to later feed them into the NN classifier for the training.



Dataset Preparation

The conversion of waveforms is done with help of Wave_to_STFT_PNG.vi(available as main VI in DeepLTK) which takes the path to the waveform dataset, converts all the .wav file into spectrograms and stores the .png images at the specified destination grouped into the folders based on the label(pronounced word). The user can also adjust the output resolution and STFT transformation parameters on the front panel.


Some examples of converted spectrograms can be seen below.


Images where word "Five" is pronounced:


Images where word "On" is pronounced:


After finishing data preparation and having all spectrograms converted into images, we can train a standard CNN based classifier.


Training a CNN for image classification

For the training of CNN, we have built a special VI. It is very similar to the one for the MNIST classifier which comes with the toolkit's installer with some modifications in dataset reading and testing processes.


Deploying the trained model for inference.

For the inference we have two examples:

  1. Speech_Rec_Test(file).vi - which predicts what word is pronounced in the wave file.

  2. Speech_Rec_Test(microphone).vi - which continuously monitors the sound from microphone, and after detecting a sound above specified threshold predicts the word pronounced with 1 second of that event.

Speech_Rec_Test(microphone).vi - recognizing sound from microphone

The project can be downloaded from Model Zoo page and additional instructions for running the VIs described above can be found on the front panel of each VI.


You can also watch the video post for a more detailed explanation.



In case of having a question, please leave a comment below or contact us by sending an e-mail to info@ngene.co.

2,670 views0 comments

Recent Posts

See All

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating

HAVE QUESTIONS?

bottom of page