fedeboco / speech-processing

86.53 - Algorithms used in speech recognition and application use of the HTK toolkit for a speech recognition system to make phone calls with voice.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Speech Processing

This repo consists of 4 subprojects from the assignature <86.53 - Procesamiento del Habla> from the Electronic Engineer Career of the University of Buenos Aires. They are:

  • Linear Predictive Coding (LPC)
  • Cepstrum
  • K-means, Linear Discriminant Analysis (LDA) and Expectation Maximization (EM)
  • HTK: Speech Recognition Toolkit (Cambridge University)

Subprojects

Linear Predictive Coding (LPC)

This technique is applied in different applications such as VoIP and speech synthesis. It can also be used in HTK. It calculates the required coefficients to produce the envelope of the signal and sends them through a channel in order to be reconstructed by the receiver. This makes an efficient use of the channel.

Cepstrum

Cepstral Analysis is applied to study formants in speech.

K-means, Linear Discriminant Analysis (LDA) and Expectation Maximization (EM)

This three methods are essential in order to work with speech recognition. Either of them estimate the formants of vowels. In this subproject, only the first 2 formants are considered in order to achieve a better visualization of the phenomenon. More formants can be estimated, although 2 formants are usually enough to recognize speech properly.

Both K-means and EM are iterative, they train the model based on training samples until the error between the real formants and the estimated ones go below a certain threshold. This iterations are shown below in the "iteración" plots. Once the error is minimal, the iterations stop. Also, the initial estimation value can be based on some true samples (calculating the mean of them), or it can also be a random value. That's why K-means and EM are plotted twice in the results html file, one for each initialization method.

HTK: Speech Recognition Toolkit (Cambridge University)

This toolkit is used in order to train a speech recognition system using cepstrum coefficients, Baum-Welch algorithm (similar to EM), the Viterbi algorithm and Markov Chains in order to recognize speech. This subproject consists of two parts:

  • Training and testing the model using the Latino40 database licensed to my university.
  • Recording my voice and testing the system for a finite-grammar phone-call system, which allows to make phone calls just using voice.
Training and testing of the model is ploted below, being the plot the percentage of correct words and sentences in function of number of gaussians used to train the model.

Testing of the finite-grammar phone call system with my voice samples are ploted below, being the plot the percentage of correct words and sentences in function of number of gaussians used to train the model. This time the results are better because the grammar for a phone-call system is considerably smaller than the trained dictionary. It's properly application-focused, which makes it more accurate.

The whole process is explained here:

About

86.53 - Algorithms used in speech recognition and application use of the HTK toolkit for a speech recognition system to make phone calls with voice.


Languages

Language:MATLAB 48.6%Language:HTML 46.9%Language:Perl 2.6%Language:Grammatical Framework 1.3%Language:Shell 0.7%