Mercurial > hg > aimc
comparison trunk/scripts/gen_features.sh @ 308:91521e05b08f
-More fixes
author | tomwalters |
---|---|
date | Fri, 26 Feb 2010 07:16:34 +0000 |
parents | a9e7737cad19 |
children | 66d5c4d2d90c |
comparison
equal
deleted
inserted
replaced
307:a9e7737cad19 | 308:91521e05b08f |
---|---|
4 # | 4 # |
5 # Copyright 2009-2010 University of Cambridge | 5 # Copyright 2009-2010 University of Cambridge |
6 # Author: Thomas Walters <tom@acousticscale.org> | 6 # Author: Thomas Walters <tom@acousticscale.org> |
7 | 7 |
8 # Source directory for all the sound files | 8 # Source directory for all the sound files |
9 SOUND_SOURCE="/Users/Tom/Documents/Work/PhD/HTK-AIM/Sounds/" | 9 SOUND_SOURCE="/media/sounds-database/cnbh-sounds/" |
10 | 10 |
11 # Location of the AIMCopy binary if not in the path | 11 # Location of the AIMCopy binary if not in the path |
12 AIMCOPY_PREFIX="../build/darwin-release/" | 12 AIMCOPY_PREFIX="../build/posix-release/" |
13 | 13 |
14 MACHINE_CORES=2 | 14 MACHINE_CORES=2 |
15 | 15 |
16 # Names of various internal files and directories. | 16 # Names of various internal files and directories. |
17 # Rename here if you don't like them for some reason. | 17 # Rename here if you don't like them for some reason. |
41 | 41 |
42 | 42 |
43 echo "Generating syllable list..." | 43 echo "Generating syllable list..." |
44 | 44 |
45 for v in $VOWELS; do | 45 for v in $VOWELS; do |
46 #echo $v$v >> $WORK/$SYLLIST.tmp | 46 echo $v$v >> $WORK/$SYLLIST.tmp |
47 for c in $CONSONANTS; do | 47 for c in $CONSONANTS; do |
48 #echo $v$c >> $WORK/$SYLLIST.tmp | 48 echo $v$c >> $WORK/$SYLLIST.tmp |
49 echo $c$v >> $WORK/$SYLLIST.tmp | 49 echo $c$v >> $WORK/$SYLLIST.tmp |
50 done | 50 done |
51 done | 51 done |
52 | 52 |
53 # Sort the syllable list and delete the | 53 # Sort the syllable list and delete the |