annotate experiments/scripts/HTK/install_htk.sh @ 54:90eebc3c02ca

- 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 8644afee68bd
rev   line source
tomwalters@54 1 #!/bin/bash
tomwalters@54 2 set -e
tomwalters@54 3 set -u
tomwalters@54 4 if [ ! -e /mnt/experiments/htk/.htk_installed_success ]; then
tomwalters@54 5 sudo mkdir /mnt/experiments/htk
tomwalters@54 6 sudo chown ubuntu /mnt/experiments/htk
tomwalters@54 7 cd /mnt/experiments/htk
tomwalters@54 8 wget --user $HTK_USERNAME --password $HTK_PASSWORD http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.1.tar.gz
tomwalters@54 9 tar -xzf HTK-3.4.1.tar.gz
tomwalters@54 10 cd htk
tomwalters@54 11 ./configure --disable-hslab
tomwalters@54 12 make
tomwalters@54 13 sudo make install
tomwalters@54 14 touch /mnt/experiments/htk/.htk_installed_success
tomwalters@54 15 fi