voxforge.org
VoxForge Dev

Changeset 1556

Show
Ignore:
Timestamp:
01/25/07 13:26:05 (2 years ago)
Author:
kmaclean
Message:

update Testing_scripts

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • VoxForge/Trunk/Scripts/Testing_scripts/Nightly_test.pm

    r1551 r1556  
    2222### 
    2323#################################################################### 
    24 package Repository
     24package Nightly_test
    2525use strict; 
    2626use File::Spec; 
     
    4444my $mon = strftime "%m", localtime; # %m      month number, starting with 01 
    4545my $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 
    4849        $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";                                   
    5157$parms{"HTKBin"}  = "/usr/local/HTK"; # for testing 
    5258#$parms{"HTKBin"}  = "/usr/local/bin"; 
     
    5561my $debug = 0; 
    5662my $HTKbin = $parms{"HTKBin"}; 
    57 my $MFCC_files = $parms{"16kHz_16bit_MFCC_files"}; 
     63 
    5864my $Testing_scripts_dir = $parms{"Testing_scripts_dir"}; 
    5965my $LexiconDirectory = $parms{"LexiconDirectory"} ; 
     
    7076# Step 4 - Coding the Data 
    7177# 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(); 
     78processNightly(); 
     79#processCurrent(); 
    7780 
    7881# real time testing 
     
    8487### Subroutines 
    8588#################################################################### 
    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"; 
     89sub 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); 
    10199} 
    102100 
    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`; 
     101sub 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 
     113sub 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`; 
    111120        $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 
     128sub 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) ;    
    116135        $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 
     147sub 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 
     162sub 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//; 
    117172        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"; 
    121179}        
    122180 
     
    124182print OUTPUT "Notes: 
    125183 
    126     * the line starting with SENT gives the percentage of sentences that were recognized correctly, out of 50 in total. 
    127     * the line starting with WORD gives the percentage of words that were recognized correctly, out of 189 words in total 
     184    * 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 
    128186      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. 
    129187    * Count definitions: 
  • VoxForge/Trunk/Scripts/Testing_scripts/TestResults

    r1551 r1556  
     1Testing Acoustic Models created in: /data/svn-mirror-copy/Nightly_Builds/AcousticModel-2007-01-25 
     2 
    13HTK 16kHz_16bit 
     4--------------- 
     5        word insertion penalty: 0.0 
     6        grammar scale factor: 1.0 
    27====================== Results Analysis ======================= 
    3   Date: Wed Jan 24 18:48:58 2007 
     8  Date: Thu Jan 25 12:39:55 2007 
    49  Ref : testref.mlf 
    510  Rec : recout.mlf 
     
    914=================================================================== 
    1015 
    11  
    1216Julian 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)) 
    1322====================== Results Analysis ======================= 
    14   Date: Wed Jan 24 18:49:00 2007 
     23  Date: Thu Jan 25 12:39:57 2007 
    1524  Ref : testref.mlf 
    1625  Rec : julianProcessed 
     
    2029=================================================================== 
    2130 
    22  
    2331HTK 8kHz_16bit 
     32--------------- 
     33        word insertion penalty: 10.0 
     34        grammar scale factor: 5.0 
    2435====================== Results Analysis ======================= 
    25   Date: Wed Jan 24 18:49:02 2007 
     36  Date: Thu Jan 25 12:40:00 2007 
    2637  Ref : testref.mlf 
    2738  Rec : recout.mlf 
    2839------------------------ 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] 
     40SENT: %Correct=52.00 [H=26, S=24, N=50] 
     41WORD: %Corr=83.07, Acc=65.08 [H=157, D=1, S=31, I=34, N=189] 
    3142=================================================================== 
    3243 
    33  
    3444Julian 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)) 
    3550====================== Results Analysis ======================= 
    36   Date: Wed Jan 24 18:49:04 2007 
     51  Date: Thu Jan 25 12:40:01 2007 
    3752  Ref : testref.mlf 
    3853  Rec : julianProcessed 
    3954------------------------ 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] 
     55SENT: %Correct=84.00 [H=42, S=8, N=50] 
     56WORD: %Corr=95.24, Acc=91.53 [H=180, D=1, S=8, I=7, N=189] 
    4257=================================================================== 
    43  
    4458 
    4559Notes: 
    4660 
    47     * the line starting with SENT gives the percentage of sentences that were recognized correctly, out of 50 in total. 
    48     * the line starting with WORD gives the percentage of words that were recognized correctly, out of 189 words in total 
     61    * 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 
    4963      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. 
    5064    * Count definitions: 
  • VoxForge/Trunk/Scripts/Testing_scripts/gram

    r1545 r1556  
    11$digit= ONE | TWO | THREE | FOUR | FIVE | SIX | SEVEN | EIGHT | NINE | OH | ZERO; 
    22$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  
    6262## word insertion penalty 
    6363## 
    64 -penalty1 0.5         # first pass 
    65 -penalty2 100.0               # second pass 
     64#-penalty1 0.5                # first pass 
     65#-penalty2 100.0              # second pass 
    6666 
    6767###################################################################### 
     
    147147## 
    148148-iwsp                   # append a skippable sp model at all word ends 
    149 -iwsppenalty -55.0    # transition penalty for the appenede sp models 
     149#-iwsppenalty -55.0   # transition penalty for the appenede sp models 
    150150 
    151151###################################################################### 
  • VoxForge/Trunk/Scripts/Testing_scripts/julianOutput

    r1551 r1556  
    2222 
    2323Files: 
    24     hmmfilename=/data/Nightly_Builds/AcousticModel-2007-01-24/HTK/8kHz_16bit/MFCC_O_D/hmmdefs 
    25     hmmmapfilename=/data/Nightly_Builds/AcousticModel-2007-01-24/HTK/8kHz_16bit/MFCC_O_D/tiedlist 
     24    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 
    2626    grammar #1: 
    2727        dfa  = test.dfa 
     
    7373 
    7474Weights and words:  
    75         (-penalty1) IW penalty1 = +0.5 
     75        (-penalty1) IW penalty1 = +50.0 
    7676        (-penalty2) IW penalty2 = +100.0 
    7777        (-cmalpha)CM alpha coef = 0.050000 
     
    128128pass1_best_wordseq: 0 2 5 1 
    129129pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 
    130 pass1_best_score: -2761.724365 
     130pass1_best_score: -2613.224854 
    131131 
    132132samplenum=108 
     
    136136cmscore1: 1.000 0.996 1.000 1.000 
    137137score1: -2482.650146 
    138 9 generated, 9 pushed, 5 nodes popped in 108 
     1388 generated, 8 pushed, 5 nodes popped in 108 
    139139 
    140140------ 
     
    147147pass1_best_wordseq: 0 2 5 1 
    148148pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 
    149 pass1_best_score: -3034.731445 
     149pass1_best_score: -2886.231201 
    150150 
    151151samplenum=128 
     
    155155cmscore1: 1.000 0.952 1.000 1.000 
    156156score1: -2738.957520 
    157 10 generated, 10 pushed, 5 nodes popped in 128 
     1576 generated, 6 pushed, 5 nodes popped in 128 
    158158 
    159159------ 
     
    166166pass1_best_wordseq: 0 2 5 1 
    167167pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 
    168 pass1_best_score: -2561.363525 
     168pass1_best_score: -2412.863281 
    169169 
    170170samplenum=100 
     
    182182length: 181 frames (3.62 sec.) 
    183183 
    184 pass1_best: <s> DIAL FIVE FOUR FOUR FOUR 
    185 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 r 
    187 pass1_best_score: -4967.129395 
     184pass1_best: <s> DIAL ONE FIVE FOUR FOUR FOUR </s> 
     185pass1_best_wordseq: 0 3 6 6 6 6 6 1 
     186pass1_best_phonemeseq: sil | d ay ax l | w ah n | f ay v | f ao r | f ao r | f ao r | sil 
     187pass1_best_score: -4678.896484 
    188188 
    189189samplenum=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 
     190sentence1: <s> DIAL ONE FIVE FOUR FOUR FOUR </s> 
     191wseq1: 0 3 6 6 6 6 6 1 
     192phseq1: sil | d ay ax l | w ah n | f ay v | f ao r | f ao r | f ao r | sil 
     193cmscore1: 1.000 1.000 0.998 0.900 1.000 1.000 1.000 1.000 
     194score1: -4325.354004 
     19524 generated, 24 pushed, 9 nodes popped in 181 
    199196 
    200197------ 
     
    207204pass1_best_wordseq: 0 2 5 1 
    208205pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 
    209 pass1_best_score: -2664.910400 
     206pass1_best_score: -2516.409912 
    210207 
    211208samplenum=105 
     
    213210wseq1: 0 2 5 1 
    214211phseq1: sil | f ow n | y ah ng | sil 
    215 cmscore1: 1.000 0.999 1.000 1.000 
     212cmscore1: 1.000 0.997 1.000 1.000 
    216213score1: -2378.602295 
    217 9 generated, 9 pushed, 5 nodes popped in 105 
     2148 generated, 8 pushed, 5 nodes popped in 105 
    218215 
    219216------ 
     
    226223pass1_best_wordseq: 0 2 5 1 
    227224pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 
    228 pass1_best_score: -2693.915527 
     225pass1_best_score: -2545.415283 
    229226 
    230227samplenum=110 
     
    234231cmscore1: 1.000 0.985 1.000 1.000 
    235232score1: -2398.655029 
    236 8 generated, 8 pushed, 5 nodes popped in 110 
     2336 generated, 6 pushed, 5 nodes popped in 110 
    237234 
    238235------ 
     
    245242pass1_best_wordseq: 0 2 4 5 1 
    246243pass1_best_phonemeseq: sil | f ow n | s t iy v | y ah ng | sil 
    247 pass1_best_score: -3417.484619 
     244pass1_best_score: -3219.484619 
    248245 
    249246samplenum=138 
     
    251248wseq1: 0 2 4 5 1 
    252249phseq1: sil | f ow n | s t iy v | y ah ng | sil 
    253 cmscore1: 1.000 1.000 0.742 0.988 1.000 
     250cmscore1: 1.000 1.000 0.999 1.000 1.000 
    254251score1: -3024.624756 
    255 10 generated, 10 pushed, 6 nodes popped in 138 
     25211 generated, 11 pushed, 6 nodes popped in 138 
    256253 
    257254------ 
     
    264261pass1_best_wordseq: 0 2 5 1 
    265262pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 
    266 pass1_best_score: -2710.318115 
     263pass1_best_score: -2561.818115 
    267264 
    268265samplenum=104 
     
    272269cmscore1: 1.000 0.989 1.000 1.000 
    273270score1: -2413.094482 
    274 6 generated, 6 pushed, 5 nodes popped in 104 
     2717 generated, 7 pushed, 5 nodes popped in 104 
    275272 
    276273------ 
     
    280277length: 120 frames (2.40 sec.) 
    281278 
    282 pass1_best: <s> PHONE YOUNG </s> 
    283 pass1_best_wordseq: 0 2 5 1 
    284 pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 
    285 pass1_best_score: -3022.780762 
     279pass1_best: <s> PHONE STEVE YOUNG </s> 
     280pass1_best_wordseq: 0 2 4 5 1 
     281pass1_best_phonemeseq: sil | f ow n | s t iy v | y ah ng | sil 
     282pass1_best_score: -2838.361816 
    286283 
    287284samplenum=120 
    288 sentence1: <s> PHONE YOUNG </s> 
    289 wseq1: 0 2 5 1 
    290 phseq1: sil | f ow n | y ah ng | sil 
    291 cmscore1: 1.000 0.826 0.986 1.000 
    292 score1: -2735.466309 
    293 8 generated, 8 pushed, 5 nodes popped in 120 
     285sentence1: <s> PHONE STEVE YOUNG </s> 
     286wseq1: 0 2 4 5 1 
     287phseq1: sil | f ow n | s t iy v | y ah ng | sil 
     288cmscore1: 1.000 0.998 0.984 1.000 1.000 
     289score1: -2639.084717 
     29011 generated, 11 pushed, 6 nodes popped in 120 
    294291 
    295292------ 
     
    302299pass1_best_wordseq: 0 3 6 1 
    303300pass1_best_phonemeseq: sil | d ay ax l | n ay n | sil 
    304 pass1_best_score: -2618.224609 
     301pass1_best_score: -2489.013184 
    305302 
    306303samplenum=101 
     
    308305wseq1: 0 3 6 1 
    309306phseq1: sil | d ay ax l | n ay n | sil 
    310 cmscore1: 1.000 1.000 1.000 1.000 
     307cmscore1: 1.000 0.996 1.000 1.000 
    311308score1: -2335.247559 
    3123095 generated, 5 pushed, 5 nodes popped in 101 
     
    318315length: 245 frames (4.90 sec.) 
    319316 
    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: -6532.860840 
     317pass1_best: <s> DIAL THREE SIX NINE ZERO THREE FIVE </s> 
     318pass1_best_wordseq: 0 3 6 6 6 6 6 6 1 
     319pass1_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 
     320pass1_best_score: -6239.816406 
    324321 
    325322samplenum=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 
     323sentence1: <s> DIAL THREE SIX NINE ZERO THREE FIVE </s> 
     324wseq1: 0 3 6 6 6 6 6 6 1 
     325phseq1: 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 
     326cmscore1: 1.000 0.997 0.913 0.992 0.998 0.996 0.996 1.000 1.000 
     327score1: -5869.116211 
     32852 generated, 52 pushed, 10 nodes popped in 245 
    335329 
    336330------ 
     
    340334length: 185 frames (3.70 sec.) 
    341335 
    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.57373
     336pass1_best: <s> DIAL NINE SEVEN SIX FOUR FOUR </s> 
     337pass1_best_wordseq: 0 3 6 6 6 6 6 1 
     338pass1_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 
     339pass1_best_score: -4783.47998
    346340 
    347341samplenum=185 
     
    349343wseq1: 0 3 6 6 6 6 6 1 
    350344phseq1: 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.996 1.000 
     345cmscore1: 1.000 0.999 1.000 0.999 0.996 1.000 1.000 1.000 
    352346score1: -4406.329102 
    353 29 generated, 29 pushed, 9 nodes popped in 185 
     34730 generated, 30 pushed, 9 nodes popped in 185 
    354348 
    355349------ 
     
    362356pass1_best_wordseq: 0 2 4 5 1 
    363357pass1_best_phonemeseq: sil | f ow n | s t iy v | y ah ng | sil 
    364 pass1_best_score: -3903.193604 
     358pass1_best_score: -3705.194092 
    365359 
    366360samplenum=156 
     
    368362wseq1: 0 2 4 5 1 
    369363phseq1: sil | f ow n | s t iy v | y ah ng | sil 
    370 cmscore1: 1.000 1.000 1.000 0.992 1.000 
     364cmscore1: 1.000 1.000 1.000 1.000 1.000 
    371365score1: -3521.750000 
    37236610 generated, 10 pushed, 6 nodes popped in 156 
     
    378372length: 229 frames (4.58 sec.) 
    379373 
    380 pass1_best: <s> DIAL EIGHT FOUR SEVEN TWO FIVE FIVE 
    381 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 v 
    383 pass1_best_score: -6271.007324 
     374pass1_best: <s> DIAL EIGHT SIX FOUR SEVEN TWO FIVE FIVE 
     375pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 
     376pass1_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 
     377pass1_best_score: -5580.062988 
    384378 
    385379samplenum=229 
     
    3873810 sentences have found 
    388382got no candidates, output 1st pass result as a final result 
    389 sentence1: <s> DIAL EIGHT FOUR SEVEN TWO FIVE FIVE 
    390 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 v 
    392 cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
    393 score1: -6271.007324 
     383sentence1: <s> DIAL EIGHT SIX FOUR SEVEN TWO FIVE FIVE 
     384wseq1: 0 3 6 6 6 6 6 6 6 
     385phseq1: 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 
     386cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
     387score1: -5580.062988 
    3943880 generated, 0 pushed, 0 nodes popped in 229 
    395389 
     
    400394length: 275 frames (5.50 sec.) 
    401395 
    402 pass1_best: <s> DIAL THREE FOUR ZERO NINE NINE 
    403 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 n 
    405 pass1_best_score: -7597.983398 
     396pass1_best: <s> DIAL FOUR NINE EIGHT FOUR TWO ZERO NINE OH 
     397pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 6 
     398pass1_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 
     399pass1_best_score: -6883.697266 
    406400 
    407401samplenum=275 
     
    4094030 sentences have found 
    410404got no candidates, output 1st pass result as a final result 
    411 sentence1: <s> DIAL THREE FOUR ZERO NINE NINE 
    412 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 n 
    414 cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
    415 score1: -7597.983398 
     405sentence1: <s> DIAL FOUR NINE EIGHT FOUR TWO ZERO NINE OH 
     406wseq1: 0 3 6 6 6 6 6 6 6 6 
     407phseq1: 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 
     408cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
     409score1: -6883.697266 
    4164100 generated, 0 pushed, 0 nodes popped in 275 
    417411 
     
    425419pass1_best_wordseq: 0 2 5 1 
    426420pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 
    427 pass1_best_score: -2669.392334 
     421pass1_best_score: -2520.892578 
    428422 
    429423samplenum=107 
     
    441435length: 278 frames (5.56 sec.) 
    442436 
    443 pass1_best: <s> DIAL SEVEN TWO SIX FOUR THREE </s> 
    444 pass1_best_wordseq: 0 3 6 6 6 6 6
    445 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 | sil 
    446 pass1_best_score: -7527.917969 
     437pass1_best: <s> DIAL SEVEN ONE TWO EIGHT EIGHT SIX FOUR THREE </s> 
     438pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 6
     439pass1_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 
     440pass1_best_score: -7148.513184 
    447441 
    448442samplenum=278 
    449 sentence1: <s> DIAL SEVEN TWO TWO SIX FOUR THREE </s> 
    450 wseq1: 0 3 6 6 6 6 6 6
    451 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 | sil 
    452 cmscore1: 1.000 1.000 0.457 0.707 0.848 0.993 0.989 1.000 1.000 
    453 score1: -6781.289062 
    454 55 generated, 55 pushed, 10 nodes popped in 278 
     443sentence1: <s> DIAL SEVEN ONE TWO EIGHT EIGHT SIX FOUR THREE </s> 
     444wseq1: 0 3 6 6 6 6 6 6 6 6
     445phseq1: 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 
     446cmscore1: 1.000 1.000 0.988 0.732 0.567 0.670 0.750 0.998 1.000 1.000 1.000 
     447score1: -6657.084473 
     44867 generated, 67 pushed, 12 nodes popped in 278 
    455449 
    456450------ 
     
    463457pass1_best_wordseq: 0 3 6 1 
    464458pass1_best_phonemeseq: sil | d ay ax l | s ih k s | sil 
    465 pass1_best_score: -2940.952637 
     459pass1_best_score: -2793.341553 
    466460 
    467461samplenum=119 
     
    469463wseq1: 0 3 6 1 
    470464phseq1: sil | d ay ax l | s ih k s | sil 
    471 cmscore1: 1.000 1.000 1.000 1.000 
     465cmscore1: 1.000 0.978 0.999 1.000 
    472466score1: -2646.464600 
    473 5 generated, 5 pushed, 5 nodes popped in 119 
     4677 generated, 7 pushed, 5 nodes popped in 119 
    474468 
    475469------ 
     
    479473length: 164 frames (3.28 sec.) 
    480474 
    481 pass1_best: <s> DIAL SEVEN </s> 
    482 pass1_best_wordseq: 0 3 6
    483 pass1_best_phonemeseq: sil | d ay ax l | s eh v ih n | sil 
    484 pass1_best_score: -4236.811523 
     475pass1_best: <s> DIAL NINE SEVEN SEVEN </s> 
     476pass1_best_wordseq: 0 3 6 6 6
     477pass1_best_phonemeseq: sil | d ay ax l | n ay n | s eh v ih n | s eh v ih n | sil 
     478pass1_best_score: -4046.983154 
    485479 
    486480samplenum=164 
    487 sentence1: <s> DIAL SEVEN SEVEN </s> 
    488 wseq1: 0 3 6 6
    489 phseq1: sil | d ay ax l | s eh v ih n | s eh v ih n | sil 
    490 cmscore1: 1.000 0.519 0.345 1.000 1.000 
    491 score1: -3858.254639 
    492 10 generated, 10 pushed, 6 nodes popped in 164 
     481sentence1: <s> DIAL NINE SEVEN SEVEN </s> 
     482wseq1: 0 3 6 6 6
     483phseq1: sil | d ay ax l | n ay n | s eh v ih n | s eh v ih n | sil 
     484cmscore1: 1.000 0.999 1.000 0.923 1.000 1.000 
     485score1: -3766.810791 
     48619 generated, 19 pushed, 7 nodes popped in 164 
    493487 
    494488------ 
     
    501495pass1_best_wordseq: 0 2 5 1 
    502496pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 
    503 pass1_best_score: -3537.218262 
     497pass1_best_score: -3388.718506 
    504498 
    505499samplenum=149 
     
    507501wseq1: 0 2 5 1 
    508502phseq1: sil | f ow n | y ah ng | sil 
    509 cmscore1: 1.000 1.000 1.000 1.000 
     503cmscore1: 1.000 0.997 1.000 1.000 
    510504score1: -3258.911133 
    5115058 generated, 8 pushed, 5 nodes popped in 149 
     
    520514pass1_best_wordseq: 0 2 4 5 1 
    521515pass1_best_phonemeseq: sil | f ow n | s t iy v | y ah ng | sil 
    522 pass1_best_score: -4146.140625 
     516pass1_best_score: -3948.141602 
    523517 
    524518samplenum=168 
     
    526520wseq1: 0 2 4 5 1 
    527521phseq1: sil | f ow n | s t iy v | y ah ng | sil 
    528 cmscore1: 1.000 0.992 0.929 0.997 1.000 
     522cmscore1: 1.000 0.994 1.000 1.000 1.000 
    529523score1: -3751.659668 
    530 11 generated, 11 pushed, 6 nodes popped in 168 
     52412 generated, 12 pushed, 6 nodes popped in 168 
    531525 
    532526------ 
     
    539533pass1_best_wordseq: 0 2 5 1 
    540534pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 
    541 pass1_best_score: -3341.003662 
     535pass1_best_score: -3192.503906 
    542536 
    543537samplenum=140 
     
    558552pass1_best_wordseq: 0 2 5 1 
    559553pass1_best_phonemeseq: sil | k ao l | y ah ng | sil 
    560 pass1_best_score: -3312.625732 
     554pass1_best_score: -3164.125977 
    561555 
    562556samplenum=138 
     
    564558wseq1: 0 2 5 1 
    565559phseq1: sil | k ao l | y ah ng | sil 
    566 cmscore1: 1.000 1.000 1.000 1.000 
     560cmscore1: 1.000 0.997 1.000 1.000 
    567561score1: -3015.109131 
    5685629 generated, 9 pushed, 5 nodes popped in 138 
     
    577571pass1_best_wordseq: 0 2 4 5 1 
    578572pass1_best_phonemeseq: sil | f ow n | s t iy v | y ah ng | sil 
    579 pass1_best_score: -4639.754883 
     573pass1_best_score: -4441.755859 
    580574 
    581575samplenum=187 
     
    583577wseq1: 0 2 4 5 1 
    584578phseq1: sil | f ow n | s t iy v | y ah ng | sil 
    585 cmscore1: 1.000 0.999 0.960 0.999 1.000 
     579cmscore1: 1.000 0.999 1.000 1.000 1.000 
    586580score1: -4249.580078 
    58758112 generated, 12 pushed, 6 nodes popped in 187 
     
    596590pass1_best_wordseq: 0 2 5 1 
    597591pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 
    598 pass1_best_score: -3659.053955 
     592pass1_best_score: -3510.554443 
    599593 
    600594samplenum=154 
     
    604598cmscore1: 1.000 0.998 1.000 1.000 
    605599score1: -3381.536865 
    606 9 generated, 9 pushed, 5 nodes popped in 154 
     6008 generated, 8 pushed, 5 nodes popped in 154 
    607601 
    608602------ 
     
    615609pass1_best_wordseq: 0 2 5 1 
    616610pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 
    617 pass1_best_score: -2721.954346 
     611pass1_best_score: -2573.454346 
    618612 
    619613samplenum=112 
     
    623617cmscore1: 1.000 0.971 1.000 1.000 
    624618score1: -2423.452148 
    625 8 generated, 8 pushed, 5 nodes popped in 112 
     6196 generated, 6 pushed, 5 nodes popped in 112 
    626620 
    627621------ 
     
    631625length: 266 frames (5.32 sec.) 
    632626 
    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
    635 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 | sil 
    636 pass1_best_score: -7293.615723 
     627pass1_best: <s> DIAL SIX TWO NINE ONE EIGHT EIGHT FOUR THREE </s> 
     628pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 6
     629pass1_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 
     630pass1_best_score: -6934.393555 
    637631 
    638632samplenum=266 
    639 sentence1: <s> DIAL SIX TWO NINE ONE EIGHT FOUR EIGHT </s> 
    640 wseq1: 0 3 6 6 6 6 6 6 6
    641 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 | sil 
    642 cmscore1: 1.000 1.000 0.986 0.935 0.827 0.932 0.584 1.000 0.549 1.000 
    643 score1: -6449.029785 
    644 59 generated, 59 pushed, 11 nodes popped in 266 
     633sentence1: <s> DIAL SIX TWO TWO NINE ONE EIGHT EIGHT FOUR THREE </s> 
     634wseq1: 0 3 6 6 6 6 6 6 6 6 6
     635phseq1: 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 
     636cmscore1: 1.000 1.000 0.911 0.754 0.995 0.994 0.735 0.824 0.938 0.988 0.709 1.000 
     637score1: -6361.479980 
     63875 generated, 75 pushed, 13 nodes popped in 266 
    645639 
    646640------ 
     
    650644length: 262 frames (5.24 sec.) 
    651645 
    652 pass1_best: <s> DIAL ZERO SEVEN ONE THREE FIVE FOUR </s> 
    653 pass1_best_wordseq: 0 3 6 6 6 6 6 6
    654 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 | sil 
    655 pass1_best_score: -6992.627930 
     646pass1_best: <s> DIAL ZERO SEVEN ONE THREE SEVEN FIVE FOUR </s> 
     647pass1_best_wordseq: 0 3 6 6 6 6 6 6 6
     648pass1_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 
     649pass1_best_score: -6602.163574 
    656650 
    657651samplenum=262 
    658 sentence1: <s> DIAL ZERO SEVEN ONE THREE FIVE FOUR </s> 
    659 wseq1: 0 3 6 6 6 6 6 6
    660 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 | sil 
    661 cmscore1: 1.000 1.000 1.000 0.995 0.891 1.000 0.869 1.000 1.000 
    662 score1: -6244.19433
    663 45 generated, 45 pushed, 10 nodes popped in 262 
     652sentence1: <s> DIAL ZERO SEVEN ONE THREE SEVEN FIVE FOUR </s> 
     653wseq1: 0 3 6 6 6 6 6 6 6
     654phseq1: 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 
     655cmscore1: 1.000 0.981 0.999 0.999 0.939 1.000 0.999 0.865 1.000 1.000 
     656score1: -6151.05517
     65763 generated, 63 pushed, 11 nodes popped in 262 
    664658 
    665659------ 
     
    672666pass1_best_wordseq: 0 2 5 1 
    673667pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 
    674 pass1_best_score: -2961.714844 
     668pass1_best_score: -2813.214355 
    675669 
    676670samplenum=119 
     
    680674cmscore1: 1.000 0.978 1.000 1.000 
    681675score1: -2678.917236 
    682 9 generated, 9 pushed, 5 nodes popped in 119 
     6768 generated, 8 pushed, 5 nodes popped in 119 
    683677 
    684678------ 
     
    688682length: 207 frames (4.14 sec.) 
    689683 
    690 pass1_best: <s> DIAL ZERO FIVE NINE </s> 
    691 pass1_best_wordseq: 0 3 6 6 6
    692 pass1_best_phonemeseq: sil | d ay ax l | z ih r ow | f ay v | n ay n | sil 
    693 pass1_best_score: -5559.921387 
     684pass1_best: <s> DIAL SEVEN ZERO FIVE TWO NINE </s> 
     685pass1_best_wordseq: 0 3 6 6 6 6 6
     686pass1_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 
     687pass1_best_score: -5272.398926 
    694688 
    695689samplenum=207 
    696 sentence1: <s> DIAL ZERO FIVE NINE </s> 
    697 wseq1: 0 3 6 6 6
    698 phseq1: sil | d ay ax l | z ih r ow | f ay v | n ay n | sil 
    699 cmscore1: 1.000 0.649 0.984 0.962 0.742 1.000 
    700 score1: -5073.845703 
    701 37 generated, 37 pushed, 7 nodes popped in 207 
     690sentence1: <s> DIAL SEVEN ZERO FIVE TWO NINE </s> 
     691wseq1: 0 3 6 6 6 6 6
     692phseq1: sil | d ay ax l | s eh v ih n | z ih r ow | f ay v | t uw | n ay n | sil 
     693cmscore1: 1.000 1.000 0.951 0.997 0.999 0.991 0.999 1.000 
     694score1: -4908.700684 
     69539 generated, 39 pushed, 9 nodes popped in 207 
    702696 
    703697------ 
     
    707701length: 269 frames (5.38 sec.) 
    708702 
    709 pass1_best: <s> DIAL SIX OH ZERO SEVEN FOUR ONE ONE 
    710 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 n 
    712 pass1_best_score: -7298.233398 
     703pass1_best: <s> DIAL SIX OH ZERO SEVEN FOUR ONE NINE ONE 
     704pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 6 
     705pass1_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 
     706pass1_best_score: -6902.825195 
    713707 
    714708samplenum=269 
     
    7167100 sentences have found 
    717711got no candidates, output 1st pass result as a final result 
    718 sentence1: <s> DIAL SIX OH ZERO SEVEN FOUR ONE ONE 
    719 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 n 
    721 cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
    722 score1: -7298.233398 
     712sentence1: <s> DIAL SIX OH ZERO SEVEN FOUR ONE NINE ONE 
     713wseq1: 0 3 6 6 6 6 6 6 6 6 
     714phseq1: 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 
     715cmscore1: 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 
     716score1: -6902.825195 
    7237170 generated, 0 pushed, 0 nodes popped in 269 
    724718 
     
    732726pass1_best_wordseq: 0 3 6 1 
    733727pass1_best_phonemeseq: sil | d ay ax l | w ah n | sil 
    734 pass1_best_score: -2904.418213 
     728pass1_best_score: -2772.399902 
    735729 
    736730samplenum=111 
     
    738732wseq1: 0 3 6 1 
    739733phseq1: sil | d ay ax l | w ah n | sil 
    740 cmscore1: 1.000 1.000 1.000 1.000 
     734cmscore1: 1.000 0.998 1.000 1.000 
    741735score1: -2618.534912 
    7427365 generated, 5 pushed, 5 nodes popped in 111 
     
    751745pass1_best_wordseq: 0 2 5 1 
    752746pass1_best_phonemeseq: sil | f ow n | y ah ng | sil 
    753 pass1_best_score: -2938.024414 
     747pass1_best_score: -2789.524414 
    754748 
    755749samplenum=113 
     
    757751wseq1: 0 2 5 1 
    758752phseq1: sil | f ow n | y ah ng | sil 
    759 cmscore1: 1.000 0.987 1.000 1.000 
     753cmscore1: 1.000 0.985 1.000 1.000 
    760754score1: -2656.895996 
    7617558 generated, 8 pushed, 5 nodes popped in 113 
     
    767761length: 277 frames (5.54 sec.) 
    768762 
    769 pass1_best: <s> DIAL FIVE FOUR ONE FOUR THREE FOUR TWO 
    770 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 uw 
    772 pass1_best_score: -7511.985840 
     763pass1_best: <s> DIAL FIVE FOUR ONE FOUR THREE FOUR OH TWO 
     764pass1_best_wordseq: 0 3 6 6 6 6 6 6 6 6 
     765pass1_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 
     766pass1_best_score: -7124.785156 
    773767 
    774768samplenum=277 
     
    7767700 sentences have found