diff experiments/scripts/cnbh-syllables/feature_generation/run_hcopy.sh @ 165:f75123cf39ce

- Scripts for running recognition experiments using AIM-C and HTK to compare MFCCs against features generated with AIM-C
author tomwalters
date Wed, 04 Aug 2010 06:41:56 +0000
parents d540bfb1ce59
children 7a9e08430000
line wrap: on
line diff
--- a/experiments/scripts/cnbh-syllables/feature_generation/run_hcopy.sh	Thu Jul 22 19:03:51 2010 +0000
+++ b/experiments/scripts/cnbh-syllables/feature_generation/run_hcopy.sh	Wed Aug 04 06:41:56 2010 +0000
@@ -1,7 +1,7 @@
 #!/bin/bash
 
 HCOPY=`which HCopy`
-if [ "$HCOPY" == "" ]; then
+if [ $HCOPY == "" ]; then
   echo "Please build HTK and make the binaries available in the path"
 fi
 
@@ -54,7 +54,7 @@
 echo " tasks..."
 for ((c=1;c<=$MACHINE_CORES;c+=1)); do
   s=${splits[$element]}
-  HCopy -T 1 -C $FEATURES_DIR/${HCOPY_CONFIG} -S $s &
+  HCopy -T 1 -C $WORK/$HCOPY_CONFIG -S $s &
   let element=element+1
 done