tomwalters@33
|
1 #!/bin/bash
|
tomwalters@33
|
2 #
|
tomwalters@33
|
3 # Run the syllables database 'spider pattern' through AIM-C
|
tomwalters@33
|
4 #
|
tomwalters@33
|
5 # Copyright 2009-2010 University of Cambridge
|
tomwalters@33
|
6 # Author: Thomas Walters <tom@acousticscale.org>
|
tomwalters@33
|
7
|
tomwalters@33
|
8 # Source directory for all the sound files
|
tomwalters@39
|
9 #SOUND_SOURCE="/Users/Tom/Documents/Work/PhD/HTk-AIM/Sounds/"
|
tomwalters@35
|
10 SOUND_SOURCE="/media/sounds-database/cnbh-sounds/"
|
tomwalters@33
|
11
|
tomwalters@33
|
12 # Location of the AIMCopy binary if not in the path
|
tomwalters@39
|
13 AIMCOPY_PREFIX="../aimc-read-only/build/posix-release/"
|
tomwalters@33
|
14
|
tomwalters@39
|
15 MACHINE_CORES=1
|
tomwalters@33
|
16
|
tomwalters@33
|
17 # Names of various internal files and directories.
|
tomwalters@33
|
18 # Rename here if you don't like them for some reason.
|
tomwalters@33
|
19 SYLLIST=syls
|
tomwalters@33
|
20 TRAIN_SPEAKERS=train_speakers
|
tomwalters@33
|
21 TEST_SPEAKERS=test_speakers
|
tomwalters@33
|
22 WORK_PREFIX=snr
|
tomwalters@33
|
23 TRAIN_LIST=train.list
|
tomwalters@33
|
24 TEST_LIST=test.list
|
tomwalters@33
|
25 COMBINED_LIST=combined.list
|
tomwalters@33
|
26 FEATURES_DIR=features
|
tomwalters@33
|
27 AIMCOPY_CONFIG=aimcopy.cfg
|
tomwalters@33
|
28 AIMCOPY_LOG_TRAIN=aimcopy_train.log
|
tomwalters@33
|
29 AIMCOPY_LOG_TEST=aimcopy_test.log
|
tomwalters@33
|
30
|
tomwalters@33
|
31
|
tomwalters@33
|
32 # The vowels and consonants that make up the CNBH database
|
tomwalters@33
|
33 VOWELS="a e i o u"
|
tomwalters@33
|
34 CONSONANTS="b d f g h k l m n p r s t v w x y z"
|
tomwalters@33
|
35 SILENCE="sil"
|
tomwalters@33
|
36
|
tomwalters@33
|
37 WORK=${WORK_PREFIX}`echo $1 | tr -d ' '`
|
tomwalters@33
|
38 mkdir -p $WORK
|
tomwalters@33
|
39
|
tomwalters@33
|
40 # Make a copy of this script in the experimental directory
|
tomwalters@33
|
41 cp -p $0 $WORK
|
tomwalters@33
|
42
|
tomwalters@33
|
43
|
tomwalters@33
|
44 echo "Generating syllable list..."
|
tomwalters@33
|
45
|
tomwalters@33
|
46 for v in $VOWELS; do
|
tomwalters@35
|
47 echo $v$v >> $WORK/$SYLLIST.tmp
|
tomwalters@33
|
48 for c in $CONSONANTS; do
|
tomwalters@35
|
49 echo $v$c >> $WORK/$SYLLIST.tmp
|
tomwalters@34
|
50 echo $c$v >> $WORK/$SYLLIST.tmp
|
tomwalters@33
|
51 done
|
tomwalters@33
|
52 done
|
tomwalters@33
|
53
|
tomwalters@33
|
54 # Sort the syllable list and delete the
|
tomwalters@33
|
55 # temporary, unsorted version
|
tomwalters@33
|
56 sort $WORK/$SYLLIST.tmp > $WORK/$SYLLIST
|
tomwalters@33
|
57
|
tomwalters@33
|
58
|
tomwalters@33
|
59 # Generate a list of filenames from the spoke pattern
|
tomwalters@33
|
60 cat <<"EOF" > $WORK/$TRAIN_SPEAKERS
|
tomwalters@33
|
61 170.9p112.2s100.0t+000itd
|
tomwalters@33
|
62 171.0p112.8s100.0t+000itd
|
tomwalters@33
|
63 171.3p111.7s100.0t+000itd
|
tomwalters@33
|
64 171.5p113.1s100.0t+000itd
|
tomwalters@33
|
65 171.9p111.5s100.0t+000itd
|
tomwalters@33
|
66 172.1p113.0s100.0t+000itd
|
tomwalters@33
|
67 172.4p111.9s100.0t+000itd
|
tomwalters@33
|
68 172.5p112.5s100.0t+000itd
|
tomwalters@33
|
69 EOF
|
tomwalters@33
|
70
|
tomwalters@33
|
71 cat <<"EOF" > $WORK/$TEST_SPEAKERS
|
tomwalters@33
|
72 137.0p104.3s100.0t+000itd
|
tomwalters@33
|
73 141.3p135.4s100.0t+000itd
|
tomwalters@33
|
74 145.5p106.3s100.0t+000itd
|
tomwalters@33
|
75 148.8p128.8s100.0t+000itd
|
tomwalters@33
|
76 151.6p83.9s100.0t+000itd
|
tomwalters@33
|
77 153.0p108.1s100.0t+000itd
|
tomwalters@33
|
78 155.5p123.5s100.0t+000itd
|
tomwalters@33
|
79 156.7p90.6s100.0t+000itd
|
tomwalters@33
|
80 159.5p109.6s100.0t+000itd
|
tomwalters@33
|
81 161.1p119.4s100.0t+000itd
|
tomwalters@33
|
82 161.1p96.8s100.0t+000itd
|
tomwalters@33
|
83 163.4p157.6s100.0t+000itd
|
tomwalters@33
|
84 164.7p110.8s100.0t+000itd
|
tomwalters@33
|
85 164.9p102.1s100.0t+000itd
|
tomwalters@33
|
86 165.6p144.0s100.0t+000itd
|
tomwalters@33
|
87 165.7p116.2s100.0t+000itd
|
tomwalters@33
|
88 167.4p133.5s100.0t+000itd
|
tomwalters@33
|
89 167.8p106.5s100.0t+000itd
|
tomwalters@33
|
90 168.6p111.6s100.0t+000itd
|
tomwalters@33
|
91 168.9p125.4s100.0t+000itd
|
tomwalters@33
|
92 169.0p114.0s100.0t+000itd
|
tomwalters@33
|
93 170.0p109.7s100.0t+000itd
|
tomwalters@33
|
94 170.1p119.5s100.0t+000itd
|
tomwalters@33
|
95 171.0p115.5s100.0t+000itd
|
tomwalters@33
|
96 171.7p112.3s100.0t+000itd
|
tomwalters@33
|
97 172.4p109.3s100.0t+000itd
|
tomwalters@33
|
98 173.3p105.6s100.0t+000itd
|
tomwalters@33
|
99 173.5p115.0s100.0t+000itd
|
tomwalters@33
|
100 174.5p100.6s100.0t+000itd
|
tomwalters@33
|
101 174.5p110.6s100.0t+000itd
|
tomwalters@33
|
102 174.9p113.0s100.0t+000itd
|
tomwalters@33
|
103 175.7p118.5s100.0t+000itd
|
tomwalters@33
|
104 176.1p94.5s100.0t+000itd
|
tomwalters@33
|
105 178.0p108.5s100.0t+000itd
|
tomwalters@33
|
106 178.1p87.6s100.0t+000itd
|
tomwalters@33
|
107 178.8p123.6s100.0t+000itd
|
tomwalters@33
|
108 179.0p113.9s100.0t+000itd
|
tomwalters@33
|
109 180.4p80.1s100.0t+000itd
|
tomwalters@33
|
110 183.0p105.7s100.0t+000itd
|
tomwalters@33
|
111 183.0p130.4s100.0t+000itd
|
tomwalters@33
|
112 184.8p115.1s100.0t+000itd
|
tomwalters@33
|
113 188.1p139.2s100.0t+000itd
|
tomwalters@33
|
114 189.6p102.1s100.0t+000itd
|
tomwalters@33
|
115 192.7p116.7s100.0t+000itd
|
tomwalters@33
|
116 194.5p150.4s100.0t+000itd
|
tomwalters@33
|
117 198.1p97.9s100.0t+000itd
|
tomwalters@33
|
118 202.7p118.6s100.0t+000itd
|
tomwalters@33
|
119 208.6p93.2s100.0t+000itd
|
tomwalters@33
|
120 215.2p121.0s100.0t+000itd
|
tomwalters@33
|
121 EOF
|
tomwalters@33
|
122
|
tomwalters@33
|
123 # Construct the conversion scripts for AIMCopy (or HCopy) and
|
tomwalters@33
|
124 # the master label files for the train and test sets
|
tomwalters@33
|
125
|
tomwalters@33
|
126 echo "Generating train and test scripts..."
|
tomwalters@33
|
127 if [ -a $WORK/$TRAIN_LIST ]
|
tomwalters@33
|
128 then
|
tomwalters@33
|
129 rm $WORK/$TRAIN_LIST
|
tomwalters@33
|
130 fi
|
tomwalters@33
|
131 if [ -a $WORK/$TEST_LIST ]
|
tomwalters@33
|
132 then
|
tomwalters@33
|
133 rm $WORK/$TEST_LIST
|
tomwalters@33
|
134 fi
|
tomwalters@33
|
135
|
tomwalters@33
|
136 exec 3> $WORK/$TRAIN_LIST
|
tomwalters@33
|
137 exec 5> $WORK/$TEST_LIST
|
tomwalters@33
|
138 for syllable in $(cat $WORK/$SYLLIST); do
|
tomwalters@33
|
139 for speaker in $(cat $WORK/$TRAIN_SPEAKERS); do
|
tomwalters@33
|
140 SOURCE_FILENAME=$SOUND_SOURCE/$syllable/${syllable}${speaker}.wav
|
tomwalters@33
|
141 DEST_FILENAME=$WORK/$FEATURES_DIR/$syllable/${syllable}${speaker}
|
tomwalters@33
|
142 echo "$SOURCE_FILENAME ${DEST_FILENAME}.htk" >&3
|
tomwalters@33
|
143 done
|
tomwalters@33
|
144 for speaker in $(cat $WORK/$TEST_SPEAKERS); do
|
tomwalters@33
|
145 SOURCE_FILENAME=$SOUND_SOURCE/$syllable/${syllable}${speaker}.wav
|
tomwalters@33
|
146 DEST_FILENAME=$WORK/$FEATURES_DIR/$syllable/${syllable}${speaker}
|
tomwalters@33
|
147 echo "$SOURCE_FILENAME ${DEST_FILENAME}.htk" >&5
|
tomwalters@33
|
148 done
|
tomwalters@33
|
149 done
|
tomwalters@33
|
150 exec 3>&-
|
tomwalters@33
|
151 exec 5>&-
|
tomwalters@33
|
152
|
tomwalters@33
|
153 # Make the necessary directories for the computed features
|
tomwalters@33
|
154 echo "Making directory structure..."
|
tomwalters@33
|
155 mkdir $WORK/$FEATURES_DIR
|
tomwalters@33
|
156 for syllable in $(cat $WORK/$SYLLIST); do
|
tomwalters@33
|
157 mkdir $WORK/$FEATURES_DIR/$syllable
|
tomwalters@33
|
158 done
|
tomwalters@33
|
159
|
tomwalters@33
|
160 # Write the AIMCopy config file
|
tomwalters@33
|
161 echo "Creating AIMCopy config file..."
|
tomwalters@33
|
162 cat <<"EOF" > $WORK/$AIMCOPY_CONFIG
|
tomwalters@33
|
163 input.buffersize=480
|
tomwalters@33
|
164 sai.frame_period_ms=10.0
|
tomwalters@33
|
165 slice.normalize=true
|
tomwalters@33
|
166 ssi.pitch_cutoff=true
|
tomwalters@33
|
167 ssi.weight_by_cutoff=false
|
tomwalters@33
|
168 ssi.weight_by_scaling=true
|
tomwalters@33
|
169 ssi.log_cycles_axis=true
|
tomwalters@33
|
170 EOF
|
tomwalters@33
|
171 echo "noise.level_db=$1" >> $WORK/$AIMCOPY_CONFIG
|
tomwalters@33
|
172
|
tomwalters@33
|
173 echo "Splitting data files..."
|
tomwalters@33
|
174 cat $WORK/${TRAIN_LIST} $WORK/${TEST_LIST} > $WORK/${COMBINED_LIST}
|
tomwalters@33
|
175
|
tomwalters@33
|
176 total_cores=$(($MACHINE_CORES))
|
tomwalters@33
|
177 echo -n $total_cores
|
tomwalters@33
|
178 echo " cores available"
|
tomwalters@33
|
179 total_files=`cat $WORK/${COMBINED_LIST} | wc -l | sed 's/ *//'`
|
tomwalters@33
|
180 echo -n $total_files
|
tomwalters@33
|
181 echo " files to process"
|
tomwalters@33
|
182 files_per_core=$(($total_files/$total_cores+1))
|
tomwalters@33
|
183 echo -n $files_per_core
|
tomwalters@33
|
184 echo " files per core"
|
tomwalters@33
|
185 split -l $files_per_core $WORK/${COMBINED_LIST} $WORK/split_list
|
tomwalters@33
|
186 splits=( $(ls $WORK/split_list*))
|
tomwalters@33
|
187 element=0
|
tomwalters@33
|
188 echo "Spawning tasks..."
|
tomwalters@33
|
189 for ((c=1;c<=$MACHINE_CORES;c+=1)); do
|
tomwalters@33
|
190 s=${splits[$element]}
|
tomwalters@33
|
191 ${AIMCOPY_PREFIX}AIMCopy -C $WORK/$AIMCOPY_CONFIG -S $s &
|
tomwalters@33
|
192 let element=element+1
|
tomwalters@33
|
193 done
|
tomwalters@33
|
194
|
tomwalters@33
|
195 echo "Waiting for tasks to complete..."
|
tomwalters@33
|
196 wait
|
tomwalters@33
|
197 echo "Done!"
|