Changeset 1556
- Timestamp:
- 01/25/07 13:26:05 (2 years ago)
- Files:
-
- VoxForge/Trunk/Scripts/Testing_scripts/Nightly_test.pm (modified) (6 diffs)
- VoxForge/Trunk/Scripts/Testing_scripts/TestResults (modified) (3 diffs)
- VoxForge/Trunk/Scripts/Testing_scripts/archive (added)
- VoxForge/Trunk/Scripts/Testing_scripts/archive/config (moved) (moved from VoxForge/Trunk/Scripts/Testing_scripts/config)
- VoxForge/Trunk/Scripts/Testing_scripts/archive/test16kHz_16bit.scp (added)
- VoxForge/Trunk/Scripts/Testing_scripts/archive/test8kHz_16bit.scp (added)
- VoxForge/Trunk/Scripts/Testing_scripts/archive/wav_config (moved) (moved from VoxForge/Trunk/Scripts/Testing_scripts/wav_config)
- VoxForge/Trunk/Scripts/Testing_scripts/etc (copied) (copied from VoxForge/Trunk/Scripts/Sphinx/etc)
- VoxForge/Trunk/Scripts/Testing_scripts/gram (modified) (1 diff)
- VoxForge/Trunk/Scripts/Testing_scripts/julian.jconf (modified) (2 diffs)
- VoxForge/Trunk/Scripts/Testing_scripts/julianOutput (modified) (83 diffs)
- VoxForge/Trunk/Scripts/Testing_scripts/julianProcessed (modified) (14 diffs)
- VoxForge/Trunk/Scripts/Testing_scripts/recout.mlf (modified) (1 diff)
- VoxForge/Trunk/Scripts/Testing_scripts/test.scp (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
VoxForge/Trunk/Scripts/Testing_scripts/Nightly_test.pm
r1551 r1556 22 22 ### 23 23 #################################################################### 24 package Repository;24 package Nightly_test; 25 25 use strict; 26 26 use File::Spec; … … 44 44 my $mon = strftime "%m", localtime; # %m month number, starting with 01 45 45 my $mday = strftime "%d", localtime; # %d numeric day of the month, with leading zeros (eg 01..31) 46 #$parms{"Nightly_dir"} = "/data/svn-mirror/Nightly_Builds"; 47 $parms{"Nightly_dir"} = "/data/Nightly_Builds"; # for testing 46 #$parms{"mirror_dir"} = "/data/svn-mirror"; 47 $parms{"mirror_dir"} = "/data/svn-mirror-copy"; # for testing 48 $parms{"Nightly_dir"} = $parms{"mirror_dir"} . "/Nightly_Builds"; # for testing 48 49 $parms{"Nightly_dirname"} = $parms{"Nightly_dir"}."/AcousticModel-$year-$mon-$mday"; 49 $parms{"16kHz_16bit_MFCC_files"} = $parms{"Nightly_dirname"}."/HTK/16kHz_16bit/MFCC_O_D"; 50 $parms{"8kHz_16bit_MFCC_files"} = $parms{"Nightly_dirname"}."/HTK/8kHz_16bit/MFCC_O_D"; 50 $parms{"16kHz_16bit_NightlyAM"} = $parms{"Nightly_dirname"}."/HTK/16kHz_16bit/MFCC_O_D"; 51 $parms{"8kHz_16bit_NightlyAM"} = $parms{"Nightly_dirname"}."/HTK/8kHz_16bit/MFCC_O_D"; 52 $parms{"Tags"} = $parms{"mirror_dir"} . "/Tags"; # for testing 53 $parms{"Releases"} = $parms{"Tags"}."/Releases"; 54 $parms{"CurrentBuild_dir"} = $parms{"Releases"}."/0_1_1-build726"; 55 $parms{"16kHz_16bit_CurrentAM"} = $parms{"CurrentBuild_dir"}."/AcousticModels/HTK/16kHz-16bit/MFCC_O_D"; 56 $parms{"8kHz_16bit_CurrentAM"} = $parms{"CurrentBuild_dir"}."/AcousticModels/HTK/8kHz-16bit/MFCC_O_D"; 51 57 $parms{"HTKBin"} = "/usr/local/HTK"; # for testing 52 58 #$parms{"HTKBin"} = "/usr/local/bin"; … … 55 61 my $debug = 0; 56 62 my $HTKbin = $parms{"HTKBin"}; 57 my $MFCC_files = $parms{"16kHz_16bit_MFCC_files"}; 63 58 64 my $Testing_scripts_dir = $parms{"Testing_scripts_dir"}; 59 65 my $LexiconDirectory = $parms{"LexiconDirectory"} ; … … 70 76 # Step 4 - Coding the Data 71 77 # already done! 72 73 open(OUTPUT, ">TestResults") or die ("cannot write to TestResults file"); # open for output 74 test_16kHz_16bit(); 75 test_8kHz_16bit(); 76 PrintNotes(); 78 processNightly(); 79 #processCurrent(); 77 80 78 81 # real time testing … … 84 87 ### Subroutines 85 88 #################################################################### 86 sub test_16kHz_16bit { 87 # Test Acoustic Model Using HTK 16kHz_16bit 88 $command = ("$HTKbin/HVite -A -D -T 1 -H $MFCC_files/macros -H $MFCC_files/hmmdefs -C $Testing_scripts_dir/config -S $Testing_scripts_dir/test.scp -l '*' -i recout.mlf -w $Testing_scripts_dir/wdnet -p 0.0 -s 5.0 $LexiconDirectory/VoxForge/VoxForgeDict $MFCC_files/tiedlist 1>/dev/null 2>/dev/null"); system($command); 89 print OUTPUT ("HTK 16kHz_16bit\n"); 90 my $HTK_TestResults = `$HTKbin/HResults -I testref.mlf $MFCC_files/tiedlist recout.mlf`; 91 $HTK_TestResults =~ s/ HTK//; 92 print OUTPUT "$HTK_TestResults\n\n"; 93 94 # Test Acoustic Model Using Julius 16kHz_16bit 95 $command = ("julian -input rawfile -filelist wavlst16kHz_16bit -h $MFCC_files/hmmdefs -hlist $MFCC_files/tiedlist -smpFreq 16000 -C julian.jconf > julianOutput 2>/dev/null"); print "$command\n" if $debug; system($command) ; 96 $command = ("perl ./ProcessJulianOutput.pl julianOutput julianProcessed"); print "$command\n" if $debug; system($command) ; 97 print OUTPUT ("Julian 16kHz_16bit\n"); 98 my $Julian_TestResults = `$HTKbin/HResults -I testref.mlf $MFCC_files/tiedlist julianProcessed` ; 99 $Julian_TestResults =~ s/ HTK//; 100 print OUTPUT "$Julian_TestResults\n\n"; 89 sub processNightly { 90 my $Nightly_dirname = $parms{"Nightly_dirname"}; 91 open(OUTPUT, ">TestResults") or die ("cannot write to TestResults file"); # open for output 92 print OUTPUT "Testing Acoustic Models created in: $Nightly_dirname\n\n"; 93 HTK_16kHz_16bit($parms{"16kHz_16bit_NightlyAM"}); 94 Julian_16kHz_16bit($parms{"16kHz_16bit_NightlyAM"}); 95 HTK_8kHz_16bit($parms{"8kHz_16bit_NightlyAM"}); 96 Julian_8kHz_16bit($parms{"8kHz_16bit_NightlyAM"}); 97 PrintNotes(); 98 close(OUTPUT); 101 99 } 102 100 103 sub test_8kHz_16bit { 104 # Test Acoustic Model Using HTK 8kHz_16bit 105 $MFCC_files = $parms{"8kHz_16bit_MFCC_files"}; 106 $Testing_scripts_dir = $parms{"Testing_scripts_dir"}; 107 $LexiconDirectory = $parms{"LexiconDirectory"} ; 108 $command = ("$HTKbin/HVite -A -D -T 1 -H $MFCC_files/macros -H $MFCC_files/hmmdefs -C $Testing_scripts_dir/config -S $Testing_scripts_dir/test.scp -l '*' -i recout.mlf -w $Testing_scripts_dir/wdnet -p 0.0 -s 5.0 $LexiconDirectory/VoxForge/VoxForgeDict $MFCC_files/tiedlist 1>/dev/null 2>/dev/null"); system($command); 109 print OUTPUT ("HTK 8kHz_16bit\n"); 110 my $HTK_TestResults = `$HTKbin/HResults -I testref.mlf $MFCC_files/tiedlist recout.mlf`; 101 sub processCurrent { 102 my $CurrentBuild_dir = $parms{"CurrentBuild_dir"}; 103 open(OUTPUT, ">TestResultsCurrentRelease") or die ("cannot write to TestResults file"); # open for output 104 print OUTPUT "Testing Acoustic Models created in: $CurrentBuild_dir\n\n"; 105 HTK_16kHz_16bit($parms{"16kHz_16bit_CurrentAM"}); 106 Julian_16kHz_16bit($parms{"16kHz_16bit_CurrentAM"}); 107 HTK_8kHz_16bit($parms{"8kHz_16bit_CurrentAM"}); 108 Julian_8kHz_16bit($parms{"8kHz_16bit_CurrentAM"}); 109 PrintNotes(); 110 close(OUTPUT); 111 } 112 113 sub HTK_16kHz_16bit { 114 my ($AM_Dir) = @_; 115 my $wordinspen = "0.0"; 116 my $gramscfact = "1.0"; 117 system("rm -f recout.mlf"); 118 $command = ("$HTKbin/HVite -A -D -T 1 -H $AM_Dir/macros -H $AM_Dir/hmmdefs -C $Testing_scripts_dir/wav_config -S $Testing_scripts_dir/wavlst16kHz_16bit -l '*' -i recout.mlf -w $Testing_scripts_dir/wdnet -p $wordinspen -s $gramscfact $LexiconDirectory/VoxForge/VoxForgeDict $AM_Dir/tiedlist 1>/dev/null 2>/dev/null"); system($command); 119 my $HTK_TestResults = `$HTKbin/HResults -I testref.mlf $AM_Dir/tiedlist recout.mlf`; 111 120 $HTK_TestResults =~ s/ HTK//; 112 print OUTPUT "$HTK_TestResults\n\n"; 113 114 # Test Acoustic Model Using Julius 8kHz_16bit 115 $command = ("julian -input rawfile -filelist wavlst8kHz_16bit -h $MFCC_files/hmmdefs -hlist $MFCC_files/tiedlist -smpFreq 8000 -C julian.jconf > julianOutput 2>/dev/null"); print "$command\n" if $debug; system($command) ; 121 print OUTPUT ("HTK 16kHz_16bit\n"); 122 print OUTPUT ("---------------\n"); 123 print OUTPUT ("\tword insertion penalty: $wordinspen\n"); 124 print OUTPUT ("\tgrammar scale factor: $gramscfact\n"); 125 print OUTPUT "$HTK_TestResults\n"; 126 } 127 128 sub Julian_16kHz_16bit { 129 my ($AM_Dir) = @_; 130 my $penalty1="0.5"; 131 my $penalty2="100.0"; 132 my $iwsppenalty = "-55.0"; 133 system("rm -f julianProcessed"); 134 $command = ("julian -penalty1 $penalty1 -penalty2 $penalty2 -iwsppenalty $iwsppenalty -input rawfile -filelist wavlst16kHz_16bit -h $AM_Dir/hmmdefs -hlist $AM_Dir/tiedlist -smpFreq 16000 -C julian.jconf > julianOutput 2>/dev/null"); print "$command\n" if $debug; system($command) ; 116 135 $command = ("perl ./ProcessJulianOutput.pl julianOutput julianProcessed"); print "$command\n" if $debug; system($command) ; 136 my $Julian_TestResults = `$HTKbin/HResults -I testref.mlf $AM_Dir/tiedlist julianProcessed` ; 137 $Julian_TestResults =~ s/ HTK//; 138 print OUTPUT ("Julian 16kHz_16bit\n"); 139 print OUTPUT ("------------------\n"); 140 print OUTPUT ("\tword insertion penalty\n"); 141 print OUTPUT ("\t first pass (-penalty1):$penalty1\n"); 142 print OUTPUT ("\t second pass (-penalty2):$penalty2\n"); 143 print OUTPUT ("\ttransition penalty:$iwsppenalty (for short-term inter-word pauses between words (-iwsppenalty))\n"); 144 print OUTPUT "$Julian_TestResults\n"; 145 } 146 147 sub HTK_8kHz_16bit { 148 my ($AM_Dir) = @_; 149 my $wordinspen = "10.0"; 150 my $gramscfact = "5.0"; 151 system("rm -f recout.mlf"); 152 $command = ("$HTKbin/HVite -A -D -T 1 -H $AM_Dir/macros -H $AM_Dir/hmmdefs -C $Testing_scripts_dir/wav_config -S $Testing_scripts_dir/wavlst8kHz_16bit -l '*' -i recout.mlf -w $Testing_scripts_dir/wdnet -p $wordinspen -s $gramscfact $LexiconDirectory/VoxForge/VoxForgeDict $AM_Dir/tiedlist 1>/dev/null 2>/dev/null"); system($command); 153 my $HTK_TestResults = `$HTKbin/HResults -I testref.mlf $AM_Dir/tiedlist recout.mlf`; 154 $HTK_TestResults =~ s/ HTK//; 155 print OUTPUT ("HTK 8kHz_16bit\n"); 156 print OUTPUT ("---------------\n"); 157 print OUTPUT ("\tword insertion penalty: $wordinspen\n"); 158 print OUTPUT ("\tgrammar scale factor: $gramscfact\n"); 159 print OUTPUT "$HTK_TestResults\n"; 160 } 161 162 sub Julian_8kHz_16bit { 163 my ($AM_Dir) = @_; 164 my $penalty1="50.0"; 165 my $penalty2="100.0"; 166 my $iwsppenalty = "-55.0"; 167 system("rm -f julianProcessed"); 168 $command = ("julian -penalty1 $penalty1 -penalty2 $penalty2 -iwsppenalty $iwsppenalty -input rawfile -filelist wavlst8kHz_16bit -h $AM_Dir/hmmdefs -hlist $AM_Dir/tiedlist -smpFreq 8000 -C julian.jconf > julianOutput 2>/dev/null"); print "$command\n" if $debug; system($command) ; 169 $command = ("perl ./ProcessJulianOutput.pl julianOutput julianProcessed"); print "$command\n" if $debug; system($command) ; 170 my $Julian_TestResults = `$HTKbin/HResults -I testref.mlf $AM_Dir/tiedlist julianProcessed` ; 171 $Julian_TestResults =~ s/ HTK//; 117 172 print OUTPUT ("Julian 8kHz_16bit\n"); 118 my $Julian_TestResults = `$HTKbin/HResults -I testref.mlf $MFCC_files/tiedlist julianProcessed` ; 119 $Julian_TestResults =~ s/ HTK//; 120 print OUTPUT "$Julian_TestResults\n\n"; 173 print OUTPUT ("------------------\n"); 174 print OUTPUT ("\tword insertion penalty\n"); 175 print OUTPUT ("\t first pass (-penalty1):$penalty1\n"); 176 print OUTPUT ("\t second pass (-penalty2):$penalty2\n"); 177 print OUTPUT ("\ttransition penalty::$iwsppenalty (for short-term inter-word pauses between words (-iwsppenalty))\n"); 178 print OUTPUT "$Julian_TestResults\n"; 121 179 } 122 180 … … 124 182 print OUTPUT "Notes: 125 183 126 * the line starting with SENT gives the percentage of sentences that were recognized correctly, out of 50in total.127 * the line starting with WORD gives the percentage of words that were recognized correctly, out of 189words in total184 * the line starting with SENT gives the percentage of sentences that were recognized correctly, out of N sentences in total. 185 * the line starting with WORD gives the percentage of words that were recognized correctly, out of N words in total 128 186 However, since HTK or Julius erroneously 'added' words that are not in the audio file (i.e. insertion errors) they usually get a lower percentage accuracy rating. 129 187 * Count definitions: VoxForge/Trunk/Scripts/Testing_scripts/TestResults
r1551 r1556 1 Testing Acoustic Models created in: /data/svn-mirror-copy/Nightly_Builds/AcousticModel-2007-01-25 2 1 3 HTK 16kHz_16bit 4 --------------- 5 word insertion penalty: 0.0 6 grammar scale factor: 1.0 2 7 ====================== Results Analysis ======================= 3 Date: Wed Jan 24 18:48:5820078 Date: Thu Jan 25 12:39:55 2007 4 9 Ref : testref.mlf 5 10 Rec : recout.mlf … … 9 14 =================================================================== 10 15 11 12 16 Julian 16kHz_16bit 17 ------------------ 18 word insertion penalty 19 first pass (-penalty1):0.5 20 second pass (-penalty2):100.0 21 transition penalty:-55.0 (for short-term inter-word pauses between words (-iwsppenalty)) 13 22 ====================== Results Analysis ======================= 14 Date: Wed Jan 24 18:49:00200723 Date: Thu Jan 25 12:39:57 2007 15 24 Ref : testref.mlf 16 25 Rec : julianProcessed … … 20 29 =================================================================== 21 30 22 23 31 HTK 8kHz_16bit 32 --------------- 33 word insertion penalty: 10.0 34 grammar scale factor: 5.0 24 35 ====================== Results Analysis ======================= 25 Date: Wed Jan 24 18:49:02200736 Date: Thu Jan 25 12:40:00 2007 26 37 Ref : testref.mlf 27 38 Rec : recout.mlf 28 39 ------------------------ Overall Results -------------------------- 29 SENT: %Correct= 2.00 [H=1, S=49, N=50]30 WORD: %Corr= 37.57, Acc=-45.50 [H=71, D=7, S=111, I=157, N=189]40 SENT: %Correct=52.00 [H=26, S=24, N=50] 41 WORD: %Corr=83.07, Acc=65.08 [H=157, D=1, S=31, I=34, N=189] 31 42 =================================================================== 32 43 33 34 44 Julian 8kHz_16bit 45 ------------------ 46 word insertion penalty 47 first pass (-penalty1):50.0 48 second pass (-penalty2):100.0 49 transition penalty::-55.0 (for short-term inter-word pauses between words (-iwsppenalty)) 35 50 ====================== Results Analysis ======================= 36 Date: Wed Jan 24 18:49:04200751 Date: Thu Jan 25 12:40:01 2007 37 52 Ref : testref.mlf 38 53 Rec : julianProcessed 39 54 ------------------------ Overall Results -------------------------- 40 SENT: %Correct= 74.00 [H=37, S=13, N=50]41 WORD: %Corr= 88.89, Acc=88.89 [H=168, D=17, S=4, I=0, N=189]55 SENT: %Correct=84.00 [H=42, S=8, N=50] 56 WORD: %Corr=95.24, Acc=91.53 [H=180, D=1, S=8, I=7, N=189] 42 57 =================================================================== 43 44 58 45 59 Notes: 46 60 47 * the line starting with SENT gives the percentage of sentences that were recognized correctly, out of 50in total.48 * the line starting with WORD gives the percentage of words that were recognized correctly, out of 189words in total61 * the line starting with SENT gives the percentage of sentences that were recognized correctly, out of N sentences in total. 62 * the line starting with WORD gives the percentage of words that were recognized correctly, out of N words in total 49 63 However, since HTK or Julius erroneously 'added' words that are not in the audio file (i.e. insertion errors) they usually get a lower percentage accuracy rating. 50 64 * Count definitions: VoxForge/Trunk/Scripts/Testing_scripts/gram
r1545 r1556 1 1 $digit= ONE | TWO | THREE | FOUR | FIVE | SIX | SEVEN | EIGHT | NINE | OH | ZERO; 2 2 $name = [ STEVE ] YOUNG; 3 ( SENT-START (DIAL<$digit> | (PHONE|CALL) $name) SENT-END)3 ( <s> (DIAL<$digit> | (PHONE|CALL) $name) </s> ) VoxForge/Trunk/Scripts/Testing_scripts/julian.jconf
r1549 r1556 62 62 ## word insertion penalty 63 63 ## 64 -penalty1 0.5 # first pass65 -penalty2 100.0 # second pass64 #-penalty1 0.5 # first pass 65 #-penalty2 100.0 # second pass 66 66 67 67 ###################################################################### … … 147 147 ## 148 148 -iwsp # append a skippable sp model at all word ends 149 -iwsppenalty -55.0 # transition penalty for the appenede sp models149 #-iwsppenalty -55.0 # transition penalty for the appenede sp models 150 150 151 151 ###################################################################### VoxForge/Trunk/Scripts/Testing_scripts/julianOutput
r1551 r1556 22 22 23 23 Files: 24 hmmfilename=/data/ Nightly_Builds/AcousticModel-2007-01-24/HTK/8kHz_16bit/MFCC_O_D/hmmdefs25 hmmmapfilename=/data/ Nightly_Builds/AcousticModel-2007-01-24/HTK/8kHz_16bit/MFCC_O_D/tiedlist24 hmmfilename=/data/svn-mirror-copy/Nightly_Builds/AcousticModel-2007-01-25/HTK/8kHz_16bit/MFCC_O_D/hmmdefs 25 hmmmapfilename=/data/svn-mirror-copy/Nightly_Builds/AcousticModel-2007-01-25/HTK/8kHz_16bit/MFCC_O_D/tiedlist 26 26 grammar #1: 27 27 dfa = test.dfa … … 73 73 74 74 Weights and words: 75 (-penalty1) IW penalty1 = + 0.575 (-penalty1) IW penalty1 = +50.0 76 76 (-penalty2) IW penalty2 = +100.0 77 77 (-cmalpha)CM alpha coef = 0.050000 … … 128 128 pass1_best_wordseq: 0 2 5 1 129 129 pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 130 pass1_best_score: -2 761.724365130 pass1_best_score: -2613.224854 131 131 132 132 samplenum=108 … … 136 136 cmscore1: 1.000 0.996 1.000 1.000 137 137 score1: -2482.650146 138 9 generated, 9pushed, 5 nodes popped in 108138 8 generated, 8 pushed, 5 nodes popped in 108 139 139 140 140 ------ … … 147 147 pass1_best_wordseq: 0 2 5 1 148 148 pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 149 pass1_best_score: - 3034.731445149 pass1_best_score: -2886.231201 150 150 151 151 samplenum=128 … … 155 155 cmscore1: 1.000 0.952 1.000 1.000 156 156 score1: -2738.957520 157 10 generated, 10pushed, 5 nodes popped in 128157 6 generated, 6 pushed, 5 nodes popped in 128 158 158 159 159 ------ … … 166 166 pass1_best_wordseq: 0 2 5 1 167 167 pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 168 pass1_best_score: -2 561.363525168 pass1_best_score: -2412.863281 169 169 170 170 samplenum=100 … … 182 182 length: 181 frames (3.62 sec.) 183 183 184 pass1_best: <s> DIAL FIVE FOUR FOUR FOUR185 pass1_best_wordseq: 0 3 6 6 6 6 186 pass1_best_phonemeseq: sil | d ay ax l | f ay v | f ao r | f ao r | f ao r187 pass1_best_score: -4 967.129395184 pass1_best: <s> DIAL ONE FIVE FOUR FOUR FOUR </s> 185 pass1_best_wordseq: 0 3 6 6 6 6 6 1 186 pass1_best_phonemeseq: sil | d ay ax l | w ah n | f ay v | f ao r | f ao r | f ao r | sil 187 pass1_best_score: -4678.896484 188 188 189 189 samplenum=181 190 stack empty, search terminate now 191 0 sentences have found 192 got no candidates, output 1st pass result as a final result 193 sentence1: <s> DIAL FIVE FOUR FOUR FOUR 194 wseq1: 0 3 6 6 6 6 195 phseq1: sil | d ay ax l | f ay v | f ao r | f ao r | f ao r 196 cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 197 score1: -4967.129395 198 0 generated, 0 pushed, 0 nodes popped in 181 190 sentence1: <s> DIAL ONE FIVE FOUR FOUR FOUR </s> 191 wseq1: 0 3 6 6 6 6 6 1 192 phseq1: sil | d ay ax l | w ah n | f ay v | f ao r | f ao r | f ao r | sil 193 cmscore1: 1.000 1.000 0.998 0.900 1.000 1.000 1.000 1.000 194 score1: -4325.354004 195 24 generated, 24 pushed, 9 nodes popped in 181 199 196 200 197 ------ … … 207 204 pass1_best_wordseq: 0 2 5 1 208 205 pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 209 pass1_best_score: -2 664.910400206 pass1_best_score: -2516.409912 210 207 211 208 samplenum=105 … … 213 210 wseq1: 0 2 5 1 214 211 phseq1: sil | f ow n | y ah ng | sil 215 cmscore1: 1.000 0.99 91.000 1.000212 cmscore1: 1.000 0.997 1.000 1.000 216 213 score1: -2378.602295 217 9 generated, 9pushed, 5 nodes popped in 105214 8 generated, 8 pushed, 5 nodes popped in 105 218 215 219 216 ------ … … 226 223 pass1_best_wordseq: 0 2 5 1 227 224 pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 228 pass1_best_score: -2 693.915527225 pass1_best_score: -2545.415283 229 226 230 227 samplenum=110 … … 234 231 cmscore1: 1.000 0.985 1.000 1.000 235 232 score1: -2398.655029 236 8 generated, 8pushed, 5 nodes popped in 110233 6 generated, 6 pushed, 5 nodes popped in 110 237 234 238 235 ------ … … 245 242 pass1_best_wordseq: 0 2 4 5 1 246 243 pass1_best_phonemeseq: sil | f ow n | s t iy v | y ah ng | sil 247 pass1_best_score: -3 417.484619244 pass1_best_score: -3219.484619 248 245 249 246 samplenum=138 … … 251 248 wseq1: 0 2 4 5 1 252 249 phseq1: sil | f ow n | s t iy v | y ah ng | sil 253 cmscore1: 1.000 1.000 0. 742 0.9881.000250 cmscore1: 1.000 1.000 0.999 1.000 1.000 254 251 score1: -3024.624756 255 1 0 generated, 10pushed, 6 nodes popped in 138252 11 generated, 11 pushed, 6 nodes popped in 138 256 253 257 254 ------ … … 264 261 pass1_best_wordseq: 0 2 5 1 265 262 pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 266 pass1_best_score: -2 710.318115263 pass1_best_score: -2561.818115 267 264 268 265 samplenum=104 … … 272 269 cmscore1: 1.000 0.989 1.000 1.000 273 270 score1: -2413.094482 274 6 generated, 6pushed, 5 nodes popped in 104271 7 generated, 7 pushed, 5 nodes popped in 104 275 272 276 273 ------ … … 280 277 length: 120 frames (2.40 sec.) 281 278 282 pass1_best: <s> PHONE YOUNG </s>283 pass1_best_wordseq: 0 2 5 1284 pass1_best_phonemeseq: sil | f ow n | y ah ng | sil285 pass1_best_score: - 3022.780762279 pass1_best: <s> PHONE STEVE YOUNG </s> 280 pass1_best_wordseq: 0 2 4 5 1 281 pass1_best_phonemeseq: sil | f ow n | s t iy v | y ah ng | sil 282 pass1_best_score: -2838.361816 286 283 287 284 samplenum=120 288 sentence1: <s> PHONE YOUNG </s>289 wseq1: 0 2 5 1290 phseq1: sil | f ow n | y ah ng | sil291 cmscore1: 1.000 0. 826 0.9861.000292 score1: -2 735.466309293 8 generated, 8 pushed, 5nodes popped in 120285 sentence1: <s> PHONE STEVE YOUNG </s> 286 wseq1: 0 2 4 5 1 287 phseq1: sil | f ow n | s t iy v | y ah ng | sil 288 cmscore1: 1.000 0.998 0.984 1.000 1.000 289 score1: -2639.084717 290 11 generated, 11 pushed, 6 nodes popped in 120 294 291 295 292 ------ … … 302 299 pass1_best_wordseq: 0 3 6 1 303 300 pass1_best_phonemeseq: sil | d ay ax l | n ay n | sil 304 pass1_best_score: -2 618.224609301 pass1_best_score: -2489.013184 305 302 306 303 samplenum=101 … … 308 305 wseq1: 0 3 6 1 309 306 phseq1: sil | d ay ax l | n ay n | sil 310 cmscore1: 1.000 1.0001.000 1.000307 cmscore1: 1.000 0.996 1.000 1.000 311 308 score1: -2335.247559 312 309 5 generated, 5 pushed, 5 nodes popped in 101 … … 318 315 length: 245 frames (4.90 sec.) 319 316 320 pass1_best: <s> DIAL THREE SIX NINE ZERO THREE FIVE 321 pass1_best_wordseq: 0 3 6 6 6 6 6 6 322 pass1_best_phonemeseq: sil | d ay ax l | th r iy | s ih k s | n ay n | z ih r ow | th r iy | f ay v 323 pass1_best_score: -6 532.860840317 pass1_best: <s> DIAL THREE SIX NINE ZERO THREE FIVE </s> 318 pass1_best_wordseq: 0 3 6 6 6 6 6 6 1 319 pass1_best_phonemeseq: sil | d ay ax l | th r iy | s ih k s | n ay n | z ih r ow | th r iy | f ay v | sil 320 pass1_best_score: -6239.816406 324 321 325 322 samplenum=245 326 stack empty, search terminate now 327 0 sentences have found 328 got no candidates, output 1st pass result as a final result 329 sentence1: <s> DIAL THREE SIX NINE ZERO THREE FIVE 330 wseq1: 0 3 6 6 6 6 6 6 331 phseq1: sil | d ay ax l | th r iy | s ih k s | n ay n | z ih r ow | th r iy | f ay v 332 cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 333 score1: -6532.860840 334 0 generated, 0 pushed, 0 nodes popped in 245 323 sentence1: <s> DIAL THREE SIX NINE ZERO THREE FIVE </s> 324 wseq1: 0 3 6 6 6 6 6 6 1 325 phseq1: sil | d ay ax l | th r iy | s ih k s | n ay n | z ih r ow | th r iy | f ay v | sil 326 cmscore1: 1.000 0.997 0.913 0.992 0.998 0.996 0.996 1.000 1.000 327 score1: -5869.116211 328 52 generated, 52 pushed, 10 nodes popped in 245 335 329 336 330 ------ … … 340 334 length: 185 frames (3.70 sec.) 341 335 342 pass1_best: <s> DIAL NINE SEVEN SIX FOUR FOUR 343 pass1_best_wordseq: 0 3 6 6 6 6 6 344 pass1_best_phonemeseq: sil | d ay ax l | n ay n | s eh v ih n | s ih k s | f ao r | f ao r 345 pass1_best_score: - 5066.573730336 pass1_best: <s> DIAL NINE SEVEN SIX FOUR FOUR </s> 337 pass1_best_wordseq: 0 3 6 6 6 6 6 1 338 pass1_best_phonemeseq: sil | d ay ax l | n ay n | s eh v ih n | s ih k s | f ao r | f ao r | sil 339 pass1_best_score: -4783.479980 346 340 347 341 samplenum=185 … … 349 343 wseq1: 0 3 6 6 6 6 6 1 350 344 phseq1: sil | d ay ax l | n ay n | s eh v ih n | s ih k s | f ao r | f ao r | sil 351 cmscore1: 1.000 1.000 0.994 0.980 0.549 0.922 0.9961.000345 cmscore1: 1.000 0.999 1.000 0.999 0.996 1.000 1.000 1.000 352 346 score1: -4406.329102 353 29 generated, 29pushed, 9 nodes popped in 185347 30 generated, 30 pushed, 9 nodes popped in 185 354 348 355 349 ------ … … 362 356 pass1_best_wordseq: 0 2 4 5 1 363 357 pass1_best_phonemeseq: sil | f ow n | s t iy v | y ah ng | sil 364 pass1_best_score: -3 903.193604358 pass1_best_score: -3705.194092 365 359 366 360 samplenum=156 … … 368 362 wseq1: 0 2 4 5 1 369 363 phseq1: sil | f ow n | s t iy v | y ah ng | sil 370 cmscore1: 1.000 1.000 1.000 0.9921.000364 cmscore1: 1.000 1.000 1.000 1.000 1.000 371 365 score1: -3521.750000 372 366 10 generated, 10 pushed, 6 nodes popped in 156 … … 378 372 length: 229 frames (4.58 sec.) 379 373 380 pass1_best: <s> DIAL EIGHT FOUR SEVEN TWO FIVE FIVE381 pass1_best_wordseq: 0 3 6 6 6 6 6 6 382 pass1_best_phonemeseq: sil | d ay ax l | ey t | f ao r | s eh v ih n | t uw | f ay v | f ay v383 pass1_best_score: - 6271.007324374 pass1_best: <s> DIAL EIGHT SIX FOUR SEVEN TWO FIVE FIVE 375 pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 376 pass1_best_phonemeseq: sil | d ay ax l | ey t | s ih k s | f ao r | s eh v ih n | t uw | f ay v | f ay v 377 pass1_best_score: -5580.062988 384 378 385 379 samplenum=229 … … 387 381 0 sentences have found 388 382 got no candidates, output 1st pass result as a final result 389 sentence1: <s> DIAL EIGHT FOUR SEVEN TWO FIVE FIVE390 wseq1: 0 3 6 6 6 6 6 6 391 phseq1: sil | d ay ax l | ey t | f ao r | s eh v ih n | t uw | f ay v | f ay v392 cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 393 score1: - 6271.007324383 sentence1: <s> DIAL EIGHT SIX FOUR SEVEN TWO FIVE FIVE 384 wseq1: 0 3 6 6 6 6 6 6 6 385 phseq1: sil | d ay ax l | ey t | s ih k s | f ao r | s eh v ih n | t uw | f ay v | f ay v 386 cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 387 score1: -5580.062988 394 388 0 generated, 0 pushed, 0 nodes popped in 229 395 389 … … 400 394 length: 275 frames (5.50 sec.) 401 395 402 pass1_best: <s> DIAL THREE FOUR ZERO NINE NINE403 pass1_best_wordseq: 0 3 6 6 6 6 6 404 pass1_best_phonemeseq: sil | d ay ax l | th r iy | f ao r | z ih r ow | n ay n | n ay n405 pass1_best_score: - 7597.983398396 pass1_best: <s> DIAL FOUR NINE EIGHT FOUR TWO ZERO NINE OH 397 pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 6 398 pass1_best_phonemeseq: sil | d ay ax l | f ao r | n ay n | ey t | f ao r | t uw | z ih r ow | n ay n | ow 399 pass1_best_score: -6883.697266 406 400 407 401 samplenum=275 … … 409 403 0 sentences have found 410 404 got no candidates, output 1st pass result as a final result 411 sentence1: <s> DIAL THREE FOUR ZERO NINE NINE412 wseq1: 0 3 6 6 6 6 6 413 phseq1: sil | d ay ax l | th r iy | f ao r | z ih r ow | n ay n | n ay n414 cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 415 score1: - 7597.983398405 sentence1: <s> DIAL FOUR NINE EIGHT FOUR TWO ZERO NINE OH 406 wseq1: 0 3 6 6 6 6 6 6 6 6 407 phseq1: sil | d ay ax l | f ao r | n ay n | ey t | f ao r | t uw | z ih r ow | n ay n | ow 408 cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 409 score1: -6883.697266 416 410 0 generated, 0 pushed, 0 nodes popped in 275 417 411 … … 425 419 pass1_best_wordseq: 0 2 5 1 426 420 pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 427 pass1_best_score: -2 669.392334421 pass1_best_score: -2520.892578 428 422 429 423 samplenum=107 … … 441 435 length: 278 frames (5.56 sec.) 442 436 443 pass1_best: <s> DIAL SEVEN TWOSIX FOUR THREE </s>444 pass1_best_wordseq: 0 3 6 6 6 6 6 1445 pass1_best_phonemeseq: sil | d ay ax l | s eh v ih n | t uw| s ih k s | f ao r | th r iy | sil446 pass1_best_score: -7 527.917969437 pass1_best: <s> DIAL SEVEN ONE TWO EIGHT EIGHT SIX FOUR THREE </s> 438 pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 6 1 439 pass1_best_phonemeseq: sil | d ay ax l | s eh v ih n | w ah n | t uw | ey t | ey t | s ih k s | f ao r | th r iy | sil 440 pass1_best_score: -7148.513184 447 441 448 442 samplenum=278 449 sentence1: <s> DIAL SEVEN TWO TWOSIX FOUR THREE </s>450 wseq1: 0 3 6 6 6 6 6 6 1451 phseq1: sil | d ay ax l | s eh v ih n | t uw | t uw| s ih k s | f ao r | th r iy | sil452 cmscore1: 1.000 1.000 0. 457 0.707 0.848 0.993 0.9891.000 1.000453 score1: -6 781.289062454 55 generated, 55 pushed, 10nodes popped in 278443 sentence1: <s> DIAL SEVEN ONE TWO EIGHT EIGHT SIX FOUR THREE </s> 444 wseq1: 0 3 6 6 6 6 6 6 6 6 1 445 phseq1: sil | d ay ax l | s eh v ih n | w ah n | t uw | ey t | ey t | s ih k s | f ao r | th r iy | sil 446 cmscore1: 1.000 1.000 0.988 0.732 0.567 0.670 0.750 0.998 1.000 1.000 1.000 447 score1: -6657.084473 448 67 generated, 67 pushed, 12 nodes popped in 278 455 449 456 450 ------ … … 463 457 pass1_best_wordseq: 0 3 6 1 464 458 pass1_best_phonemeseq: sil | d ay ax l | s ih k s | sil 465 pass1_best_score: -2 940.952637459 pass1_best_score: -2793.341553 466 460 467 461 samplenum=119 … … 469 463 wseq1: 0 3 6 1 470 464 phseq1: sil | d ay ax l | s ih k s | sil 471 cmscore1: 1.000 1.000 1.0001.000465 cmscore1: 1.000 0.978 0.999 1.000 472 466 score1: -2646.464600 473 5 generated, 5pushed, 5 nodes popped in 119467 7 generated, 7 pushed, 5 nodes popped in 119 474 468 475 469 ------ … … 479 473 length: 164 frames (3.28 sec.) 480 474 481 pass1_best: <s> DIAL SEVEN </s>482 pass1_best_wordseq: 0 3 6 1483 pass1_best_phonemeseq: sil | d ay ax l | s eh v ih n | sil484 pass1_best_score: -4 236.811523475 pass1_best: <s> DIAL NINE SEVEN SEVEN </s> 476 pass1_best_wordseq: 0 3 6 6 6 1 477 pass1_best_phonemeseq: sil | d ay ax l | n ay n | s eh v ih n | s eh v ih n | sil 478 pass1_best_score: -4046.983154 485 479 486 480 samplenum=164 487 sentence1: <s> DIAL SEVEN SEVEN </s>488 wseq1: 0 3 6 6 1489 phseq1: sil | d ay ax l | s eh v ih n | s eh v ih n | sil490 cmscore1: 1.000 0. 519 0.3451.000 1.000491 score1: -3 858.254639492 1 0 generated, 10 pushed, 6nodes popped in 164481 sentence1: <s> DIAL NINE SEVEN SEVEN </s> 482 wseq1: 0 3 6 6 6 1 483 phseq1: sil | d ay ax l | n ay n | s eh v ih n | s eh v ih n | sil 484 cmscore1: 1.000 0.999 1.000 0.923 1.000 1.000 485 score1: -3766.810791 486 19 generated, 19 pushed, 7 nodes popped in 164 493 487 494 488 ------ … … 501 495 pass1_best_wordseq: 0 2 5 1 502 496 pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 503 pass1_best_score: -3 537.218262497 pass1_best_score: -3388.718506 504 498 505 499 samplenum=149 … … 507 501 wseq1: 0 2 5 1 508 502 phseq1: sil | f ow n | y ah ng | sil 509 cmscore1: 1.000 1.0001.000 1.000503 cmscore1: 1.000 0.997 1.000 1.000 510 504 score1: -3258.911133 511 505 8 generated, 8 pushed, 5 nodes popped in 149 … … 520 514 pass1_best_wordseq: 0 2 4 5 1 521 515 pass1_best_phonemeseq: sil | f ow n | s t iy v | y ah ng | sil 522 pass1_best_score: - 4146.140625516 pass1_best_score: -3948.141602 523 517 524 518 samplenum=168 … … 526 520 wseq1: 0 2 4 5 1 527 521 phseq1: sil | f ow n | s t iy v | y ah ng | sil 528 cmscore1: 1.000 0.99 2 0.929 0.9971.000522 cmscore1: 1.000 0.994 1.000 1.000 1.000 529 523 score1: -3751.659668 530 1 1 generated, 11pushed, 6 nodes popped in 168524 12 generated, 12 pushed, 6 nodes popped in 168 531 525 532 526 ------ … … 539 533 pass1_best_wordseq: 0 2 5 1 540 534 pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 541 pass1_best_score: -3 341.003662535 pass1_best_score: -3192.503906 542 536 543 537 samplenum=140 … … 558 552 pass1_best_wordseq: 0 2 5 1 559 553 pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 560 pass1_best_score: -3 312.625732554 pass1_best_score: -3164.125977 561 555 562 556 samplenum=138 … … 564 558 wseq1: 0 2 5 1 565 559 phseq1: sil | k ao l | y ah ng | sil 566 cmscore1: 1.000 1.0001.000 1.000560 cmscore1: 1.000 0.997 1.000 1.000 567 561 score1: -3015.109131 568 562 9 generated, 9 pushed, 5 nodes popped in 138 … … 577 571 pass1_best_wordseq: 0 2 4 5 1 578 572 pass1_best_phonemeseq: sil | f ow n | s t iy v | y ah ng | sil 579 pass1_best_score: -4 639.754883573 pass1_best_score: -4441.755859 580 574 581 575 samplenum=187 … … 583 577 wseq1: 0 2 4 5 1 584 578 phseq1: sil | f ow n | s t iy v | y ah ng | sil 585 cmscore1: 1.000 0.999 0.960 0.9991.000579 cmscore1: 1.000 0.999 1.000 1.000 1.000 586 580 score1: -4249.580078 587 581 12 generated, 12 pushed, 6 nodes popped in 187 … … 596 590 pass1_best_wordseq: 0 2 5 1 597 591 pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 598 pass1_best_score: -3 659.053955592 pass1_best_score: -3510.554443 599 593 600 594 samplenum=154 … … 604 598 cmscore1: 1.000 0.998 1.000 1.000 605 599 score1: -3381.536865 606 9 generated, 9pushed, 5 nodes popped in 154600 8 generated, 8 pushed, 5 nodes popped in 154 607 601 608 602 ------ … … 615 609 pass1_best_wordseq: 0 2 5 1 616 610 pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 617 pass1_best_score: -2 721.954346611 pass1_best_score: -2573.454346 618 612 619 613 samplenum=112 … … 623 617 cmscore1: 1.000 0.971 1.000 1.000 624 618 score1: -2423.452148 625 8 generated, 8pushed, 5 nodes popped in 112619 6 generated, 6 pushed, 5 nodes popped in 112 626 620 627 621 ------ … … 631 625 length: 266 frames (5.32 sec.) 632 626 633 pass1_best: <s> DIAL SIX TWO NINE ONE EIGHT FOUR EIGHT</s>634 pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 1635 pass1_best_phonemeseq: sil | d ay ax l | s ih k s | t uw | n ay n | w ah n | ey t | f ao r | ey t| sil636 pass1_best_score: - 7293.615723627 pass1_best: <s> DIAL SIX TWO NINE ONE EIGHT EIGHT FOUR THREE </s> 628 pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 6 1 629 pass1_best_phonemeseq: sil | d ay ax l | s ih k s | t uw | n ay n | w ah n | ey t | ey t | f ao r | th r iy | sil 630 pass1_best_score: -6934.393555 637 631 638 632 samplenum=266 639 sentence1: <s> DIAL SIX TWO NINE ONE EIGHT FOUR EIGHT</s>640 wseq1: 0 3 6 6 6 6 6 6 6 1641 phseq1: sil | d ay ax l | s ih k s | t uw | n ay n | w ah n | ey t | f ao r | ey t| sil642 cmscore1: 1.000 1.000 0.9 86 0.935 0.827 0.932 0.584 1.000 0.549 1.000643 score1: -6 449.029785644 59 generated, 59 pushed, 11nodes popped in 266633 sentence1: <s> DIAL SIX TWO TWO NINE ONE EIGHT EIGHT FOUR THREE </s> 634 wseq1: 0 3 6 6 6 6 6 6 6 6 6 1 635 phseq1: sil | d ay ax l | s ih k s | t uw | t uw | n ay n | w ah n | ey t | ey t | f ao r | th r iy | sil 636 cmscore1: 1.000 1.000 0.911 0.754 0.995 0.994 0.735 0.824 0.938 0.988 0.709 1.000 637 score1: -6361.479980 638 75 generated, 75 pushed, 13 nodes popped in 266 645 639 646 640 ------ … … 650 644 length: 262 frames (5.24 sec.) 651 645 652 pass1_best: <s> DIAL ZERO SEVEN ONE THREE FIVE FOUR </s>653 pass1_best_wordseq: 0 3 6 6 6 6 6 6 1654 pass1_best_phonemeseq: sil | d ay ax l | z ih r ow | s eh v ih n | w ah n | th r iy | f ay v | f ao r | sil655 pass1_best_score: -6 992.627930646 pass1_best: <s> DIAL ZERO SEVEN ONE THREE SEVEN FIVE FOUR </s> 647 pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 1 648 pass1_best_phonemeseq: sil | d ay ax l | z ih r ow | s eh v ih n | w ah n | th r iy | s eh v ih n | f ay v | f ao r | sil 649 pass1_best_score: -6602.163574 656 650 657 651 samplenum=262 658 sentence1: <s> DIAL ZERO SEVEN ONE THREE FIVE FOUR </s>659 wseq1: 0 3 6 6 6 6 6 6 1660 phseq1: sil | d ay ax l | z ih r ow | s eh v ih n | w ah n | th r iy | f ay v | f ao r | sil661 cmscore1: 1.000 1.000 1.000 0.995 0.891 1.000 0.8691.000 1.000662 score1: -6 244.194336663 45 generated, 45 pushed, 10nodes popped in 262652 sentence1: <s> DIAL ZERO SEVEN ONE THREE SEVEN FIVE FOUR </s> 653 wseq1: 0 3 6 6 6 6 6 6 6 1 654 phseq1: sil | d ay ax l | z ih r ow | s eh v ih n | w ah n | th r iy | s eh v ih n | f ay v | f ao r | sil 655 cmscore1: 1.000 0.981 0.999 0.999 0.939 1.000 0.999 0.865 1.000 1.000 656 score1: -6151.055176 657 63 generated, 63 pushed, 11 nodes popped in 262 664 658 665 659 ------ … … 672 666 pass1_best_wordseq: 0 2 5 1 673 667 pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 674 pass1_best_score: -2 961.714844668 pass1_best_score: -2813.214355 675 669 676 670 samplenum=119 … … 680 674 cmscore1: 1.000 0.978 1.000 1.000 681 675 score1: -2678.917236 682 9 generated, 9pushed, 5 nodes popped in 119676 8 generated, 8 pushed, 5 nodes popped in 119 683 677 684 678 ------ … … 688 682 length: 207 frames (4.14 sec.) 689 683 690 pass1_best: <s> DIAL ZERO FIVENINE </s>691 pass1_best_wordseq: 0 3 6 6 6 1692 pass1_best_phonemeseq: sil | d ay ax l | z ih r ow | f ay v| n ay n | sil693 pass1_best_score: -5 559.921387684 pass1_best: <s> DIAL SEVEN ZERO FIVE TWO NINE </s> 685 pass1_best_wordseq: 0 3 6 6 6 6 6 1 686 pass1_best_phonemeseq: sil | d ay ax l | s eh v ih n | z ih r ow | f ay v | t uw | n ay n | sil 687 pass1_best_score: -5272.398926 694 688 695 689 samplenum=207 696 sentence1: <s> DIAL ZERO FIVENINE </s>697 wseq1: 0 3 6 6 6 1698 phseq1: sil | d ay ax l | z ih r ow | f ay v| n ay n | sil699 cmscore1: 1.000 0.649 0.984 0.962 0.7421.000700 score1: - 5073.845703701 3 7 generated, 37 pushed, 7nodes popped in 207690 sentence1: <s> DIAL SEVEN ZERO FIVE TWO NINE </s> 691 wseq1: 0 3 6 6 6 6 6 1 692 phseq1: sil | d ay ax l | s eh v ih n | z ih r ow | f ay v | t uw | n ay n | sil 693 cmscore1: 1.000 1.000 0.951 0.997 0.999 0.991 0.999 1.000 694 score1: -4908.700684 695 39 generated, 39 pushed, 9 nodes popped in 207 702 696 703 697 ------ … … 707 701 length: 269 frames (5.38 sec.) 708 702 709 pass1_best: <s> DIAL SIX OH ZERO SEVEN FOUR ONE ONE710 pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 711 pass1_best_phonemeseq: sil | d ay ax l | s ih k s | ow | z ih r ow | s eh v ih n | f ao r | w ah n | w ah n712 pass1_best_score: - 7298.233398703 pass1_best: <s> DIAL SIX OH ZERO SEVEN FOUR ONE NINE ONE 704 pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 6 705 pass1_best_phonemeseq: sil | d ay ax l | s ih k s | ow | z ih r ow | s eh v ih n | f ao r | w ah n | n ay n | w ah n 706 pass1_best_score: -6902.825195 713 707 714 708 samplenum=269 … … 716 710 0 sentences have found 717 711 got no candidates, output 1st pass result as a final result 718 sentence1: <s> DIAL SIX OH ZERO SEVEN FOUR ONE ONE719 wseq1: 0 3 6 6 6 6 6 6 6 720 phseq1: sil | d ay ax l | s ih k s | ow | z ih r ow | s eh v ih n | f ao r | w ah n | w ah n721 cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 722 score1: - 7298.233398712 sentence1: <s> DIAL SIX OH ZERO SEVEN FOUR ONE NINE ONE 713 wseq1: 0 3 6 6 6 6 6 6 6 6 714 phseq1: sil | d ay ax l | s ih k s | ow | z ih r ow | s eh v ih n | f ao r | w ah n | n ay n | w ah n 715 cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 716 score1: -6902.825195 723 717 0 generated, 0 pushed, 0 nodes popped in 269 724 718 … … 732 726 pass1_best_wordseq: 0 3 6 1 733 727 pass1_best_phonemeseq: sil | d ay ax l | w ah n | sil 734 pass1_best_score: -2 904.418213728 pass1_best_score: -2772.399902 735 729 736 730 samplenum=111 … … 738 732 wseq1: 0 3 6 1 739 733 phseq1: sil | d ay ax l | w ah n | sil 740 cmscore1: 1.000 1.0001.000 1.000734 cmscore1: 1.000 0.998 1.000 1.000 741 735 score1: -2618.534912 742 736 5 generated, 5 pushed, 5 nodes popped in 111 … … 751 745 pass1_best_wordseq: 0 2 5 1 752 746 pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 753 pass1_best_score: -2 938.024414747 pass1_best_score: -2789.524414 754 748 755 749 samplenum=113 … … 757 751 wseq1: 0 2 5 1 758 752 phseq1: sil | f ow n | y ah ng | sil 759 cmscore1: 1.000 0.98 71.000 1.000753 cmscore1: 1.000 0.985 1.000 1.000 760 754 score1: -2656.895996 761 755 8 generated, 8 pushed, 5 nodes popped in 113 … … 767 761 length: 277 frames (5.54 sec.) 768 762 769 pass1_best: <s> DIAL FIVE FOUR ONE FOUR THREE FOUR TWO770 pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 771 pass1_best_phonemeseq: sil | d ay ax l | f ay v | f ao r | w ah n | f ao r | th r iy | f ao r | t uw772 pass1_best_score: -7 511.985840763 pass1_best: <s> DIAL FIVE FOUR ONE FOUR THREE FOUR OH TWO 764 pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 6 765 pass1_best_phonemeseq: sil | d ay ax l | f ay v | f ao r | w ah n | f ao r | th r iy | f ao r | ow | t uw 766 pass1_best_score: -7124.785156 773 767 774 768 samplenum=277 … … 776 770 0 sentences have found