summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlnetsch2011-12-01 14:03:03 -0600
committerlnetsch2011-12-01 14:03:03 -0600
commitbfe203b245237fbb1ed182aa3a0f249ecbeac310 (patch)
tree7d9e6135a8033c2205bfe548b62b73b831c5faa5
parent9476b6bbbd79c2675b780c3a683b9cc23e0a9c82 (diff)
downloadtiesr-gforge-bfe203b245237fbb1ed182aa3a0f249ecbeac310.tar.gz
tiesr-gforge-bfe203b245237fbb1ed182aa3a0f249ecbeac310.tar.xz
tiesr-gforge-bfe203b245237fbb1ed182aa3a0f249ecbeac310.zip
[#1429] fixed htk_model_compare bug that did not check correctly if any trailing test models did not align
-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++;