annotate experiments/scripts/master.sh @ 239:97d0f6765763

- Experimental updates.
author tomwalters
date Sun, 24 Oct 2010 23:26:09 +0000
parents 3a6334962357
children 9828f74cda70
rev   line source
tomwalters@54 1 #!/bin/bash
tomwalters@54 2 # Copyright 2010 Thomas Walters <tom@acousticscale.org>
tomwalters@54 3 #
tomwalters@54 4 # Run a series of experiments which compare MFCC features generated by HTK to
tomwalters@54 5 # AIM features generated using AIM-C using a series of syllable recogntiton
tomwalters@54 6 # tasks.
tomwalters@201 7 # This script expects to be run from within the AIM-C source tree.
tomwalters@212 8 # It builds the HTK binaries and AIM-C AIMCopy binary if they're not
tomwalters@212 9 # present.
tomwalters@201 10 # The following environment varaibles should be set before this script is run:
tomwalters@201 11 # SYLLABLES_DATABASE_URL - URL of a tar file containing the CNBH syllables
tomwalters@201 12 # database in FLAC format
tomwalters@212 13 # HTK_USERNAME and HTK_PASSWORD - username and password for the site at
tomwalters@201 14 # http://htk.eng.cam.ac.uk/
tomwalters@209 15 # NUMBER_OF_CORES - total number of machine cores
tomwalters@201 16
tomwalters@239 17 sudo apt-get -y update
tomwalters@239 18 sudo apt-get -y install bc subversion scons pkg-config \
tomwalters@239 19 libsndfile1-dev build-essential libboost-dev \
tomwalters@239 20 python sox python-matplotlib
tomwalters@239 21
tomwalters@239 22 # For 64-bit systems, uncomment this line:
tomwalters@239 23 sudo apt-get -y install libc6-dev-i386
tomwalters@239 24
tomwalters@54 25 # Set these to be the location of your input database, and desired output
tomwalters@212 26 # locations. (Note: the user running this script needs write permissions on
tomwalters@212 27 # the $WORKING_VOLUME.)
tomwalters@212 28 WORKING_VOLUME=/mnt/scratch1
tomwalters@212 29
tomwalters@212 30 SYLLABLES_DATABASE_TAR=$WORKING_VOLUME/001-downloaded_sounds_data/cnbh-syllables.tar
tomwalters@212 31 SOUNDS_ROOT=$WORKING_VOLUME/002-sounds/
tomwalters@212 32 FEATURES_ROOT=$WORKING_VOLUME/003-features/
tomwalters@212 33 HMMS_ROOT=$WORKING_VOLUME/004-hmms/
tomwalters@212 34 HTK_ROOT=$WORKING_VOLUME/software/htk/
tomwalters@212 35 AIMC_ROOT=$WORKING_VOLUME/software/aimc/
tomwalters@128 36
tomwalters@239 37 AIMCOPY_CONFIGURATION_FILE=./cnbh-syllables/feature_generation/ssi_profile_features.aimcopyconfig
tomwalters@239 38
tomwalters@54 39 # Number of cores on the experimental machine. Various scripts will try to use
tomwalters@54 40 # this if it's set.
tomwalters@209 41 # NUMBER_OF_CORES=8
tomwalters@54 42
tomwalters@54 43 # Fail if any command fails
tomwalters@54 44 set -e
tomwalters@54 45
tomwalters@54 46 # Fail if any variable is unset
tomwalters@54 47 set -u
tomwalters@54 48
tomwalters@212 49 ######
tomwalters@212 50 # Step 001 - Get the sounds database
tomwalters@178 51 if [ ! -e $SYLLABLES_DATABASE_TAR ]; then
tomwalters@212 52 mkdir -p `dirname $SYLLABLES_DATABASE_TAR`
tomwalters@178 53 wget -O $SYLLABLES_DATABASE_TAR $SYLLABLES_DATABASE_URL
tomwalters@178 54 fi
tomwalters@178 55
tomwalters@54 56 if [ ! -d $SOUNDS_ROOT ]; then
tomwalters@212 57 mkdir -p $SOUNDS_ROOT
tomwalters@54 58 fi
tomwalters@54 59
tomwalters@212 60 # Untar the CNBH syllables database, and convert the files from FLAC to WAV.
tomwalters@54 61 if [ ! -e $SOUNDS_ROOT/.untar_db_success ]; then
tomwalters@54 62 tar -x -C $SOUNDS_ROOT -f $SYLLABLES_DATABASE_TAR
tomwalters@54 63 touch $SOUNDS_ROOT/.untar_db_success
tomwalters@54 64 fi
tomwalters@54 65
tomwalters@54 66 # Convert the database to .WAV format and place it in $SOUNDS_ROOT/clean
tomwalters@185 67 echo "Converting CNBH-syllables database from FLAC to WAV..."
tomwalters@171 68 ./cnbh-syllables/feature_generation/convert_flac_to_wav.sh $SOUNDS_ROOT
tomwalters@212 69 #
tomwalters@212 70 ######
tomwalters@54 71
tomwalters@212 72 #####
tomwalters@212 73 # Step 002 -
tomwalters@54 74 # Generate versions of the CNBH syllables spoke pattern with a range of
tomwalters@54 75 # signal-to-noise ratios (SNRs). The versions are put in the directory
tomwalters@54 76 # ${SOUNDS_ROOT}/${SNR}_dB/ for each SNR in $SNRS.
tomwalters@239 77 SNRS="45 42 39 36 33" #" 30 27 24 21 18 15 12 9 6 3 0"
tomwalters@207 78 #SNRS="30" # For testing
tomwalters@186 79 ./cnbh-syllables/feature_generation/pink_noise.sh $SOUNDS_ROOT/clean/ "$SNRS"
tomwalters@54 80
tomwalters@54 81 # Make the list of all feature drectories
tomwalters@165 82 FEATURE_DIRS="clean"
tomwalters@54 83 for SNR in $SNRS; do
tomwalters@54 84 FEATURE_DIRS="$FEATURE_DIRS snr_${SNR}dB"
tomwalters@54 85 done
tomwalters@54 86
tomwalters@54 87 # Generate feature sets (for the full range of SNRs in $FEATURE_DIRS)
tomwalters@54 88 # 1. Standard MFCC features
tomwalters@54 89 # 2. AIM features
tomwalters@212 90 # 3. MFCC features with optimal VTLN
tomwalters@169 91
tomwalters@169 92 if [ ! -d $FEATURES_ROOT ]; then
tomwalters@212 93 mkdir -p $FEATURES_ROOT
tomwalters@169 94 fi
tomwalters@169 95
tomwalters@212 96 if [ ! -e $HTK_ROOT/.htk_installed_success ]; then
tomwalters@212 97 ./HTK/install_htk.sh $HTK_ROOT
tomwalters@181 98 fi
tomwalters@180 99
tomwalters@212 100 if [ ! -e $AIMC_ROOT/.aimc_build_success ]; then
tomwalters@212 101 ./aimc/build_aimc.sh $AIMC_ROOT
tomwalters@183 102 fi
tomwalters@183 103
tomwalters@54 104 for SOURCE_SNR in $FEATURE_DIRS; do
tomwalters@177 105 if [ ! -e $FEATURES_ROOT/mfcc/$SOURCE_SNR/.make_mfcc_features_success ]; then
tomwalters@54 106 mkdir -p $FEATURES_ROOT/mfcc/$SOURCE_SNR/
tomwalters@54 107 # Generate the list of files to convert
tomwalters@189 108 ./cnbh-syllables/feature_generation/gen_hcopy_aimcopy_script.sh $FEATURES_ROOT/mfcc/$SOURCE_SNR/ $SOUNDS_ROOT/$SOURCE_SNR/ htk
tomwalters@54 109 # Run the conversion
tomwalters@212 110 ./cnbh-syllables/feature_generation/run_hcopy.sh $FEATURES_ROOT/mfcc/$SOURCE_SNR/ $NUMBER_OF_CORES
tomwalters@212 111 touch $FEATURES_ROOT/mfcc/$SOURCE_SNR/.make_mfcc_features_success
tomwalters@176 112 fi
tomwalters@54 113
tomwalters@177 114 if [ ! -e $FEATURES_ROOT/mfcc_vtln/$SOURCE_SNR/.make_mfcc_vtln_features_success ]; then
tomwalters@54 115 mkdir -p $FEATURES_ROOT/mfcc_vtln/$SOURCE_SNR/
tomwalters@54 116 # Generate the file list and run the conversion (all one step, since this
tomwalters@186 117 # version uses a different configuration for each talker)
tomwalters@212 118 ./cnbh-syllables/feature_generation/run_mfcc_vtln_conversion.sh $FEATURES_ROOT/mfcc_vtln/$SOURCE_SNR/ $SOUNDS_ROOT/$SOURCE_SNR/
tomwalters@212 119 touch $FEATURES_ROOT/mfcc_vtln/$SOURCE_SNR/.make_mfcc_vtln_features_success
tomwalters@176 120 fi
tomwalters@54 121
tomwalters@177 122 if [ ! -e $FEATURES_ROOT/aim/$SOURCE_SNR/.make_aim_features_success ]; then
tomwalters@212 123 mkdir -p $FEATURES_ROOT/aim/$SOURCE_SNR/
tomwalters@189 124 ./cnbh-syllables/feature_generation/gen_hcopy_aimcopy_script.sh $FEATURES_ROOT/aim/$SOURCE_SNR/ $SOUNDS_ROOT/$SOURCE_SNR/ ""
tomwalters@54 125 # Run the conversion
tomwalters@239 126 ./cnbh-syllables/feature_generation/run_aimcopy.sh $AIMCOPY_CONFIGURATION_FILE $FEATURES_ROOT/aim/$SOURCE_SNR/ $NUMBER_OF_CORES
tomwalters@209 127 touch $FEATURES_ROOT/aim/$SOURCE_SNR/.make_aim_features_success
tomwalters@176 128 fi
tomwalters@212 129 done
tomwalters@82 130
tomwalters@212 131 mkdir -p $HMMS_ROOT
tomwalters@193 132
tomwalters@54 133 # Now run a bunch of experiments.
tomwalters@54 134 # For each of the feature types, we want to run HMMs with a bunch of
tomwalters@54 135 # parameters.
tomwalters@212 136 TRAINING_ITERATIONS="0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15" # 16 17 18 19 20"
tomwalters@239 137 #TESTING_ITERATIONS="0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15" #" 16 17 18 19 20"
tomwalters@212 138 TESTING_ITERATIONS="15"
tomwalters@212 139 #HMM_STATES="3 4 5 6 7 8"
tomwalters@212 140 HMM_STATES="4"
tomwalters@212 141 #HMM_OUTPUT_COMPONENTS="1 2 3 4 5 6 7"
tomwalters@212 142 HMM_OUTPUT_COMPONENTS="4"
tomwalters@202 143
tomwalters@204 144 run_train_test () {
tomwalters@207 145 # TODO(tom): Make sure that the training SNR is generated first
tomwalters@204 146 for SOURCE_SNR in $FEATURE_DIRS; do
tomwalters@204 147 WORK=$HMMS_ROOT/$FEATURE_CLASS/$FEATURE_SUFFIX/$SOURCE_SNR/$TALKERS/
tomwalters@204 148 mkdir -p $WORK
tomwalters@204 149 FEATURES_DIR=$FEATURES_ROOT/$FEATURE_CLASS/$SOURCE_SNR/
tomwalters@215 150 SPOKE_PATTERN_FILE=`pwd`/cnbh-syllables/run_training_and_testing/train_test_sets/gen_spoke_points/spoke_pattern.txt
tomwalters@204 151
tomwalters@204 152 ./cnbh-syllables/run_training_and_testing/train_test_sets/generate_train_test_lists.sh \
tomwalters@204 153 $TALKERS \
tomwalters@204 154 $WORK \
tomwalters@204 155 $FEATURES_DIR \
tomwalters@204 156 $FEATURE_SUFFIX
tomwalters@204 157
tomwalters@207 158 TRAINING_SCRIPT=$HMMS_ROOT/$FEATURE_CLASS/$FEATURE_SUFFIX/$TRAINING_SNR/$TALKERS/training_script
tomwalters@207 159 TRAINING_MASTER_LABEL_FILE=$HMMS_ROOT/$FEATURE_CLASS/$FEATURE_SUFFIX/$TRAINING_SNR/$TALKERS/training_master_label_file
tomwalters@207 160
tomwalters@204 161 TESTING_SCRIPT=$WORK/testing_script
tomwalters@207 162 TESTING_MASTER_LABEL_FILE=$WORK/testing_master_label_file
tomwalters@204 163
tomwalters@204 164 ./cnbh-syllables/run_training_and_testing/gen_htk_base_files.sh $WORK
tomwalters@204 165
tomwalters@204 166 ./cnbh-syllables/run_training_and_testing/test_features.sh \
tomwalters@204 167 "$WORK" \
tomwalters@204 168 "$FEATURES_ROOT/$FEATURE_CLASS/$SOURCE_SNR/" \
tomwalters@204 169 "$FEATURE_SUFFIX" \
tomwalters@204 170 "$HMM_STATES" \
tomwalters@204 171 "$HMM_OUTPUT_COMPONENTS" \
tomwalters@204 172 "$TRAINING_ITERATIONS" \
tomwalters@204 173 "$TESTING_ITERATIONS" \
tomwalters@204 174 "$FEATURE_SIZE" \
tomwalters@204 175 "$FEATURE_TYPE" \
tomwalters@204 176 "$TRAINING_SCRIPT" \
tomwalters@204 177 "$TESTING_SCRIPT" \
tomwalters@206 178 "$TRAINING_MASTER_LABEL_FILE" \
tomwalters@215 179 "$TESTING_MASTER_LABEL_FILE" \
tomwalters@215 180 "$SPOKE_PATTERN_FILE"
tomwalters@204 181 done
tomwalters@204 182 }
tomwalters@204 183
tomwalters@202 184 ########################
tomwalters@202 185 # Standard MFCCs
tomwalters@186 186 FEATURE_CLASS=mfcc
tomwalters@190 187 FEATURE_SUFFIX=htk
tomwalters@186 188 FEATURE_SIZE=39
tomwalters@186 189 FEATURE_TYPE=MFCC_0_D_A
tomwalters@202 190 TALKERS=inner_talkers
tomwalters@207 191 TRAINING_SNR=clean
tomwalters@202 192 run_train_test
tomwalters@202 193 ########################
tomwalters@93 194
tomwalters@202 195 ########################
tomwalters@202 196 # Standard MFCCs
tomwalters@202 197 # Train on extrema
tomwalters@202 198 FEATURE_CLASS=mfcc
tomwalters@202 199 FEATURE_SUFFIX=htk
tomwalters@202 200 FEATURE_SIZE=39
tomwalters@202 201 FEATURE_TYPE=MFCC_0_D_A
tomwalters@202 202 TALKERS=outer_talkers
tomwalters@207 203 TRAINING_SNR=clean
tomwalters@202 204 run_train_test
tomwalters@202 205 ########################
tomwalters@202 206
tomwalters@202 207 ########################
tomwalters@202 208 # MFCCs with VTLN
tomwalters@202 209 FEATURE_CLASS=mfcc_vtln
tomwalters@202 210 FEATURE_SUFFIX=htk
tomwalters@202 211 FEATURE_SIZE=39
tomwalters@202 212 FEATURE_TYPE=MFCC_0_D_A
tomwalters@189 213 TALKERS=inner_talkers
tomwalters@207 214 TRAINING_SNR=clean
tomwalters@202 215 run_train_test
tomwalters@202 216 ########################
tomwalters@202 217
tomwalters@202 218 ########################
tomwalters@202 219 # MFCCs with VTLN
tomwalters@202 220 # Train on extrema
tomwalters@202 221 FEATURE_CLASS=mfcc_vtln
tomwalters@202 222 FEATURE_SUFFIX=htk
tomwalters@202 223 FEATURE_SIZE=39
tomwalters@202 224 FEATURE_TYPE=MFCC_0_D_A
tomwalters@202 225 TALKERS=outer_talkers
tomwalters@207 226 TRAINING_SNR=clean
tomwalters@202 227 run_train_test
tomwalters@202 228 ########################
tomwalters@202 229
tomwalters@212 230 AIM_FEATURE_SUFFIXES="slice_1_no_cutoff ssi_profile_no_cutoff slice_1_cutoff ssi_profile_cutoff smooth_nap_profile"
tomwalters@212 231 for f in $AIM_FEATURE_SUFFIXES
tomwalters@212 232 do
tomwalters@202 233 ########################
tomwalters@202 234 # AIM Features
tomwalters@212 235 # Inner talkers
tomwalters@212 236 FEATURE_CLASS=aim
tomwalters@212 237 FEATURE_SUFFIX=$f
tomwalters@212 238 FEATURE_SIZE=12
tomwalters@212 239 FEATURE_TYPE=USER_E_D_A
tomwalters@212 240 TALKERS=inner_talkers
tomwalters@212 241 TRAINING_SNR=clean
tomwalters@212 242 run_train_test
tomwalters@202 243 ########################
tomwalters@202 244
tomwalters@212 245 ########################
tomwalters@212 246 # AIM Features
tomwalters@212 247 # Inner talkers
tomwalters@212 248 FEATURE_CLASS=aim
tomwalters@212 249 FEATURE_SUFFIX=$f
tomwalters@212 250 FEATURE_SIZE=12
tomwalters@212 251 FEATURE_TYPE=USER_E_D_A
tomwalters@212 252 TALKERS=outer_talkers
tomwalters@212 253 TRAINING_SNR=clean
tomwalters@212 254 run_train_test
tomwalters@212 255 ########################
tomwalters@212 256 done
tomwalters@202 257
tomwalters@189 258
tomwalters@187 259
tomwalters@192 260