annotate experiments/scripts/HTK/install_htk.sh @ 195:0db637cac96b

- Added as-yet-unfinished support for a proper configuraiton file format - Added a couple of pythin scripts to generate HMM configuration files - Variable name changes and other cosmetic things - Added the option for the noise generation to do pink noise (untested)
author tomwalters
date Thu, 12 Aug 2010 11:28:11 +0000
parents aa4eea1a3568
children 97a513bc3bcf
rev   line source
tomwalters@54 1 #!/bin/bash
tomwalters@54 2 set -e
tomwalters@54 3 set -u
tomwalters@165 4 if [ ! -e /mnt/experiments/htk/.htk_installed_success ]; then
tomwalters@182 5 sudo mkdir -p /mnt/experiments/htk
tomwalters@165 6 sudo chown ubuntu /mnt/experiments/htk
tomwalters@165 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@165 14 touch /mnt/experiments/htk/.htk_installed_success
tomwalters@165 15 fi