# HG changeset patch # User tomwalters # Date 1267168594 0 # Node ID b893a04a845ed12e2182308b650e4df02cd89fe1 # Parent c2a231040143343aa5db223db7f1ac5ff28d0a6c -More fixes diff -r c2a231040143 -r b893a04a845e scripts/gen_features.sh --- a/scripts/gen_features.sh Fri Feb 26 07:12:14 2010 +0000 +++ b/scripts/gen_features.sh Fri Feb 26 07:16:34 2010 +0000 @@ -6,10 +6,10 @@ # Author: Thomas Walters # Source directory for all the sound files -SOUND_SOURCE="/Users/Tom/Documents/Work/PhD/HTK-AIM/Sounds/" +SOUND_SOURCE="/media/sounds-database/cnbh-sounds/" # Location of the AIMCopy binary if not in the path -AIMCOPY_PREFIX="../build/darwin-release/" +AIMCOPY_PREFIX="../build/posix-release/" MACHINE_CORES=2 @@ -43,9 +43,9 @@ echo "Generating syllable list..." for v in $VOWELS; do - #echo $v$v >> $WORK/$SYLLIST.tmp + echo $v$v >> $WORK/$SYLLIST.tmp for c in $CONSONANTS; do - #echo $v$c >> $WORK/$SYLLIST.tmp + echo $v$c >> $WORK/$SYLLIST.tmp echo $c$v >> $WORK/$SYLLIST.tmp done done