summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlnetsch2011-12-01 14:03:03 -0600
committerlnetsch2011-12-01 14:03:03 -0600
commitdb8e30e01377b8669791ddda9e5cc9c8f88a77f4 (patch)
tree2c22bca9c690472ff32ca116e2721ccb2dcfe580
parenteebc383c231a080ba0d8b451343e217cb81beafc (diff)
downloadtiesr-db8e30e01377b8669791ddda9e5cc9c8f88a77f4.tar.gz
tiesr-db8e30e01377b8669791ddda9e5cc9c8f88a77f4.tar.xz
tiesr-db8e30e01377b8669791ddda9e5cc9c8f88a77f4.zip
[#1429] fixed htk_model_compare bug that did not check correctly if any trailing test models did not align
git-svn-id: https://gforge.ti.com/svn/tiesr/trunk@99 469fd053-429d-4955-9e4c-93c0d7a8ff27
-rwxr-xr-xTIesr_Tools/htk_model_compare.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/TIesr_Tools/htk_model_compare.pl b/TIesr_Tools/htk_model_compare.pl
index ed54fd5..e99858a 100755
--- a/TIesr_Tools/htk_model_compare.pl
+++ b/TIesr_Tools/htk_model_compare.pl
@@ -274,7 +274,7 @@ foreach $model (@hmmnames )
274 274
275 275
276 # Set default score for any models not recognized by the end of the MLF file 276 # Set default score for any models not recognized by the end of the MLF file
277 while( $recidx <= $#hmmname ) 277 while( $recidx <= $#hmmnames )
278 { 278 {
279 print OUT "${hmmnames[$recidx]} rec as $model score: -100.0\n"; 279 print OUT "${hmmnames[$recidx]} rec as $model score: -100.0\n";
280 $recidx++; 280 $recidx++;