Mercurial > hg > aimc
comparison trunk/experiments/scripts/HTK/install_htk.sh @ 335:71c438f9daf7
- Scripts for running recognition experiments using AIM-C and HTK to compare MFCCs against features generated with AIM-C
author | tomwalters |
---|---|
date | Wed, 04 Aug 2010 06:41:56 +0000 |
parents | |
children | 26c7ad278d3c |
comparison
equal
deleted
inserted
replaced
334:4ee5bb246f60 | 335:71c438f9daf7 |
---|---|
1 #!/bin/bash | |
2 set -e | |
3 set -u | |
4 if [ ! -e /mnt/experiments/htk/.htk_installed_success ]; then | |
5 sudo mkdir /mnt/experiments/htk | |
6 sudo chown ubuntu /mnt/experiments/htk | |
7 cd /mnt/experiments/htk | |
8 wget --user $HTK_USERNAME --password $HTK_PASSWORD http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.1.tar.gz | |
9 tar -xzf HTK-3.4.1.tar.gz | |
10 cd htk | |
11 ./configure --disable-hslab | |
12 make | |
13 sudo make install | |
14 touch /mnt/experiments/htk/.htk_installed_success | |
15 fi |