Mercurial > hg > aimc
changeset 35:b893a04a845e
-More fixes
author | tomwalters |
---|---|
date | Fri, 26 Feb 2010 07:16:34 +0000 |
parents | c2a231040143 |
children | 74196ff1cb98 |
files | scripts/gen_features.sh |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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 <tom@acousticscale.org> # 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