VERSION=1.0UTTERANCE=testf1.mfclmname=wdnetlmscale=20.00 wdpenalty=-30.00vocab=dictN=31L=56I=0t=0.00I=1t=0.36I=2t=0.75I=3t=0.81... etcI=30t=2.48J=0S=0E=1W=SILENCEJ=1S=1E=2W=FOUR... etcJ=55S=29E=30W=SILENCEv=0 a=-3239.01 l=0.00v=0 a=-3820.77 l=0.00v=0 a=-246.99 l=-1.20
Tuesday, August 9, 2011
HTK lattice format
Thursday, August 4, 2011
A hierarchical context dependent neural network architecture for improved phone recognition

This paper explored the CD phone recognition on TIMIT using hybrid NN/HMM system.
Dirichlet mixture models of neural net posteriors for hmm based speech recognition

In this paper, the authors propose to using Dirichlet Mixture models instead of Gaussian Mixture models for the hybrid NN/HMM system. In the conventional NN/HMM system, the NN's posteriors are Gaussianized to feed into the HMM framework. However, as the posterior probabilities are lying on probability simplex and their distribution could be modeled by Dirichlet distributions. Thus Dirichlet Mixture models would be more preferable to Gaussian Mixture model.
Automatic speech recognition using hidden conditional neural fields

The concept is not that new, is similar to Conditional Neural Network or Neural Conditional Random Fields. And the results on TIMIT is far from DBN based systems.
Wednesday, August 3, 2011
Slides for Introduction to Restricted Boltzmann Machine

Wednesday, July 13, 2011
[HTK] Compile HTK on 64bit machine
Ubuntu 9.04 nVidia Driver Screen Resolution Problem
Many people running Ubuntu 9.04 are having trouble with the proprietary nVidia driver (nvidia-graphics-driver-180 in my case) including getting it to go to high resolutions that fit the native resolution of widescreen monitors. I had the same problem with an nVidia GeForce 6150 LE and Dell UltraSharp 2407WFPHC monitor.
I was able to get all the resolutions, including 1920×1200, for my monitor as well as have the nVidia driver recognize the monitor as a 2407WFPHC, by doing the following:
(If you can’t see your screen at all after enabling the nVidia driver, first read the companion post, Ubuntu 9.04 Screen Resolution/Monitor Out of Range (nVidia Driver 180).)
- Open a terminal window
- Go to the X11 directory (cd /etc/X11)
- Make a backup of the current xorg.conf (e.g., sudo cp xorg.conf xorg.conf.backup)
- Run nvidia-xconfig with root permission (sudo nvidia-xconfig). If you get a parsing error, delete xorg.conf so nvidia-xconfig can create a fresh one.
- Open xorg.conf with your favorite editor (e.g. sudo vim xorg.conf)
- You’ll see a lot of extra settings now
- Look for Section “Monitor”. Mine defaulted to the following settings:
Identifier “Monitor0″
VendorName “Unknown”
ModelName “Unknown”
HorizSync 28.0 – 33.0
VertRefresh 43.0 – 72.0
Option “DPMS” - Change the HorizSync and VertRefresh values to the correct ones for your particular monitor. For my 2407WFPHC, I put the following:
HorizSync 30.0 – 83.0
VertRefresh 56.0 – 76.0 - Save the xorg.conf file
- Log out and restart the X server (at the login screen, select Menu, then Restart X server)
- Log in and run the NVIDIA X Server Settings tool. You should now have a whole bunch of resolutions from which to choose. I selected 1920×1200.
The reason that this works is that the nVidia driver needs to know the frequency ranges for your monitor in order to know what resolutions are safe to use. Setting the HorizSync and VertRefresh in xorg.conf provides this necessary information.
From:
http://turbulentsky.com/ubuntu-904-nvidia-driver-screen-resolution-problem.html