Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to train CNN on common voice dataset

I am trying to train a cnn with the common voice dataset. I am new to speech recognition and am not able to find any links on how to use the dataset with keras. I followed this article to build a simple word classification network. But I want to scale it up with the common voice dataset. any help is appreciated.

Thank you

like image 477
Sashaank Avatar asked Sep 03 '25 03:09

Sashaank


1 Answers

What you can do is looking at MFCCs. In short, these are features extracted from the audio waveform by using signal processing techniques to transcribe the way humans perceive sound. In python, you can use python-speech-features to compute MFCCs.

Once you have prepared your data, you can build a CNN; for example something like this one:

enter image description here

You can also use RNNs (LSTM or GRU for example), but this is a bit more advanced.

EDIT: A very good dataset to start, if you want:

Speech Commands Dataset

like image 190
Baptiste Pouthier Avatar answered Sep 07 '25 18:09

Baptiste Pouthier



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!