Added voice control
Former-commit-id: 6f69079bf44f0d8f9ae40de6b0f1638d103464c2
This commit is contained in:
parent
35c92407a3
commit
53da641909
863 changed files with 192681 additions and 0 deletions
395
lib/sphinx4-5prealpha-src/tests/performance/an4/an4.config.xml
Normal file
395
lib/sphinx4-5prealpha-src/tests/performance/an4/an4.config.xml
Normal file
|
|
@ -0,0 +1,395 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Sphinx-4 Configuration file
|
||||
-->
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- an4 configuration file -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<config>
|
||||
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- frequently tuned properties -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<property name="absoluteBeamWidth" value="800"/>
|
||||
<property name="relativeBeamWidth" value="1E-150"/>
|
||||
<property name="wordInsertionProbability" value="1E-26"/>
|
||||
<property name="languageWeight" value="7"/>
|
||||
<property name="silenceInsertionProbability" value="1"/>
|
||||
<property name="grammarPath" value=""/>
|
||||
|
||||
<property name="linguist" value="flatLinguist"/>
|
||||
<property name="recognizer" value="wordRecognizer"/>
|
||||
<property name="grammar" value="wordListGrammar"/>
|
||||
<property name="frontend" value="mfcFrontEnd"/>
|
||||
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- batch tool configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="batch"
|
||||
type="edu.cmu.sphinx.tools.batch.BatchModeRecognizer">
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
<propertylist name="inputDataProcessors">
|
||||
<item>streamDataSource</item>
|
||||
</propertylist>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- Live Mode -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="live"
|
||||
type="edu.cmu.sphinx.tools.live.LiveModeRecognizer">
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
<property name="inputSource" value="concatDataSource"/>
|
||||
</component>
|
||||
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- word recognizer configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="wordRecognizer"
|
||||
type="edu.cmu.sphinx.recognizer.Recognizer">
|
||||
<property name="decoder" value="decoder"/>
|
||||
<propertylist name="monitors">
|
||||
<item>accuracyTracker</item>
|
||||
<item>speedTracker</item>
|
||||
<item>memoryTracker</item>
|
||||
<item>recognizerMonitor</item>
|
||||
</propertylist>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- rejection recognizer configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="rejectionRecognizer"
|
||||
type="edu.cmu.sphinx.recognizer.Recognizer">
|
||||
<property name="decoder" value="decoder"/>
|
||||
<propertylist name="monitors">
|
||||
<item>accuracyTracker</item>
|
||||
<item>rejectionTracker</item>
|
||||
<item>speedTracker</item>
|
||||
<item>memoryTracker</item>
|
||||
<item>recognizerMonitor</item>
|
||||
</propertylist>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The Decoder configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="decoder" type="edu.cmu.sphinx.decoder.Decoder">
|
||||
<property name="searchManager" value="searchManager"/>
|
||||
</component>
|
||||
|
||||
<component name="searchManager"
|
||||
type="edu.cmu.sphinx.decoder.search.SimpleBreadthFirstSearchManager">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="linguist" value="${linguist}"/>
|
||||
<property name="pruner" value="trivialPruner"/>
|
||||
<property name="scorer" value="threadedScorer"/>
|
||||
<property name="activeListFactory" value="activeList"/>
|
||||
</component>
|
||||
|
||||
|
||||
<component name="activeList"
|
||||
type="edu.cmu.sphinx.decoder.search.PartitionActiveListFactory">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="absoluteBeamWidth" value="${absoluteBeamWidth}"/>
|
||||
<property name="relativeBeamWidth" value="${relativeBeamWidth}"/>
|
||||
</component>
|
||||
|
||||
<component name="trivialPruner"
|
||||
type="edu.cmu.sphinx.decoder.pruner.SimplePruner"/>
|
||||
|
||||
<component name="threadedScorer"
|
||||
type="edu.cmu.sphinx.decoder.scorer.ThreadedAcousticScorer">
|
||||
<property name="frontend" value="${frontend}"/>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The linguist configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="flatLinguist"
|
||||
type="edu.cmu.sphinx.linguist.flat.FlatLinguist">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="grammar" value="${grammar}"/>
|
||||
<property name="acousticModel" value="wsj"/>
|
||||
<property name="wordInsertionProbability"
|
||||
value="${wordInsertionProbability}"/>
|
||||
<property name="silenceInsertionProbability"
|
||||
value="${silenceInsertionProbability}"/>
|
||||
<property name="languageWeight" value="${languageWeight}"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
<property name="addOutOfGrammarBranch" value="false"/>
|
||||
<property name="outOfGrammarProbability" value="1E-20"/>
|
||||
<property name="phoneInsertionProbability" value="1E-10"/>
|
||||
<property name="phoneLoopAcousticModel" value="wsj"/>
|
||||
</component>
|
||||
|
||||
<component name="lexTreeLinguist"
|
||||
type="edu.cmu.sphinx.linguist.lextree.LexTreeLinguist">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="acousticModel" value="wsj"/>
|
||||
<property name="languageModel" value="ngramLanguageModel"/>
|
||||
<property name="dictionary" value="dictionary"/>
|
||||
|
||||
<property name="wordInsertionProbability"
|
||||
value="${wordInsertionProbability}"/>
|
||||
<property name="silenceInsertionProbability"
|
||||
value="${silenceInsertionProbability}"/>
|
||||
<property name="languageWeight" value="${languageWeight}"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
</component>
|
||||
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The Grammar configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
<component name="wordListGrammar"
|
||||
type="edu.cmu.sphinx.linguist.language.grammar.SimpleWordListGrammar">
|
||||
<property name="path" value="${grammarPath}"/>
|
||||
<property name="isLooping" value="true"/>
|
||||
<property name="dictionary" value="dictionary"/>
|
||||
<property name="optimizeGrammar" value="true"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
</component>
|
||||
|
||||
<component name="lmGrammar"
|
||||
type="edu.cmu.sphinx.linguist.language.grammar.LMGrammar">
|
||||
<property name="dictionary" value="dictionary"/>
|
||||
<property name="languageModel" value="ngramLanguageModel"/>
|
||||
</component>
|
||||
|
||||
<component name="fstGrammar"
|
||||
type="edu.cmu.sphinx.linguist.language.grammar.FSTGrammar">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="path" value="an4.flat_unigram.fst"/>
|
||||
<property name="dictionary" value="dictionary"/>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The Language Model configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
<component name="ngramLanguageModel"
|
||||
type="edu.cmu.sphinx.linguist.language.ngram.SimpleNGramModel">
|
||||
<property name="location" value="an4_words.flat_unigram.lm"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="dictionary" value="dictionary"/>
|
||||
<property name="maxDepth" value="1"/>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The Dictionary configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="dictionary"
|
||||
type="edu.cmu.sphinx.linguist.dictionary.FullDictionary">
|
||||
<property name="dictionaryPath"
|
||||
value="resource:/WSJ_8gau_13dCep_16k_40mel_130Hz_6800Hz/dict/cmudict.0.6d"/>
|
||||
<property name="fillerPath"
|
||||
value="resource:/WSJ_8gau_13dCep_16k_40mel_130Hz_6800Hz/noisedict"/>
|
||||
<property name="addSilEndingPronunciation" value="true"/>
|
||||
<property name="wordReplacement" value="<sil>"/>
|
||||
<property name="allowMissingWords" value="true"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
</component>
|
||||
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The acoustic model configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="wsj"
|
||||
type="edu.cmu.sphinx.linguist.acoustic.tiedstate.TiedStateAcousticModel">
|
||||
<property name="loader" value="wsjLoader"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
</component>
|
||||
|
||||
<component name="wsjLoader" type="edu.cmu.sphinx.linguist.acoustic.tiedstate.Sphinx3Loader">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
<property name="location" value="resource:/WSJ_8gau_13dCep_16k_40mel_130Hz_6800Hz"/>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The frontend configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="mfcFrontEnd" type="edu.cmu.sphinx.frontend.FrontEnd">
|
||||
<propertylist name="pipeline">
|
||||
<item>streamDataSource</item>
|
||||
<item>preemphasizer</item>
|
||||
<item>windower</item>
|
||||
<item>fft</item>
|
||||
<item>melFilterBank</item>
|
||||
<item>dct</item>
|
||||
<item>batchCMN</item>
|
||||
<item>featureExtraction</item>
|
||||
</propertylist>
|
||||
</component>
|
||||
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The live frontend configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
<component name="mfcLiveFrontEnd" type="edu.cmu.sphinx.frontend.FrontEnd">
|
||||
<propertylist name="pipeline">
|
||||
<item>concatDataSource</item>
|
||||
<item>speechClassifier</item>
|
||||
<item>speechMarker</item>
|
||||
<item>nonSpeechDataFilter</item>
|
||||
<item>preemphasizer</item>
|
||||
<item>windower</item>
|
||||
<item>fft</item>
|
||||
<item>melFilterBank</item>
|
||||
<item>dct</item>
|
||||
<item>liveCMN</item>
|
||||
<item>featureExtraction</item>
|
||||
</propertylist>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The unit manager configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="unitManager"
|
||||
type="edu.cmu.sphinx.linguist.acoustic.UnitManager"/>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The frontend pipelines -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="speechClassifier"
|
||||
type="edu.cmu.sphinx.frontend.endpoint.SpeechClassifier">
|
||||
<property name="threshold" value="16"/>
|
||||
</component>
|
||||
|
||||
<component name="nonSpeechDataFilter"
|
||||
type="edu.cmu.sphinx.frontend.endpoint.NonSpeechDataFilter"/>
|
||||
|
||||
<component name="speechMarker"
|
||||
type="edu.cmu.sphinx.frontend.endpoint.SpeechMarker">
|
||||
<property name="speechTrailer" value="50"/>
|
||||
</component>
|
||||
|
||||
|
||||
<component name="preemphasizer"
|
||||
type="edu.cmu.sphinx.frontend.filter.Preemphasizer"/>
|
||||
|
||||
<component name="windower"
|
||||
type="edu.cmu.sphinx.frontend.window.RaisedCosineWindower">
|
||||
</component>
|
||||
|
||||
<component name="fft"
|
||||
type="edu.cmu.sphinx.frontend.transform.DiscreteFourierTransform"/>
|
||||
|
||||
<component name="melFilterBank"
|
||||
type="edu.cmu.sphinx.frontend.frequencywarp.MelFrequencyFilterBank">
|
||||
</component>
|
||||
|
||||
<component name="dct"
|
||||
type="edu.cmu.sphinx.frontend.transform.DiscreteCosineTransform"/>
|
||||
|
||||
<component name="batchCMN"
|
||||
type="edu.cmu.sphinx.frontend.feature.BatchCMN"/>
|
||||
|
||||
<component name="liveCMN"
|
||||
type="edu.cmu.sphinx.frontend.feature.LiveCMN"/>
|
||||
|
||||
|
||||
<component name="featureExtraction"
|
||||
type="edu.cmu.sphinx.frontend.feature.DeltasFeatureExtractor"/>
|
||||
|
||||
<component name="streamDataSource"
|
||||
type="edu.cmu.sphinx.frontend.util.StreamDataSource">
|
||||
<property name="sampleRate" value="16000"/>
|
||||
</component>
|
||||
|
||||
<component name="concatDataSource"
|
||||
type="edu.cmu.sphinx.frontend.util.ConcatFileDataSource">
|
||||
<property name="sampleRate" value="16000"/>
|
||||
<property name="skip" value="${skip}"/>
|
||||
<property name="transcriptFile" value="reference.txt"/>
|
||||
<property name="silenceFile"
|
||||
value="/lab/speech/sphinx4/data/tidigits/test/raw16k/silence1sec.raw"/>
|
||||
<property name="bytesPerRead" value="320"/>
|
||||
<property name="batchFile" value="an4_words.batch"/>
|
||||
<property name="addRandomSilence" value="true"/>
|
||||
</component>
|
||||
|
||||
<component name="cepstrumSource"
|
||||
type="edu.cmu.sphinx.frontend.util.StreamCepstrumSource">
|
||||
<property name="sampleRate" value="16000"/>
|
||||
</component>
|
||||
|
||||
<component name="dataDumper"
|
||||
type="edu.cmu.sphinx.frontend.util.DataDumper"/>
|
||||
|
||||
<!-- ******************************************************* -->
|
||||
<!-- monitors -->
|
||||
<!-- ******************************************************* -->
|
||||
|
||||
<component name="accuracyTracker"
|
||||
type="edu.cmu.sphinx.instrumentation.BestPathAccuracyTracker">
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
<property name="showAlignedResults" value="false"/>
|
||||
<property name="showRawResults" value="false"/>
|
||||
</component>
|
||||
|
||||
<component name="rejectionTracker"
|
||||
type="edu.cmu.sphinx.instrumentation.RejectionTracker">
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
<property name="showSummary" value="true"/>
|
||||
<property name="showDetails" value="true"/>
|
||||
</component>
|
||||
|
||||
<component name="memoryTracker"
|
||||
type="edu.cmu.sphinx.instrumentation.MemoryTracker">
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
</component>
|
||||
|
||||
<component name="speedTracker"
|
||||
type="edu.cmu.sphinx.instrumentation.SpeedTracker">
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
<property name="frontend" value="${frontend}"/>
|
||||
</component>
|
||||
|
||||
<component name="recognizerMonitor"
|
||||
type="edu.cmu.sphinx.instrumentation.RecognizerMonitor">
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
<propertylist name="allocatedMonitors">
|
||||
<item>linguistStats</item>
|
||||
<item>configMonitor</item>
|
||||
</propertylist>
|
||||
</component>
|
||||
|
||||
<component name="configMonitor"
|
||||
type="edu.cmu.sphinx.instrumentation.ConfigMonitor">
|
||||
<property name="showConfig" value="false"/>
|
||||
</component>
|
||||
|
||||
<component name="linguistStats"
|
||||
type="edu.cmu.sphinx.linguist.util.LinguistStats">
|
||||
<property name="linguist" value="${linguist}"/>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************* -->
|
||||
<!-- Miscellaneous components -->
|
||||
<!-- ******************************************************* -->
|
||||
|
||||
<component name="logMath" type="edu.cmu.sphinx.util.LogMath">
|
||||
<property name="logBase" value="1.0001"/>
|
||||
<property name="useAddTable" value="true"/>
|
||||
</component>
|
||||
|
||||
</config>
|
||||
948
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_full.batch
Normal file
948
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_full.batch
Normal file
|
|
@ -0,0 +1,948 @@
|
|||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/an251-fash-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/an253-fash-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/an254-fash-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/an255-fash-b.raw u m n y h six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/cen1-fash-b.raw h i n i c h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/cen2-fash-b.raw a m y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/cen4-fash-b.raw m o r e w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/cen5-fash-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/cen7-fash-b.raw two six eight four four one eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/an86-fbbh-b.raw c z d z w eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/an87-fbbh-b.raw enter six two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/an88-fbbh-b.raw erase o t h f i five zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/an89-fbbh-b.raw rubout t g j w b seventy nine fifty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/an90-fbbh-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen1-fbbh-b.raw h o w e l l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen2-fbbh-b.raw b e v e r l y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen3-fbbh-b.raw fifty one fifty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen4-fbbh-b.raw p r i n c e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen5-fbbh-b.raw g i b s o n i a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen6-fbbh-b.raw one five oh four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen7-fbbh-b.raw four four three six three one two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen8-fbbh-b.raw march third nineteen twenty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/an146-fclc-b.raw n l n s one seventy five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/an147-fclc-b.raw q e e a six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/an148-fclc-b.raw erase o j t k s thirty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/an149-fclc-b.raw enter nine eighty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/an150-fclc-b.raw erase c k c w fourteen eighty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen1-fclc-b.raw c o n n e l l y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen2-fclc-b.raw c i n d y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen3-fclc-b.raw five five three five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen4-fclc-b.raw a y l e s b o r o
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen5-fclc-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen6-fclc-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen7-fclc-b.raw six eight seven five eight oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen8-fclc-b.raw june eleventh nineteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/an36-fejs-b.raw rubout c y r b seven eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/an37-fejs-b.raw erase j g q y eight six one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/an38-fejs-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/an39-fejs-b.raw g c d o four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/an40-fejs-b.raw z i r k six four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen1-fejs-b.raw s c a v i n c k y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen2-fejs-b.raw j e a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen3-fejs-b.raw one zero six five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen4-fejs-b.raw f i n d l e y d r i v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen5-fejs-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen6-fejs-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen7-fejs-b.raw two six eight three eight zero two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen8-fejs-b.raw two fifteen sixty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/an291-ffmm-b.raw enter five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/an292-ffmm-b.raw enter seventy eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/an293-ffmm-b.raw k l m u five two seven four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/an294-ffmm-b.raw h b g l seventy seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/an295-ffmm-b.raw v a d r thirty one oh seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen1-ffmm-b.raw m o d u g n o
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen2-ffmm-b.raw f r a n c e s m a r y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen3-ffmm-b.raw fifty six thirty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen4-ffmm-b.raw p h i l l i p s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen5-ffmm-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen6-ffmm-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen7-ffmm-b.raw four one two four two one eight eight nine six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen8-ffmm-b.raw september fifteenth nineteen sixty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/an76-fjam-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/an77-fjam-b.raw erase v x s x two four nine nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/an78-fjam-b.raw r q z h four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/an79-fjam-b.raw rubout j u i p three two eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/an80-fjam-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen1-fjam-b.raw m a r n e l l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen2-fjam-b.raw j u l i e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen3-fjam-b.raw seven fifty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen4-fjam-b.raw m e m o r y l a n e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen5-fjam-b.raw m c k e e s p o r t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen6-fjam-b.raw one five one three three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen7-fjam-b.raw six six four seven two nine three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen8-fjam-b.raw may twenty first nineteen sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an121-fjdn-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an122-fjdn-b.raw enter eight two four two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an123-fjdn-b.raw enter fifty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an124-fjdn-b.raw rubout o q i m i thirty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an125-fjdn-b.raw enter fifteen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen1-fjdn-b.raw n e l s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen2-fjdn-b.raw j e n n i f e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen3-fjdn-b.raw thirty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen4-fjdn-b.raw k u n t z
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen5-fjdn-b.raw b e r k e l e y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen6-fjdn-b.raw oh seven nine two two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen7-fjdn-b.raw two oh one four six four six oh eight three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen8-fjdn-b.raw march twentieth nineteen seventy
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/an10-fjmd-b.raw g two eighty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/an6-fjmd-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/an7-fjmd-b.raw o u four seven twenty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/an8-fjmd-b.raw b seven twenty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/an9-fjmd-b.raw j four thirty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen1-fjmd-b.raw d r a v k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen2-fjmd-b.raw j e a n e t t e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen3-fjmd-b.raw one ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen4-fjmd-b.raw s p r i n g h o u s e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen5-fjmd-b.raw w r i g h t s v i l l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen6-fjmd-b.raw one seven three six eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen7-fjmd-b.raw two five two two oh two nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen8-fjmd-b.raw eleven nine sixty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/an311-fkai-b.raw erase i s l f thirty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/an312-fkai-b.raw erase z y g n p eight hundred and twenty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/an313-fkai-b.raw erase t m a z x two thousand five hundred and fifty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/an314-fkai-b.raw a m s j seven thousand one hundred and eighty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/an315-fkai-b.raw enter fifty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen1-fkai-b.raw i v a r s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen2-fkai-b.raw k a r l a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen3-fkai-b.raw one thousand
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen4-fkai-b.raw m o r e w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen5-fkai-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen6-fkai-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen7-fkai-b.raw four four four seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen8-fkai-b.raw october first nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/an131-fkdo-b.raw rubout w l f x y seven oh six nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/an132-fkdo-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/an133-fkdo-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/an134-fkdo-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/an135-fkdo-b.raw rubout u t f f eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen1-fkdo-b.raw o l a c k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen2-fkdo-b.raw k a r e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen3-fkdo-b.raw two two nine three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen4-fkdo-b.raw a l m o n t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen5-fkdo-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen6-fkdo-b.raw one five two one oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen7-fkdo-b.raw eight eight two eight one oh two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen8-fkdo-b.raw five twenty six forty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an61-flmm2-b.raw enter seven oh three eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an62-flmm2-b.raw enter five zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an63-flmm2-b.raw enter five three four three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an64-flmm2-b.raw enter four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an65-flmm2-b.raw x g i c two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen1-flmm2-b.raw m a c a l u s o
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen2-flmm2-b.raw l i n d a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen3-flmm2-b.raw three four eight zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen4-flmm2-b.raw m e a d o w g a t e d r i v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen6-flmm2-b.raw one five six six eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen7-flmm2-b.raw three two seven one six nine five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen8-flmm2-b.raw thirty one j a n u a r y one nine seven zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/an21-flrp-b.raw s z k w w two thirty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/an2121-flrp-b.raw z c b e g seventy nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/an22-flrp-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/an23-flrp-b.raw rubout z y t l fifty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/an24-flrp-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/an25-flrp-b.raw rubout o g d e four seven five seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen1-flrp-b.raw p o m e r a n t z
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen2-flrp-b.raw l i n d a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen3-flrp-b.raw fifty one fifteen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen4-flrp-b.raw m a r g a r e t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen5-flrp-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen6-flrp-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen7-flrp-b.raw two six eight five nine five two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen8-flrp-b.raw three twenty seven sixty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/an116-fmjc-b.raw o a m j one five three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/an117-fmjc-b.raw rubout m n z l three seven seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/an118-fmjc-b.raw rubout j l y z two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/an119-fmjc-b.raw enter thirty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/an120-fmjc-b.raw rubout y y f x zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen1-fmjc-b.raw c e l l i o
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen2-fmjc-b.raw m o n i c a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen3-fmjc-b.raw five six one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen4-fmjc-b.raw h o b a r t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen5-fmjc-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen6-fmjc-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen7-fmjc-b.raw four two one oh four five one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen8-fmjc-b.raw nine twenty three sixty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/an191-fmjd-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/an192-fmjd-b.raw erase e o a c u three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/an193-fmjd-b.raw erase y b e j q five oh seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/an194-fmjd-b.raw p t q d q one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/an195-fmjd-b.raw i d m h seven eight five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen1-fmjd-b.raw d o w l i n g
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen2-fmjd-b.raw m a r y j o
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen3-fmjd-b.raw six five three four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen4-fmjd-b.raw d a l z e l l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen5-fmjd-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen6-fmjd-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen7-fmjd-b.raw four two one oh one nine six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen8-fmjd-b.raw seven fourteen sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/an181-fnsv-b.raw a v m u four forty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/an182-fnsv-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/an183-fnsv-b.raw o l k f five forty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/an184-fnsv-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/an185-fnsv-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen1-fnsv-b.raw v e c c h i
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen2-fnsv-b.raw n i c o l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen3-fnsv-b.raw fifty six oh five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen4-fnsv-b.raw e l l s w o r t h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen5-fnsv-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen6-fnsv-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen7-fnsv-b.raw six six one five zero six four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen8-fnsv-b.raw january fifteenth nineteen sixty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/an91-fplp-b.raw erase m y a m seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/an92-fplp-b.raw rubout n x f e eight nine six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/an93-fplp-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/an94-fplp-b.raw erase r b d k t fifty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/an95-fplp-b.raw rubout f m q n h three seventy
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen1-fplp-b.raw p o m e r a n t z
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen2-fplp-b.raw p h y l l i s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen3-fplp-b.raw one two four one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen4-fplp-b.raw e a r l f o r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen5-fplp-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen6-fplp-b.raw one five two two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen7-fplp-b.raw eight eight four one zero five seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen8-fplp-b.raw six seventeen thirty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/an296-fsaf2-b.raw v q d b forty nine hundred
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/an297-fsaf2-b.raw w c v y h seventy seven forty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/an298-fsaf2-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/an299-fsaf2-b.raw erase n t d i c five nine one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/an300-fsaf2-b.raw rubout s h k j five seven six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen1-fsaf2-b.raw f a r r e l l y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen2-fsaf2-b.raw s h e i l a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen3-fsaf2-b.raw one twenty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen4-fsaf2-b.raw t a n g l e w y l d e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen5-fsaf2-b.raw b r o n x v i l l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen6-fsaf2-b.raw one oh seven oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen7-fsaf2-b.raw nine one four three three seven one eight six nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen8-fsaf2-b.raw five sixteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/an166-fsrb-b.raw a a i l zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/an167-fsrb-b.raw enter forty seven forty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/an168-fsrb-b.raw rubout l d r w twenty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/an169-fsrb-b.raw enter sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/an170-fsrb-b.raw enter four fifty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen1-fsrb-b.raw b u r k s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen2-fsrb-b.raw s h a r o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen3-fsrb-b.raw thirty two thirty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen4-fsrb-b.raw a r a p a h o e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen5-fsrb-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen6-fsrb-b.raw one five two four one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen7-fsrb-b.raw four one two eight three one nine five one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen8-fsrb-b.raw december eighteenth nineteen forty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/an326-ftal-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/an327-ftal-b.raw enter seven seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/an328-ftal-b.raw j s p s z nine six nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/an329-ftal-b.raw b y v m eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/an330-ftal-b.raw enter two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen1-ftal-b.raw l e w i s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen2-ftal-b.raw t r a c y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen3-ftal-b.raw four oh three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen4-ftal-b.raw v a l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen5-ftal-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen6-ftal-b.raw one five two three nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen7-ftal-b.raw two six eight three zero two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen8-ftal-b.raw ten one sixty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/an211-ftmj-b.raw enter sixty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/an212-ftmj-b.raw l z r v fifty five thirty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/an213-ftmj-b.raw rubout p n a m x seventy two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/an214-ftmj-b.raw enter seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/an215-ftmj-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen1-ftmj-b.raw j e t t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen2-ftmj-b.raw t e r i n a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen3-ftmj-b.raw twenty two twenty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen4-ftmj-b.raw h a w t h o r n e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen5-ftmj-b.raw s w i s s v a l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen6-ftmj-b.raw one five two one eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen7-ftmj-b.raw two seven one zero eight two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen8-ftmj-b.raw july thirtieth nineteen sixty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/an221-fwxs-b.raw g l l k h one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/an222-fwxs-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/an223-fwxs-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/an224-fwxs-b.raw j v p e eight seven zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/an225-fwxs-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen1-fwxs-b.raw s a t t e r f i e l d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen2-fwxs-b.raw w h i t n e y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen3-fwxs-b.raw two ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen4-fwxs-b.raw o r c h a r d p l a c e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen5-fwxs-b.raw s e w i c k l e y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen6-fwxs-b.raw one five one four three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen7-fwxs-b.raw seven four one oh five nine two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/an371-mblb-b.raw erase i g n m forty three seventeen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/an372-mblb-b.raw rubout e u j o ninety five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/an373-mblb-b.raw k w z a g two hundred and sixty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/an374-mblb-b.raw enter thirty eight sixty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/an375-mblb-b.raw enter forty three forty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen1-mblb-b.raw b r u m i t t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen2-mblb-b.raw b a r r y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen3-mblb-b.raw one ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen4-mblb-b.raw m i d w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen5-mblb-b.raw w a t e r b u r y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen6-mblb-b.raw oh six seven oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen7-mblb-b.raw two oh three seven five seven eight eight nine nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen8-mblb-b.raw july twelfth nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/an1-mblw-b.raw x i sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/an2-mblw-b.raw z eight oh two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/an3-mblw-b.raw enter sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/an4-mblw-b.raw enter seventy two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/an5-mblw-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen1-mblw-b.raw w e i d e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen2-mblw-b.raw r o b e r t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen3-mblw-b.raw forty three twenty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen4-mblw-b.raw l u d w i c k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen5-mblw-b.raw p g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen6-mblw-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen7-mblw-b.raw four two two oh eight one six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen8-mblw-b.raw one sixteen forty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/an266-mbmg-b.raw enter fifty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/an267-mbmg-b.raw s u o u eighty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/an268-mbmg-b.raw erase s v n y ten ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/an269-mbmg-b.raw rubout c h y d d oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/an270-mbmg-b.raw enter one forty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen1-mbmg-b.raw g o t t i e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen2-mbmg-b.raw b r i a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen3-mbmg-b.raw three oh one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen4-mbmg-b.raw p a r k r o a d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen5-mbmg-b.raw d o w n i n g t o w n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen6-mbmg-b.raw one nine three three five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen7-mbmg-b.raw two one five four five eight five four six nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen8-mbmg-b.raw september twenty seventh nineteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an201-mcel-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an202-mcel-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an203-mcel-b.raw enter eight one nine six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an204-mcel-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an205-mcel-b.raw rubout f y n p ninety seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen1-mcel-b.raw l a m p s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen2-mcel-b.raw c l a r k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen3-mcel-b.raw six three eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen4-mcel-b.raw g a r l a n d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen5-mcel-b.raw s u n n y v a l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen6-mcel-b.raw nine four oh eight six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen8-mcel-b.raw twelve nine of sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an126-mcen-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an127-mcen-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an128-mcen-b.raw rubout i t d k m four seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an129-mcen-b.raw enter sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an130-mcen-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen1-mcen-b.raw n e w e l l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen2-mcen-b.raw c h r i s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen3-mcen-b.raw fifty eight oh nine and a half
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen4-mcen-b.raw h o b a r t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen5-mcen-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen6-mcen-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen7-mcen-b.raw five two one sixty fifty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen8-mcen-b.raw three fourteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/an261-mcfl-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/an262-mcfl-b.raw i p a c f two five eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/an263-mcfl-b.raw rubout i r d d j one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/an264-mcfl-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/an265-mcfl-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen1-mcfl-b.raw f e d o r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen2-mcfl-b.raw c h r i s t o p h e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen3-mcfl-b.raw one four eight two three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen4-mcfl-b.raw l o n g v i e w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen5-mcfl-b.raw n e w b u r y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen6-mcfl-b.raw four four oh six five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen7-mcfl-b.raw six four five three three six four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen8-mcfl-b.raw eight fourteen sixty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an141-mcrt-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an142-mcrt-b.raw enter ninety four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an143-mcrt-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an144-mcrt-b.raw rubout f b m j seven ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an145-mcrt-b.raw enter six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen1-mcrt-b.raw t a y l o r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen2-mcrt-b.raw r o y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen3-mcrt-b.raw three oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen4-mcrt-b.raw h a s t i n g s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen5-mcrt-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen6-mcrt-b.raw one five two oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen7-mcrt-b.raw three six three oh nine six two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen8-mcrt-b.raw seven may nineteen forty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an231-mcsc-b.raw enter five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an232-mcsc-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an233-mcsc-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an234-mcsc-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an235-mcsc-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen1-mcsc-b.raw c a l i g i u r i
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen2-mcsc-b.raw c h a r l e s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen3-mcsc-b.raw one zero zero six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen4-mcsc-b.raw t r e n t o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen5-mcsc-b.raw p g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen6-mcsc-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen7-mcsc-b.raw seven three one one three three eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen8-mcsc-b.raw three twelve fifty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/an241-mdcs-b.raw enter fifty sixty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/an242-mdcs-b.raw v w a b w two fourteen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/an243-mdcs-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/an244-mdcs-b.raw l r r k i four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/an245-mdcs-b.raw rubout u f z z sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen1-mdcs-b.raw s t e e r e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen2-mdcs-b.raw d a v i d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen3-mdcs-b.raw sixty three sixty four and a half
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen4-mdcs-b.raw f o r w a r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen5-mdcs-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen6-mdcs-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen7-mdcs-b.raw four one two four two two three five seven eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen8-mdcs-b.raw august sixteenth nineteen sixty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/an111-mdcs2-b.raw p u x p i five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/an112-mdcs2-b.raw f y z o two two two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/an113-mdcs2-b.raw rubout h a x x n six seven nine one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/an114-mdcs2-b.raw l r l y u seven three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/an115-mdcs2-b.raw rubout o k t l e two eight one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen1-mdcs2-b.raw s n o w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen2-mdcs2-b.raw d o n a l d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen3-mdcs2-b.raw fourteen fourteen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen4-mdcs2-b.raw s o u t h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen5-mdcs2-b.raw p i t t s b u r g
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen6-mdcs2-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen7-mdcs2-b.raw four two one six two eight three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen8-mdcs2-b.raw september first nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/an206-mdmc-b.raw rubout z o t f two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/an207-mdmc-b.raw rubout h f d w q six two two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/an208-mdmc-b.raw rubout n b a k ninety six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/an209-mdmc-b.raw r g c s seven sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/an210-mdmc-b.raw rubout z g d r g nine nine four six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen1-mdmc-b.raw c a r r e l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen2-mdmc-b.raw d a v i d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen3-mdmc-b.raw five ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen4-mdmc-b.raw h i g h l a n d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen5-mdmc-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen6-mdmc-b.raw one five two oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen7-mdmc-b.raw three six one zero one five five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen8-mdmc-b.raw ninth of september nineteen sixty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/an106-mdxn-b.raw enter zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/an107-mdxn-b.raw t v a h fifty two fifty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/an108-mdxn-b.raw enter forty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/an109-mdxn-b.raw b v i q g eighty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/an110-mdxn-b.raw enter sixty two thirty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen1-mdxn-b.raw n o o n b u r g
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen2-mdxn-b.raw d e r e k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen3-mdxn-b.raw one oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen4-mdxn-b.raw c o n c o r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen5-mdxn-b.raw i t h a c a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen6-mdxn-b.raw one four eight five oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen7-mdxn-b.raw two six eight four one six one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen8-mdxn-b.raw seven fifteen nineteen seventy
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an26-mdxs-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an27-mdxs-b.raw x h b a c five three four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an28-mdxs-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an29-mdxs-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an30-mdxs-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen1-mdxs-b.raw s t o d o l s k y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen2-mdxs-b.raw d a n i e l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen3-mdxs-b.raw three seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen4-mdxs-b.raw b o u q u e t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen5-mdxs-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen6-mdxs-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen7-mdxs-b.raw four one two six eight seven eight eight seven one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen8-mdxs-b.raw july twenty nine nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/an136-meab-b.raw erase w e s f twenty four oh three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/an137-meab-b.raw rubout g u k e v nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/an138-meab-b.raw j z a p seventeen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/an139-meab-b.raw enter eight thirty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/an140-meab-b.raw rubout r e f v s one five three three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen1-meab-b.raw b l a c k w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen2-meab-b.raw e d w i n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen3-meab-b.raw three one two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen4-meab-b.raw b r a d d o c k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen5-meab-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen6-meab-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen7-meab-b.raw four one two two four two six six two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen8-meab-b.raw six sixteen sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an66-meht-b.raw enter four thousand eight hundred eighty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an67-meht-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an68-meht-b.raw f e g b forty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an69-meht-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an70-meht-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen1-meht-b.raw t h a y e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen2-meht-b.raw e r i c
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen3-meht-b.raw fifty six sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen4-meht-b.raw b e a c o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen5-meht-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen6-meht-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen7-meht-b.raw four one two five two one two eight two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen8-meht-b.raw four seven sixty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/an286-mema-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/an287-mema-b.raw r h h u f two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/an288-mema-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/an289-mema-b.raw enter nine eight nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/an290-mema-b.raw n g n n three nine nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen1-mema-b.raw a l t m a n n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen2-mema-b.raw e r i k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen3-mema-b.raw seven three zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen4-mema-b.raw e a s t e n d a v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen5-mema-b.raw p g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen6-mema-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen7-mema-b.raw two four three eight three two eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen8-mema-b.raw f e b one eight one nine six four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/an256-mewl-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/an257-mewl-b.raw rubout h w o n j four thousand seven hundred twenty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/an258-mewl-b.raw enter fourteen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/an259-mewl-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/an260-mewl-b.raw b a i q w eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen1-mewl-b.raw l e u l i e t t e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen2-mewl-b.raw e r i c
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen3-mewl-b.raw b o x eight oh seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen4-mewl-b.raw five one one five m a r g a r e t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen5-mewl-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen6-mewl-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen7-mewl-b.raw two six eight four six five eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen8-mewl-b.raw twelve four sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/an161-mfaa-b.raw h p d f t sixty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/an162-mfaa-b.raw erase j n r g forty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/an163-mfaa-b.raw enter ninety eight twenty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/an164-mfaa-b.raw x e d v seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/an165-mfaa-b.raw y f j k two eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen1-mfaa-b.raw a l l e v a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen2-mfaa-b.raw f i l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen3-mfaa-b.raw five six three one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen4-mfaa-b.raw w i l k i n s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen5-mfaa-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen6-mfaa-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen7-mfaa-b.raw five two one oh two six eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen8-mfaa-b.raw ten thirty one fifty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an196-mgah-b.raw enter seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an197-mgah-b.raw enter four twenty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an198-mgah-b.raw enter one ninety six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an199-mgah-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an200-mgah-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen1-mgah-b.raw h o y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen2-mgah-b.raw g l e n n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen3-mgah-b.raw one two zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen4-mgah-b.raw r u s k i n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen5-mgah-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen6-mgah-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen7-mgah-b.raw six eight three five zero four one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen8-mgah-b.raw august twenty second nineteen sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an246-mjbh-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an247-mjbh-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an248-mjbh-b.raw x z i v y one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an249-mjbh-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an250-mjbh-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen1-mjbh-b.raw h a m p s h i r e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen2-mjbh-b.raw j o h n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen3-mjbh-b.raw five six four zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen4-mjbh-b.raw e l g i n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen5-mjbh-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen6-mjbh-b.raw one five two zero six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen7-mjbh-b.raw two six eight three zero six six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen8-mjbh-b.raw seven twenty nine fifty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/an171-mjda-b.raw rubout u g a m thirty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/an172-mjda-b.raw enter eight seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/an173-mjda-b.raw rubout c t l e seventy six twelve
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/an174-mjda-b.raw enter five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/an175-mjda-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen1-mjda-b.raw a s p n e s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen2-mjda-b.raw j a m e s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen3-mjda-b.raw seven thirty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen4-mjda-b.raw e a s t e n d a v e n u e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen5-mjda-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen6-mjda-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen7-mjda-b.raw two six eight three oh five four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen8-mjda-b.raw january twelfth nineteen sixty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/an16-mjdr-b.raw e m b z six eight six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/an18-mjdr-b.raw enter four fifty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/an19-mjdr-b.raw rubout o h g p d two nine seven six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/an20-mjdr-b.raw a t t g k eighty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen1-mjdr-b.raw r o s e n f e l d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen2-mjdr-b.raw j e f f
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen3-mjdr-b.raw four seven two zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen4-mjdr-b.raw c e n t r e a v e n u e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen5-mjdr-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen6-mjdr-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen7-mjdr-b.raw four one two six eight one one eight four two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen8-mjdr-b.raw oh six oh seven six six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/an156-mjes-b.raw erase q k x y u one sixty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/an157-mjes-b.raw enter thirty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/an158-mjes-b.raw rubout v e w z seven seventy two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/an159-mjes-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/an160-mjes-b.raw j c h e q fifty eight thousand nine thirty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen1-mjes-b.raw s w a r t z
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen2-mjes-b.raw j o n a t h a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen3-mjes-b.raw thirty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen4-mjes-b.raw e a s t eighty fifth s t r e e t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen5-mjes-b.raw n e w y o r k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen6-mjes-b.raw one oh oh two eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen7-mjes-b.raw two one two five seven oh two seven eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen8-mjes-b.raw august twenty second nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an216-mjgk-b.raw v e r k e thirty five thirty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an217-mjgk-b.raw enter eight seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an218-mjgk-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an219-mjgk-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an220-mjgk-b.raw enter three eighty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen1-mjgk-b.raw k e a n e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen2-mjgk-b.raw j o s e p h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen4-mjgk-b.raw s p r i n g h o u s e l a n e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen5-mjgk-b.raw o apostrophe h a r a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen6-mjgk-b.raw one five two three eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen7-mjgk-b.raw four two two two oh eight nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen8-mjgk-b.raw june twenty third nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/an56-mjhp-b.raw erase x b m n t four one oh nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/an57-mjhp-b.raw f k a u two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/an58-mjhp-b.raw erase e x x s zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/an59-mjhp-b.raw a g l g a six four nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/an60-mjhp-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen1-mjhp-b.raw p o l i f r o n i
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen2-mjhp-b.raw j o s e p h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen3-mjhp-b.raw one five three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen4-mjhp-b.raw a s b u r y p l a c e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen5-mjhp-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen6-mjhp-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen7-mjhp-b.raw four one two five two one eight two six oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen8-mjhp-b.raw seven seventeen fifty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/an176-mjjs2-b.raw v l c z twenty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/an177-mjjs2-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/an178-mjjs2-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/an179-mjjs2-b.raw erase q e j q t seventy seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/an180-mjjs2-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen1-mjjs2-b.raw s k e e s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen2-mjjs2-b.raw j a m e s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen4-mjjs2-b.raw a m p e r e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen5-mjjs2-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen6-mjjs2-b.raw one five two zero seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen7-mjjs2-b.raw four two two zero seven nine one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen8-mjjs2-b.raw february eighth nineteen fifty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/an316-mkdb-b.raw d s k u four five oh five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/an317-mkdb-b.raw enter seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/an318-mkdb-b.raw enter four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/an319-mkdb-b.raw rubout r z r v z ninety eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/an320-mkdb-b.raw e z a k o eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen1-mkdb-b.raw b e c h t e l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen2-mkdb-b.raw k a r l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen3-mkdb-b.raw fifty seven fourteen a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen4-mkdb-b.raw b e a c o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen5-mkdb-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen6-mkdb-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen7-mkdb-b.raw five two one four nine five four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen8-mkdb-b.raw march twenty fifth nineteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/an186-mkem-b.raw erase v r f o five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/an187-mkem-b.raw enter one thirty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/an188-mkem-b.raw u s i q n seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/an189-mkem-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/an190-mkem-b.raw rubout u j m k nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen1-mkem-b.raw m o h n k e r n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen2-mkem-b.raw k e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen4-mkem-b.raw c m u
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen5-mkem-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen6-mkem-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen7-mkem-b.raw three oh eight five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen8-mkem-b.raw may ninth sixty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/an51-mmaf-b.raw v f o f h nine four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/an52-mmaf-b.raw enter seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/an53-mmaf-b.raw erase b m e e three five two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/an54-mmaf-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/an55-mmaf-b.raw enter ninety five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen1-mmaf-b.raw f r a n z i n i
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen2-mmaf-b.raw m i c h a e l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen3-mmaf-b.raw five two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen4-mmaf-b.raw s u m m e r l e a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen5-mmaf-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen6-mmaf-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen7-mmaf-b.raw four four one one seven two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen8-mmaf-b.raw september sixth nineteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/an321-mmal-b.raw m m v q d one eight seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/an322-mmal-b.raw rubout t b p b six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/an323-mmal-b.raw enter two oh five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/an324-mmal-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/an325-mmal-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen1-mmal-b.raw l u b i n s k i
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen2-mmal-b.raw m a r k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen3-mmal-b.raw fifty three forty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen4-mmal-b.raw b e e l e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen5-mmal-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen6-mmal-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen7-mmal-b.raw six eight one seven seven five two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen8-mmal-b.raw ten twelve sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/an46-mmap-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/an47-mmap-b.raw enter seven two one six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/an48-mmap-b.raw enter one nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/an49-mmap-b.raw n h o t q two eight three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/an50-mmap-b.raw p t k x zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen1-mmap-b.raw p u s k a r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen2-mmap-b.raw m a r k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen3-mmap-b.raw six thirty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen4-mmap-b.raw b r o a d h e a d r o a d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen5-mmap-b.raw c r a f t o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen6-mmap-b.raw one five two oh five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen7-mmap-b.raw nine two two seven two two zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen8-mmap-b.raw twelve twenty one fifty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an336-mmdg-b.raw g a b h two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an337-mmdg-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an338-mmdg-b.raw enter six one two five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an339-mmdg-b.raw enter two five four six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an340-mmdg-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen1-mmdg-b.raw g r o s s m a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen2-mmdg-b.raw m i c h a e l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen3-mmdg-b.raw six three two three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen4-mmdg-b.raw d o u g l a s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen5-mmdg-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen6-mmdg-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen7-mmdg-b.raw four one two five two one five three three nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen8-mmdg-b.raw two twenty four forty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/an361-mmkw-b.raw o a w f five nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/an362-mmkw-b.raw v k z o sixty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/an363-mmkw-b.raw rubout d q t w x five hundred eighty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/an364-mmkw-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/an365-mmkw-b.raw b j x k twenty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/an59-mmkw-b.raw a g l g a six hundred forty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen1-mmkw-b.raw w i l l i a m s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen2-mmkw-b.raw m a t t h e w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen3-mmkw-b.raw three two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen4-mmkw-b.raw p i n e h u r s t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen5-mmkw-b.raw m a u l d i n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen6-mmkw-b.raw two nine six six two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen7-mmkw-b.raw eight oh three two three four five nine seven two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen8-mmkw-b.raw eighteen february nineteen seventy
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/an381-mmsh-b.raw rubout f x c w n four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/an382-mmsh-b.raw rubout e z u a i fifteen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/an383-mmsh-b.raw enter sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/an384-mmsh-b.raw rubout n z x l thirty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/an385-mmsh-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen1-mmsh-b.raw h o f f r i c h t e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen2-mmsh-b.raw m a r k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen3-mmsh-b.raw three four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen4-mmsh-b.raw f i f t h a v e n u e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen5-mmsh-b.raw b r o o m a l l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen6-mmsh-b.raw one nine oh oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen7-mmsh-b.raw six eight three one five five eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen8-mmsh-b.raw april thirtieth nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/an386-mmtm-b.raw enter six four five one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/an387-mmtm-b.raw y w a a m two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/an388-mmtm-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/an389-mmtm-b.raw rubout x c z t p four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/an390-mmtm-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen1-mmtm-b.raw m a s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen2-mmtm-b.raw m a t t h e w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen3-mmtm-b.raw one eleven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen4-mmtm-b.raw o l d b a r n d r i v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen5-mmtm-b.raw v e r o n a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen6-mmtm-b.raw one five one four seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen7-mmtm-b.raw seven nine three five four two nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen8-mmtm-b.raw august twenty fourth nineteen fifty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/an346-mnfe-b.raw erase o t e b seventy nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/an347-mnfe-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/an348-mnfe-b.raw enter eight twenty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/an349-mnfe-b.raw rubout r r n a a ninety four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/an350-mnfe-b.raw enter three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen1-mnfe-b.raw e f r o m
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen2-mnfe-b.raw n e i l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen3-mnfe-b.raw ten seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen4-mnfe-b.raw m o r e w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen5-mnfe-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen6-mnfe-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen7-mnfe-b.raw two six eight five five two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen8-mnfe-b.raw four twenty eight seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/an81-mnjl-b.raw enter eighty nine forty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/an82-mnjl-b.raw rubout t j j c l two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/an83-mnjl-b.raw enter six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/an84-mnjl-b.raw enter seven thirty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/an85-mnjl-b.raw rubout a d e u y three sixty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen1-mnjl-b.raw l o o f b o u r r o w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen2-mnjl-b.raw n a t h a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen3-mnjl-b.raw one thousand
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen5-mnjl-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen6-mnjl-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen7-mnjl-b.raw four one two two six eight four four seven four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen8-mnjl-b.raw twelve nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/an71-mrab-b.raw g e e p c seven one oh seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/an72-mrab-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/an73-mrab-b.raw enter two oh seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/an74-mrab-b.raw rubout q q q p forty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/an75-mrab-b.raw erase c b j v c thirty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen1-mrab-b.raw b r e n n a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen2-mrab-b.raw r o b e r t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen3-mrab-b.raw one twenty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen4-mrab-b.raw o a k d a l e d r i v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen5-mrab-b.raw z e l i e n o p l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen6-mrab-b.raw one six oh six three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen7-mrab-b.raw four five two eight five one eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen8-mrab-b.raw three twenty eight sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/an101-mrcb-b.raw r e w y eight five six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/an102-mrcb-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/an103-mrcb-b.raw erase g h x w five zero four eight two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/an104-mrcb-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/an105-mrcb-b.raw enter eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen1-mrcb-b.raw b r o s t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen2-mrcb-b.raw r a n d y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen3-mrcb-b.raw one two five two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen4-mrcb-b.raw n e g l e y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen5-mrcb-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen6-mrcb-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen7-mrcb-b.raw area code four one two four two two one two two five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen8-mrcb-b.raw october thirtieth nineteen sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an236-mrjc2-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an237-mrjc2-b.raw enter seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an238-mrjc2-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an239-mrjc2-b.raw d y m h r sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an240-mrjc2-b.raw enter nine seventy two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen1-mrjc2-b.raw c l o u t i e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen2-mrjc2-b.raw r i c h a r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen3-mrjc2-b.raw sixty seven ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen4-mrjc2-b.raw f e n n i m o r e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen5-mrjc2-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen6-mrjc2-b.raw one five two oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen7-mrjc2-b.raw six six five nine six six five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen8-mrjc2-b.raw five two five five five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/an281-mrmg-b.raw enter two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/an282-mrmg-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/an283-mrmg-b.raw rubout m d m t g nine six seven oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/an284-mrmg-b.raw enter six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/an285-mrmg-b.raw rubout n a f k v thirty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen1-mrmg-b.raw g r e e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen2-mrmg-b.raw r i c h a r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen3-mrmg-b.raw one oh two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen4-mrmg-b.raw e a s t e n d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen5-mrmg-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen6-mrmg-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen7-mrmg-b.raw two four two two nine one two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen8-mrmg-b.raw one seven forty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/an356-mscg2-b.raw enter fifty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/an357-mscg2-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/an358-mscg2-b.raw rubout v a n b x nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/an359-mscg2-b.raw p o u n b five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/an360-mscg2-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen1-mscg2-b.raw g i b b s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen2-mscg2-b.raw s t e v e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen3-mscg2-b.raw five one one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen4-mscg2-b.raw m a r g a r e t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen5-mscg2-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen6-mscg2-b.raw one five two two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen7-mscg2-b.raw two six eight four six seven eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen8-mscg2-b.raw three eleven sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/an341-msct-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/an342-msct-b.raw erase w f s o l eight four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/an343-msct-b.raw enter twenty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/an344-msct-b.raw erase a l h n c thirty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/an345-msct-b.raw erase v y w l r seven zero one one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen1-msct-b.raw t i m m
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen2-msct-b.raw s t e v e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen3-msct-b.raw five one nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen4-msct-b.raw s e m p l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen5-msct-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen6-msct-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen7-msct-b.raw six eight three three seven eight zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen8-msct-b.raw nine thirty sixty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/an226-msjm-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/an227-msjm-b.raw f i y q fifty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/an228-msjm-b.raw erase g w d k f six eighty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/an229-msjm-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/an230-msjm-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen1-msjm-b.raw m a h o n e y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen2-msjm-b.raw s t e p h e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen3-msjm-b.raw one two two two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen4-msjm-b.raw m a p l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen5-msjm-b.raw g l e n s h a w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen6-msjm-b.raw one five one one six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen7-msjm-b.raw four eight six three nine five oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen8-msjm-b.raw twelve twenty four sixty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/an351-msjr-b.raw j h b x three zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/an352-msjr-b.raw enter two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/an353-msjr-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/an354-msjr-b.raw rubout w p f j d two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/an355-msjr-b.raw enter six seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen1-msjr-b.raw r o z e v e l d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen2-msjr-b.raw s t e v e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen3-msjr-b.raw eight forty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen4-msjr-b.raw f i f t h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen5-msjr-b.raw v e r o n a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen6-msjr-b.raw one five one four seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen7-msjr-b.raw eight two six eight six eight seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen8-msjr-b.raw one thirty one sixty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an100-mskh-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an96-mskh-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an97-mskh-b.raw enter seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an98-mskh-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an99-mskh-b.raw h k t e d one seventy
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen1-mskh-b.raw h a n d e r s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen2-mskh-b.raw s t e v e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen3-mskh-b.raw six zero one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen4-mskh-b.raw five t h a v e n u e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen5-mskh-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen6-mskh-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen7-mskh-b.raw six six one nine eight eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen8-mskh-b.raw six twenty six sixty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/an276-msmn-b.raw g w n l l nine four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/an277-msmn-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/an278-msmn-b.raw rubout q n r a j seven four eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/an279-msmn-b.raw q c j k eight five eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/cen4-msmn-b.raw b u r c h f e i l d a v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/cen5-msmn-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/cen6-msmn-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/cen7-msmn-b.raw four one two four two two nine eight two eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/cen8-msmn-b.raw s e p t e m b e r one two one nine five nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/an331-msrb-b.raw enter nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/an332-msrb-b.raw rubout g j h g v seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/an333-msrb-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/an334-msrb-b.raw n n p u five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/an335-msrb-b.raw enter seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen1-msrb-b.raw b r o w n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen2-msrb-b.raw s t e v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen3-msrb-b.raw one three six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen4-msrb-b.raw p a t t e r s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen5-msrb-b.raw c a r n e g i e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen6-msrb-b.raw one five one oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen7-msrb-b.raw two seven nine two three two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen8-msrb-b.raw six three sixty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/an301-mtcv-b.raw rubout u t d a two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/an302-mtcv-b.raw rubout m v o o forty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/an303-mtcv-b.raw erase k j z f m fifty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/an304-mtcv-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/an305-mtcv-b.raw enter eight zero six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen1-mtcv-b.raw v a n d e r l a a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen2-mtcv-b.raw t o m
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen3-mtcv-b.raw eight four six seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen4-mtcv-b.raw s l e e p y h o l l o w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen5-mtcv-b.raw w a r r e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen6-mtcv-b.raw four four four eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen7-mtcv-b.raw eight five six one four nine zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen8-mtcv-b.raw one two seven six three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/an31-mtje-b.raw erase s s w z nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/an32-mtje-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/an33-mtje-b.raw erase f h b k z sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/an34-mtje-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/an35-mtje-b.raw h z a e three seven five one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen1-mtje-b.raw e w a l d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen2-mtje-b.raw t i m o t h y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen3-mtje-b.raw four oh one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen4-mtje-b.raw c e n t r e a v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen5-mtje-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen6-mtje-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen7-mtje-b.raw four one two six eight seven nine five two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen8-mtje-b.raw ten twenty eight sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/an366-mtos-b.raw m f g i k two sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/an367-mtos-b.raw s f q q k six thousand eight hundred and eighty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/an368-mtos-b.raw h q f x four thousand three hundred and eighty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/an369-mtos-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/an370-mtos-b.raw rubout n a g k k three thirty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen1-mtos-b.raw s m i t h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen2-mtos-b.raw t h o m a s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen3-mtos-b.raw m g e four oh two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen4-mtos-b.raw m o r e w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen5-mtos-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen6-mtos-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen7-mtos-b.raw four eight four two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen8-mtos-b.raw twelve ten sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an376-mtxj-b.raw enter five two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an377-mtxj-b.raw rubout j b x r z nine twenty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an378-mtxj-b.raw enter sixty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an379-mtxj-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an380-mtxj-b.raw enter six oh eight oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen1-mtxj-b.raw j o h n s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen2-mtxj-b.raw t h a d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen3-mtxj-b.raw one hundred
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen4-mtxj-b.raw s a y b r o o k h a r b o r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen5-mtxj-b.raw b r a d f o r d w o o d s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen6-mtxj-b.raw one five oh one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen7-mtxj-b.raw nine three five oh six nine two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen8-mtxj-b.raw october twenty third nineteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/an151-mwhw-b.raw h a h l e four ninety one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/an152-mwhw-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/an153-mwhw-b.raw y d n e d forty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/an154-mwhw-b.raw rubout p o o b eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/an155-mwhw-b.raw enter sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen1-mwhw-b.raw w a r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen2-mwhw-b.raw w a y n e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen3-mwhw-b.raw one fifty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen4-mwhw-b.raw b u c k w h e a t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen5-mwhw-b.raw g i b s o n i a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen6-mwhw-b.raw one five oh four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen7-mwhw-b.raw six two five one five six four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen8-mwhw-b.raw eleven seventeen fifty one
|
||||
1606
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_full.bigram.fst
Normal file
1606
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_full.bigram.fst
Normal file
File diff suppressed because it is too large
Load diff
1680
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_full.bigram.lm
Normal file
1680
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_full.bigram.lm
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,307 @@
|
|||
#FSTBasic MinPlus
|
||||
I 2
|
||||
F 0 4.6351
|
||||
T 0 1 <unknown> <unknown> 4.61484
|
||||
T 0 4 a a 4.61484
|
||||
T 0 5 and and 4.61484
|
||||
T 0 6 apostrophe apostrophe 4.61484
|
||||
T 0 7 april april 4.61484
|
||||
T 0 8 area area 4.61484
|
||||
T 0 9 august august 4.61484
|
||||
T 0 10 b b 4.61484
|
||||
T 0 11 c c 4.61484
|
||||
T 0 12 code code 4.61484
|
||||
T 0 13 d d 4.61484
|
||||
T 0 14 december december 4.61484
|
||||
T 0 15 e e 4.61484
|
||||
T 0 16 eight eight 4.61484
|
||||
T 0 17 eighteen eighteen 4.61484
|
||||
T 0 18 eighteenth eighteenth 4.61484
|
||||
T 0 19 eighth eighth 4.61484
|
||||
T 0 20 eighty eighty 4.61484
|
||||
T 0 21 eleven eleven 4.61484
|
||||
T 0 22 eleventh eleventh 4.61484
|
||||
T 0 23 enter enter 4.61484
|
||||
T 0 24 erase erase 4.61484
|
||||
T 0 25 f f 4.61484
|
||||
T 0 26 february february 4.61484
|
||||
T 0 27 fifteen fifteen 4.61484
|
||||
T 0 28 fifteenth fifteenth 4.61484
|
||||
T 0 29 fifth fifth 4.61484
|
||||
T 0 30 fifty fifty 4.61484
|
||||
T 0 31 first first 4.61484
|
||||
T 0 32 five five 4.61484
|
||||
T 0 33 forty forty 4.61484
|
||||
T 0 34 four four 4.61484
|
||||
T 0 35 fourteen fourteen 4.61484
|
||||
T 0 36 fourth fourth 4.61484
|
||||
T 0 37 g g 4.61484
|
||||
T 0 38 go go 4.61484
|
||||
T 0 39 h h 4.61484
|
||||
T 0 40 half half 4.61484
|
||||
T 0 41 help help 4.61484
|
||||
T 0 42 hundred hundred 4.61484
|
||||
T 0 43 i i 4.61484
|
||||
T 0 44 j j 4.61484
|
||||
T 0 45 january january 4.61484
|
||||
T 0 46 july july 4.61484
|
||||
T 0 47 june june 4.61484
|
||||
T 0 48 k k 4.61484
|
||||
T 0 49 l l 4.61484
|
||||
T 0 50 m m 4.61484
|
||||
T 0 51 march march 4.61484
|
||||
T 0 52 may may 4.61484
|
||||
T 0 53 n n 4.61484
|
||||
T 0 54 nine nine 4.61484
|
||||
T 0 55 nineteen nineteen 4.61484
|
||||
T 0 56 ninety ninety 4.61484
|
||||
T 0 57 ninth ninth 4.61484
|
||||
T 0 58 no no 4.61484
|
||||
T 0 59 o o 4.61484
|
||||
T 0 60 october october 4.61484
|
||||
T 0 61 of of 4.61484
|
||||
T 0 62 oh oh 4.61484
|
||||
T 0 63 one one 4.61484
|
||||
T 0 64 p p 4.61484
|
||||
T 0 65 q q 4.61484
|
||||
T 0 66 r r 4.61484
|
||||
T 0 67 repeat repeat 4.61484
|
||||
T 0 68 rubout rubout 4.61484
|
||||
T 0 69 s s 4.61484
|
||||
T 0 70 second second 4.61484
|
||||
T 0 71 september september 4.61484
|
||||
T 0 72 seven seven 4.61484
|
||||
T 0 73 seventeen seventeen 4.61484
|
||||
T 0 74 seventh seventh 4.61484
|
||||
T 0 75 seventy seventy 4.61484
|
||||
T 0 76 six six 4.61484
|
||||
T 0 77 sixteen sixteen 4.61484
|
||||
T 0 78 sixteenth sixteenth 4.61484
|
||||
T 0 79 sixth sixth 4.61484
|
||||
T 0 80 sixty sixty 4.61484
|
||||
T 0 81 start start 4.61484
|
||||
T 0 82 stop stop 4.61484
|
||||
T 0 83 t t 4.61484
|
||||
T 0 84 ten ten 4.61484
|
||||
T 0 85 third third 4.61484
|
||||
T 0 86 thirtieth thirtieth 4.61484
|
||||
T 0 87 thirty thirty 4.61484
|
||||
T 0 88 thousand thousand 4.61484
|
||||
T 0 89 three three 4.61484
|
||||
T 0 90 twelfth twelfth 4.61484
|
||||
T 0 91 twelve twelve 4.61484
|
||||
T 0 92 twentieth twentieth 4.61484
|
||||
T 0 93 twenty twenty 4.61484
|
||||
T 0 94 two two 4.61484
|
||||
T 0 95 u u 4.61484
|
||||
T 0 96 v v 4.61484
|
||||
T 0 97 w w 4.61484
|
||||
T 0 98 x x 4.61484
|
||||
T 0 99 y y 4.61484
|
||||
T 0 100 yes yes 4.61484
|
||||
T 0 101 z z 4.61484
|
||||
T 0 102 zero zero 4.61484
|
||||
F 1 4.6351
|
||||
T 1 0
|
||||
F 2 4.6351
|
||||
T 2 0
|
||||
F 3 4.6351
|
||||
T 3 0
|
||||
F 4 4.6351
|
||||
T 4 0
|
||||
F 5 4.6351
|
||||
T 5 0
|
||||
F 6 4.6351
|
||||
T 6 0
|
||||
F 7 4.6351
|
||||
T 7 0
|
||||
F 8 4.6351
|
||||
T 8 0
|
||||
F 9 4.6351
|
||||
T 9 0
|
||||
F 10 4.6351
|
||||
T 10 0
|
||||
F 11 4.6351
|
||||
T 11 0
|
||||
F 12 4.6351
|
||||
T 12 0
|
||||
F 13 4.6351
|
||||
T 13 0
|
||||
F 14 4.6351
|
||||
T 14 0
|
||||
F 15 4.6351
|
||||
T 15 0
|
||||
F 16 4.6351
|
||||
T 16 0
|
||||
F 17 4.6351
|
||||
T 17 0
|
||||
F 18 4.6351
|
||||
T 18 0
|
||||
F 19 4.6351
|
||||
T 19 0
|
||||
F 20 4.6351
|
||||
T 20 0
|
||||
F 21 4.6351
|
||||
T 21 0
|
||||
F 22 4.6351
|
||||
T 22 0
|
||||
F 23 4.6351
|
||||
T 23 0
|
||||
F 24 4.6351
|
||||
T 24 0
|
||||
F 25 4.6351
|
||||
T 25 0
|
||||
F 26 4.6351
|
||||
T 26 0
|
||||
F 27 4.6351
|
||||
T 27 0
|
||||
F 28 4.6351
|
||||
T 28 0
|
||||
F 29 4.6351
|
||||
T 29 0
|
||||
F 30 4.6351
|
||||
T 30 0
|
||||
F 31 4.6351
|
||||
T 31 0
|
||||
F 32 4.6351
|
||||
T 32 0
|
||||
F 33 4.6351
|
||||
T 33 0
|
||||
F 34 4.6351
|
||||
T 34 0
|
||||
F 35 4.6351
|
||||
T 35 0
|
||||
F 36 4.6351
|
||||
T 36 0
|
||||
F 37 4.6351
|
||||
T 37 0
|
||||
F 38 4.6351
|
||||
T 38 0
|
||||
F 39 4.6351
|
||||
T 39 0
|
||||
F 40 4.6351
|
||||
T 40 0
|
||||
F 41 4.6351
|
||||
T 41 0
|
||||
F 42 4.6351
|
||||
T 42 0
|
||||
F 43 4.6351
|
||||
T 43 0
|
||||
F 44 4.6351
|
||||
T 44 0
|
||||
F 45 4.6351
|
||||
T 45 0
|
||||
F 46 4.6351
|
||||
T 46 0
|
||||
F 47 4.6351
|
||||
T 47 0
|
||||
F 48 4.6351
|
||||
T 48 0
|
||||
F 49 4.6351
|
||||
T 49 0
|
||||
F 50 4.6351
|
||||
T 50 0
|
||||
F 51 4.6351
|
||||
T 51 0
|
||||
F 52 4.6351
|
||||
T 52 0
|
||||
F 53 4.6351
|
||||
T 53 0
|
||||
F 54 4.6351
|
||||
T 54 0
|
||||
F 55 4.6351
|
||||
T 55 0
|
||||
F 56 4.6351
|
||||
T 56 0
|
||||
F 57 4.6351
|
||||
T 57 0
|
||||
F 58 4.6351
|
||||
T 58 0
|
||||
F 59 4.6351
|
||||
T 59 0
|
||||
F 60 4.6351
|
||||
T 60 0
|
||||
F 61 4.6351
|
||||
T 61 0
|
||||
F 62 4.6351
|
||||
T 62 0
|
||||
F 63 4.6351
|
||||
T 63 0
|
||||
F 64 4.6351
|
||||
T 64 0
|
||||
F 65 4.6351
|
||||
T 65 0
|
||||
F 66 4.6351
|
||||
T 66 0
|
||||
F 67 4.6351
|
||||
T 67 0
|
||||
F 68 4.6351
|
||||
T 68 0
|
||||
F 69 4.6351
|
||||
T 69 0
|
||||
F 70 4.6351
|
||||
T 70 0
|
||||
F 71 4.6351
|
||||
T 71 0
|
||||
F 72 4.6351
|
||||
T 72 0
|
||||
F 73 4.6351
|
||||
T 73 0
|
||||
F 74 4.6351
|
||||
T 74 0
|
||||
F 75 4.6351
|
||||
T 75 0
|
||||
F 76 4.6351
|
||||
T 76 0
|
||||
F 77 4.6351
|
||||
T 77 0
|
||||
F 78 4.6351
|
||||
T 78 0
|
||||
F 79 4.6351
|
||||
T 79 0
|
||||
F 80 4.6351
|
||||
T 80 0
|
||||
F 81 4.6351
|
||||
T 81 0
|
||||
F 82 4.6351
|
||||
T 82 0
|
||||
F 83 4.6351
|
||||
T 83 0
|
||||
F 84 4.6351
|
||||
T 84 0
|
||||
F 85 4.6351
|
||||
T 85 0
|
||||
F 86 4.6351
|
||||
T 86 0
|
||||
F 87 4.6351
|
||||
T 87 0
|
||||
F 88 4.6351
|
||||
T 88 0
|
||||
F 89 4.6351
|
||||
T 89 0
|
||||
F 90 4.6351
|
||||
T 90 0
|
||||
F 91 4.6351
|
||||
T 91 0
|
||||
F 92 4.6351
|
||||
T 92 0
|
||||
F 93 4.6351
|
||||
T 93 0
|
||||
F 94 4.6351
|
||||
T 94 0
|
||||
F 95 4.6351
|
||||
T 95 0
|
||||
F 96 4.6351
|
||||
T 96 0
|
||||
F 97 4.6351
|
||||
T 97 0
|
||||
F 98 4.6351
|
||||
T 98 0
|
||||
F 99 4.6351
|
||||
T 99 0
|
||||
F 100 4.6351
|
||||
T 100 0
|
||||
F 101 4.6351
|
||||
T 101 0
|
||||
F 102 4.6351
|
||||
T 102 0
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
#############################################################################
|
||||
## Copyright (c) 1996, Carnegie Mellon University, Cambridge University,
|
||||
## Ronald Rosenfeld and Philip Clarkson
|
||||
#############################################################################
|
||||
=============================================================================
|
||||
=============== This file was produced by the CMU-Cambridge ===============
|
||||
=============== Statistical Language Modeling Toolkit ===============
|
||||
=============================================================================
|
||||
This is a 1-gram language model, based on a vocabulary of 101 words,
|
||||
which begins "<s>", "a", "and"...
|
||||
This is an OPEN-vocabulary model (type 1)
|
||||
(OOVs were mapped to UNK, which is treated as any other vocabulary word)
|
||||
Good-Turing discounting was applied.
|
||||
1-gram frequency of frequency : 100
|
||||
1-gram discounting ratios : 0.98
|
||||
This file is in the ARPA-standard format introduced by Doug Paul.
|
||||
|
||||
p(wd3|wd1,wd2)= if(trigram exists) p_3(wd1,wd2,wd3)
|
||||
else if(bigram w1,w2 exists) bo_wt_2(w1,w2)*p(wd3|wd2)
|
||||
else p(wd3|w2)
|
||||
|
||||
p(wd2|wd1)= if(bigram exists) p_2(wd1,wd2)
|
||||
else bo_wt_1(wd1)*p_1(wd2)
|
||||
|
||||
All probs and back-off weights (bo_wt) are given in log10 form.
|
||||
|
||||
Data formats:
|
||||
|
||||
Beginning of data mark: \data\
|
||||
ngram 1=nr # number of 1-grams
|
||||
|
||||
\1-grams:
|
||||
p_1 wd_1
|
||||
|
||||
end of data mark: \end\
|
||||
|
||||
\data\
|
||||
ngram 1=102
|
||||
|
||||
\1-grams:
|
||||
-2.0042 <UNK> 0.0000
|
||||
-99.0000 <s> 0.0000
|
||||
-2.0042 a 0.0000
|
||||
-2.0042 and 0.0000
|
||||
-2.0042 apostrophe 0.0000
|
||||
-2.0042 april 0.0000
|
||||
-2.0042 area 0.0000
|
||||
-2.0042 august 0.0000
|
||||
-2.0042 b 0.0000
|
||||
-2.0042 c 0.0000
|
||||
-2.0042 code 0.0000
|
||||
-2.0042 d 0.0000
|
||||
-2.0042 december 0.0000
|
||||
-2.0042 e 0.0000
|
||||
-2.0042 eight 0.0000
|
||||
-2.0042 eighteen 0.0000
|
||||
-2.0042 eighteenth 0.0000
|
||||
-2.0042 eighth 0.0000
|
||||
-2.0042 eighty 0.0000
|
||||
-2.0042 eleven 0.0000
|
||||
-2.0042 eleventh 0.0000
|
||||
-2.0042 enter 0.0000
|
||||
-2.0042 erase 0.0000
|
||||
-2.0042 f 0.0000
|
||||
-2.0042 february 0.0000
|
||||
-2.0042 fifteen 0.0000
|
||||
-2.0042 fifteenth 0.0000
|
||||
-2.0042 fifth 0.0000
|
||||
-2.0042 fifty 0.0000
|
||||
-2.0042 first 0.0000
|
||||
-2.0042 five 0.0000
|
||||
-2.0042 forty 0.0000
|
||||
-2.0042 four 0.0000
|
||||
-2.0042 fourteen 0.0000
|
||||
-2.0042 fourth 0.0000
|
||||
-2.0042 g 0.0000
|
||||
-2.0042 go 0.0000
|
||||
-2.0042 h 0.0000
|
||||
-2.0042 half 0.0000
|
||||
-2.0042 help 0.0000
|
||||
-2.0042 hundred 0.0000
|
||||
-2.0042 i 0.0000
|
||||
-2.0042 j 0.0000
|
||||
-2.0042 january 0.0000
|
||||
-2.0042 july 0.0000
|
||||
-2.0042 june 0.0000
|
||||
-2.0042 k 0.0000
|
||||
-2.0042 l 0.0000
|
||||
-2.0042 m 0.0000
|
||||
-2.0042 march 0.0000
|
||||
-2.0042 may 0.0000
|
||||
-2.0042 n 0.0000
|
||||
-2.0042 nine 0.0000
|
||||
-2.0042 nineteen 0.0000
|
||||
-2.0042 ninety 0.0000
|
||||
-2.0042 ninth 0.0000
|
||||
-2.0042 no 0.0000
|
||||
-2.0042 o 0.0000
|
||||
-2.0042 october 0.0000
|
||||
-2.0042 of 0.0000
|
||||
-2.0042 oh 0.0000
|
||||
-2.0042 one 0.0000
|
||||
-2.0042 p 0.0000
|
||||
-2.0042 q 0.0000
|
||||
-2.0042 r 0.0000
|
||||
-2.0042 repeat 0.0000
|
||||
-2.0042 rubout 0.0000
|
||||
-2.0042 s 0.0000
|
||||
-2.0042 second 0.0000
|
||||
-2.0042 september 0.0000
|
||||
-2.0042 seven 0.0000
|
||||
-2.0042 seventeen 0.0000
|
||||
-2.0042 seventh 0.0000
|
||||
-2.0042 seventy 0.0000
|
||||
-2.0042 six 0.0000
|
||||
-2.0042 sixteen 0.0000
|
||||
-2.0042 sixteenth 0.0000
|
||||
-2.0042 sixth 0.0000
|
||||
-2.0042 sixty 0.0000
|
||||
-2.0042 start 0.0000
|
||||
-2.0042 stop 0.0000
|
||||
-2.0042 t 0.0000
|
||||
-2.0042 ten 0.0000
|
||||
-2.0042 third 0.0000
|
||||
-2.0042 thirtieth 0.0000
|
||||
-2.0042 thirty 0.0000
|
||||
-2.0042 thousand 0.0000
|
||||
-2.0042 three 0.0000
|
||||
-2.0042 twelfth 0.0000
|
||||
-2.0042 twelve 0.0000
|
||||
-2.0042 twentieth 0.0000
|
||||
-2.0042 twenty 0.0000
|
||||
-2.0042 two 0.0000
|
||||
-2.0042 u 0.0000
|
||||
-2.0042 v 0.0000
|
||||
-2.0042 w 0.0000
|
||||
-2.0042 x 0.0000
|
||||
-2.0042 y 0.0000
|
||||
-2.0042 yes 0.0000
|
||||
-2.0042 z 0.0000
|
||||
-2.0042 zero 0.0000
|
||||
-2.0130 </s> 0.0000
|
||||
|
||||
\end\
|
||||
7633
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_full.trigram.fst
Normal file
7633
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_full.trigram.fst
Normal file
File diff suppressed because it is too large
Load diff
5481
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_full.trigram.lm
Normal file
5481
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_full.trigram.lm
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,307 @@
|
|||
#FSTBasic MinPlus
|
||||
I 2
|
||||
F 0 8.71966
|
||||
T 0 1 <unknown> <unknown> 8.71966
|
||||
T 0 4 a a 3.25493
|
||||
T 0 5 and and 6.52253
|
||||
T 0 6 apostrophe apostrophe 8.71966
|
||||
T 0 7 april april 8.71966
|
||||
T 0 8 area area 8.71966
|
||||
T 0 9 august august 7.21561
|
||||
T 0 10 b b 3.82275
|
||||
T 0 11 c c 4.28442
|
||||
T 0 12 code code 8.71966
|
||||
T 0 13 d d 3.98693
|
||||
T 0 14 december december 8.71966
|
||||
T 0 15 e e 3.08454
|
||||
T 0 16 eight eight 3.57154
|
||||
T 0 17 eighteen eighteen 8.71966
|
||||
T 0 18 eighteenth eighteenth 8.71966
|
||||
T 0 19 eighth eighth 8.71966
|
||||
T 0 20 eighty eighty 5.89393
|
||||
T 0 21 eleven eleven 7.21561
|
||||
T 0 22 eleventh eleventh 8.71966
|
||||
T 0 23 enter enter 4.17113
|
||||
T 0 24 erase erase 5.10552
|
||||
T 0 25 f f 4.42764
|
||||
T 0 26 february february 7.90869
|
||||
T 0 27 fifteen fifteen 6.99249
|
||||
T 0 28 fifteenth fifteenth 7.90869
|
||||
T 0 29 fifth fifth 7.90869
|
||||
T 0 30 fifty fifty 4.99108
|
||||
T 0 31 first first 7.50343
|
||||
T 0 32 five five 3.29362
|
||||
T 0 33 forty forty 5.30608
|
||||
T 0 34 four four 3.49003
|
||||
T 0 35 fourteen fourteen 6.40464
|
||||
T 0 36 fourth fourth 8.71966
|
||||
T 0 37 g g 3.85706
|
||||
T 0 38 go go 6.29941
|
||||
T 0 39 h h 3.6116
|
||||
T 0 40 half half 7.90869
|
||||
T 0 41 help help 6.11705
|
||||
T 0 42 hundred hundred 6.11705
|
||||
T 0 43 i i 3.49602
|
||||
T 0 44 j j 4.73066
|
||||
T 0 45 january january 7.90869
|
||||
T 0 46 july july 7.50343
|
||||
T 0 47 june june 7.90869
|
||||
T 0 48 k k 4.3535
|
||||
T 0 49 l l 3.66756
|
||||
T 0 50 m m 4.11334
|
||||
T 0 51 march march 7.50343
|
||||
T 0 52 may may 7.50343
|
||||
T 0 53 n n 3.48404
|
||||
T 0 54 nine nine 3.89252
|
||||
T 0 55 nineteen nineteen 5.20085
|
||||
T 0 56 ninety ninety 6.29941
|
||||
T 0 57 ninth ninth 7.90869
|
||||
T 0 58 no no 5.82945
|
||||
T 0 59 o o 3.5393
|
||||
T 0 60 october october 7.50343
|
||||
T 0 61 of of 7.90869
|
||||
T 0 62 oh oh 4.36777
|
||||
T 0 63 one one 2.97425
|
||||
T 0 64 p p 3.99683
|
||||
T 0 65 q q 5.20085
|
||||
T 0 66 r r 3.19484
|
||||
T 0 67 repeat repeat 5.76867
|
||||
T 0 68 rubout rubout 4.52435
|
||||
T 0 69 s s 3.58466
|
||||
T 0 70 second second 7.90869
|
||||
T 0 71 september september 6.99249
|
||||
T 0 72 seven seven 3.63901
|
||||
T 0 73 seventeen seventeen 6.99249
|
||||
T 0 74 seventh seventh 8.71966
|
||||
T 0 75 seventy seventy 5.34384
|
||||
T 0 76 six six 3.502
|
||||
T 0 77 sixteen sixteen 7.50343
|
||||
T 0 78 sixteenth sixteenth 8.71966
|
||||
T 0 79 sixth sixth 8.71966
|
||||
T 0 80 sixty sixty 4.32518
|
||||
T 0 81 start start 6.20409
|
||||
T 0 82 stop stop 5.82945
|
||||
T 0 83 t t 3.27405
|
||||
T 0 84 ten ten 5.96277
|
||||
T 0 85 third third 7.50343
|
||||
T 0 86 thirtieth thirtieth 7.50343
|
||||
T 0 87 thirty thirty 5.04658
|
||||
T 0 88 thousand thousand 6.40464
|
||||
T 0 89 three three 3.71154
|
||||
T 0 90 twelfth twelfth 7.90869
|
||||
T 0 91 twelve twelve 6.40464
|
||||
T 0 92 twentieth twentieth 8.71966
|
||||
T 0 93 twenty twenty 4.93835
|
||||
T 0 94 two two 3.02606
|
||||
T 0 95 u u 3.92913
|
||||
T 0 96 v v 4.44307
|
||||
T 0 97 w w 4.32518
|
||||
T 0 98 x x 5.13615
|
||||
T 0 99 y y 4.44307
|
||||
T 0 100 yes yes 5.55752
|
||||
T 0 101 z z 4.79536
|
||||
T 0 102 zero zero 5.01848
|
||||
F 1 8.71966
|
||||
T 1 0
|
||||
F 2 8.71966
|
||||
T 2 0
|
||||
F 3 8.71966
|
||||
T 3 0
|
||||
F 4 8.71966
|
||||
T 4 0
|
||||
F 5 8.71966
|
||||
T 5 0
|
||||
F 6 8.71966
|
||||
T 6 0
|
||||
F 7 8.71966
|
||||
T 7 0
|
||||
F 8 8.71966
|
||||
T 8 0
|
||||
F 9 8.71966
|
||||
T 9 0
|
||||
F 10 8.71966
|
||||
T 10 0
|
||||
F 11 8.71966
|
||||
T 11 0
|
||||
F 12 8.71966
|
||||
T 12 0
|
||||
F 13 8.71966
|
||||
T 13 0
|
||||
F 14 8.71966
|
||||
T 14 0
|
||||
F 15 8.71966
|
||||
T 15 0
|
||||
F 16 8.71966
|
||||
T 16 0
|
||||
F 17 8.71966
|
||||
T 17 0
|
||||
F 18 8.71966
|
||||
T 18 0
|
||||
F 19 8.71966
|
||||
T 19 0
|
||||
F 20 8.71966
|
||||
T 20 0
|
||||
F 21 8.71966
|
||||
T 21 0
|
||||
F 22 8.71966
|
||||
T 22 0
|
||||
F 23 8.71966
|
||||
T 23 0
|
||||
F 24 8.71966
|
||||
T 24 0
|
||||
F 25 8.71966
|
||||
T 25 0
|
||||
F 26 8.71966
|
||||
T 26 0
|
||||
F 27 8.71966
|
||||
T 27 0
|
||||
F 28 8.71966
|
||||
T 28 0
|
||||
F 29 8.71966
|
||||
T 29 0
|
||||
F 30 8.71966
|
||||
T 30 0
|
||||
F 31 8.71966
|
||||
T 31 0
|
||||
F 32 8.71966
|
||||
T 32 0
|
||||
F 33 8.71966
|
||||
T 33 0
|
||||
F 34 8.71966
|
||||
T 34 0
|
||||
F 35 8.71966
|
||||
T 35 0
|
||||
F 36 8.71966
|
||||
T 36 0
|
||||
F 37 8.71966
|
||||
T 37 0
|
||||
F 38 8.71966
|
||||
T 38 0
|
||||
F 39 8.71966
|
||||
T 39 0
|
||||
F 40 8.71966
|
||||
T 40 0
|
||||
F 41 8.71966
|
||||
T 41 0
|
||||
F 42 8.71966
|
||||
T 42 0
|
||||
F 43 8.71966
|
||||
T 43 0
|
||||
F 44 8.71966
|
||||
T 44 0
|
||||
F 45 8.71966
|
||||
T 45 0
|
||||
F 46 8.71966
|
||||
T 46 0
|
||||
F 47 8.71966
|
||||
T 47 0
|
||||
F 48 8.71966
|
||||
T 48 0
|
||||
F 49 8.71966
|
||||
T 49 0
|
||||
F 50 8.71966
|
||||
T 50 0
|
||||
F 51 8.71966
|
||||
T 51 0
|
||||
F 52 8.71966
|
||||
T 52 0
|
||||
F 53 8.71966
|
||||
T 53 0
|
||||
F 54 8.71966
|
||||
T 54 0
|
||||
F 55 8.71966
|
||||
T 55 0
|
||||
F 56 8.71966
|
||||
T 56 0
|
||||
F 57 8.71966
|
||||
T 57 0
|
||||
F 58 8.71966
|
||||
T 58 0
|
||||
F 59 8.71966
|
||||
T 59 0
|
||||
F 60 8.71966
|
||||
T 60 0
|
||||
F 61 8.71966
|
||||
T 61 0
|
||||
F 62 8.71966
|
||||
T 62 0
|
||||
F 63 8.71966
|
||||
T 63 0
|
||||
F 64 8.71966
|
||||
T 64 0
|
||||
F 65 8.71966
|
||||
T 65 0
|
||||
F 66 8.71966
|
||||
T 66 0
|
||||
F 67 8.71966
|
||||
T 67 0
|
||||
F 68 8.71966
|
||||
T 68 0
|
||||
F 69 8.71966
|
||||
T 69 0
|
||||
F 70 8.71966
|
||||
T 70 0
|
||||
F 71 8.71966
|
||||
T 71 0
|
||||
F 72 8.71966
|
||||
T 72 0
|
||||
F 73 8.71966
|
||||
T 73 0
|
||||
F 74 8.71966
|
||||
T 74 0
|
||||
F 75 8.71966
|
||||
T 75 0
|
||||
F 76 8.71966
|
||||
T 76 0
|
||||
F 77 8.71966
|
||||
T 77 0
|
||||
F 78 8.71966
|
||||
T 78 0
|
||||
F 79 8.71966
|
||||
T 79 0
|
||||
F 80 8.71966
|
||||
T 80 0
|
||||
F 81 8.71966
|
||||
T 81 0
|
||||
F 82 8.71966
|
||||
T 82 0
|
||||
F 83 8.71966
|
||||
T 83 0
|
||||
F 84 8.71966
|
||||
T 84 0
|
||||
F 85 8.71966
|
||||
T 85 0
|
||||
F 86 8.71966
|
||||
T 86 0
|
||||
F 87 8.71966
|
||||
T 87 0
|
||||
F 88 8.71966
|
||||
T 88 0
|
||||
F 89 8.71966
|
||||
T 89 0
|
||||
F 90 8.71966
|
||||
T 90 0
|
||||
F 91 8.71966
|
||||
T 91 0
|
||||
F 92 8.71966
|
||||
T 92 0
|
||||
F 93 8.71966
|
||||
T 93 0
|
||||
F 94 8.71966
|
||||
T 94 0
|
||||
F 95 8.71966
|
||||
T 95 0
|
||||
F 96 8.71966
|
||||
T 96 0
|
||||
F 97 8.71966
|
||||
T 97 0
|
||||
F 98 8.71966
|
||||
T 98 0
|
||||
F 99 8.71966
|
||||
T 99 0
|
||||
F 100 8.71966
|
||||
T 100 0
|
||||
F 101 8.71966
|
||||
T 101 0
|
||||
F 102 8.71966
|
||||
T 102 0
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
#############################################################################
|
||||
## Copyright (c) 1996, Carnegie Mellon University, Cambridge University,
|
||||
## Ronald Rosenfeld and Philip Clarkson
|
||||
#############################################################################
|
||||
=============================================================================
|
||||
=============== This file was produced by the CMU-Cambridge ===============
|
||||
=============== Statistical Language Modeling Toolkit ===============
|
||||
=============================================================================
|
||||
This is a 1-gram language model, based on a vocabulary of 101 words,
|
||||
which begins "<s>", "a", "and"...
|
||||
This is an OPEN-vocabulary model (type 1)
|
||||
(OOVs were mapped to UNK, which is treated as any other vocabulary word)
|
||||
Good-Turing discounting was applied.
|
||||
1-gram frequency of frequency : 16
|
||||
1-gram discounting ratios : 0.89
|
||||
This file is in the ARPA-standard format introduced by Doug Paul.
|
||||
|
||||
p(wd3|wd1,wd2)= if(trigram exists) p_3(wd1,wd2,wd3)
|
||||
else if(bigram w1,w2 exists) bo_wt_2(w1,w2)*p(wd3|wd2)
|
||||
else p(wd3|w2)
|
||||
|
||||
p(wd2|wd1)= if(bigram exists) p_2(wd1,wd2)
|
||||
else bo_wt_1(wd1)*p_1(wd2)
|
||||
|
||||
All probs and back-off weights (bo_wt) are given in log10 form.
|
||||
|
||||
Data formats:
|
||||
|
||||
Beginning of data mark: \data\
|
||||
ngram 1=nr # number of 1-grams
|
||||
|
||||
\1-grams:
|
||||
p_1 wd_1
|
||||
|
||||
end of data mark: \end\
|
||||
|
||||
\data\
|
||||
ngram 1=102
|
||||
|
||||
\1-grams:
|
||||
-3.7869 <UNK> 0.0000
|
||||
-98.9999 <s> 0.0000
|
||||
-1.4136 a 0.0000
|
||||
-2.8327 and 0.0000
|
||||
-3.7869 apostrophe 0.0000
|
||||
-3.7869 april 0.0000
|
||||
-3.7869 area 0.0000
|
||||
-3.1337 august 0.0000
|
||||
-1.6602 b 0.0000
|
||||
-1.8607 c 0.0000
|
||||
-3.7869 code 0.0000
|
||||
-1.7315 d 0.0000
|
||||
-3.7869 december 0.0000
|
||||
-1.3396 e 0.0000
|
||||
-1.5511 eight 0.0000
|
||||
-3.7869 eighteen 0.0000
|
||||
-3.7869 eighteenth 0.0000
|
||||
-3.7869 eighth 0.0000
|
||||
-2.5597 eighty 0.0000
|
||||
-3.1337 eleven 0.0000
|
||||
-3.7869 eleventh 0.0000
|
||||
-1.8115 enter 0.0000
|
||||
-2.2173 erase 0.0000
|
||||
-1.9229 f 0.0000
|
||||
-3.4347 february 0.0000
|
||||
-3.0368 fifteen 0.0000
|
||||
-3.4347 fifteenth 0.0000
|
||||
-3.4347 fifth 0.0000
|
||||
-2.1676 fifty 0.0000
|
||||
-3.2587 first 0.0000
|
||||
-1.4304 five 0.0000
|
||||
-2.3044 forty 0.0000
|
||||
-1.5157 four 0.0000
|
||||
-2.7815 fourteen 0.0000
|
||||
-3.7869 fourth 0.0000
|
||||
-1.6751 g 0.0000
|
||||
-2.7358 go 0.0000
|
||||
-1.5685 h 0.0000
|
||||
-3.4347 half 0.0000
|
||||
-2.6566 help 0.0000
|
||||
-2.6566 hundred 0.0000
|
||||
-1.5183 i 0.0000
|
||||
-2.0545 j 0.0000
|
||||
-3.4347 january 0.0000
|
||||
-3.2587 july 0.0000
|
||||
-3.4347 june 0.0000
|
||||
-1.8907 k 0.0000
|
||||
-1.5928 l 0.0000
|
||||
-1.7864 m 0.0000
|
||||
-3.2587 march 0.0000
|
||||
-3.2587 may 0.0000
|
||||
-1.5131 n 0.0000
|
||||
-1.6905 nine 0.0000
|
||||
-2.2587 nineteen 0.0000
|
||||
-2.7358 ninety 0.0000
|
||||
-3.4347 ninth 0.0000
|
||||
-2.5317 no 0.0000
|
||||
-1.5371 o 0.0000
|
||||
-3.2587 october 0.0000
|
||||
-3.4347 of 0.0000
|
||||
-1.8969 oh 0.0000
|
||||
-1.2917 one 0.0000
|
||||
-1.7358 p 0.0000
|
||||
-2.2587 q 0.0000
|
||||
-1.3875 r 0.0000
|
||||
-2.5053 repeat 0.0000
|
||||
-1.9649 rubout 0.0000
|
||||
-1.5568 s 0.0000
|
||||
-3.4347 second 0.0000
|
||||
-3.0368 september 0.0000
|
||||
-1.5804 seven 0.0000
|
||||
-3.0368 seventeen 0.0000
|
||||
-3.7869 seventh 0.0000
|
||||
-2.3208 seventy 0.0000
|
||||
-1.5209 six 0.0000
|
||||
-3.2587 sixteen 0.0000
|
||||
-3.7869 sixteenth 0.0000
|
||||
-3.7869 sixth 0.0000
|
||||
-1.8784 sixty 0.0000
|
||||
-2.6944 start 0.0000
|
||||
-2.5317 stop 0.0000
|
||||
-1.4219 t 0.0000
|
||||
-2.5896 ten 0.0000
|
||||
-3.2587 third 0.0000
|
||||
-3.2587 thirtieth 0.0000
|
||||
-2.1917 thirty 0.0000
|
||||
-2.7815 thousand 0.0000
|
||||
-1.6119 three 0.0000
|
||||
-3.4347 twelfth 0.0000
|
||||
-2.7815 twelve 0.0000
|
||||
-3.7869 twentieth 0.0000
|
||||
-2.1447 twenty 0.0000
|
||||
-1.3142 two 0.0000
|
||||
-1.7064 u 0.0000
|
||||
-1.9296 v 0.0000
|
||||
-1.8784 w 0.0000
|
||||
-2.2306 x 0.0000
|
||||
-1.9296 y 0.0000
|
||||
-2.4136 yes 0.0000
|
||||
-2.0826 z 0.0000
|
||||
-2.1795 zero 0.0000
|
||||
-3.7869 </s> 0.0000
|
||||
|
||||
\end\
|
||||
|
|
@ -0,0 +1,105 @@
|
|||
A
|
||||
B
|
||||
C
|
||||
D
|
||||
E
|
||||
F
|
||||
G
|
||||
H
|
||||
I
|
||||
J
|
||||
K
|
||||
L
|
||||
M
|
||||
N
|
||||
O
|
||||
P
|
||||
Q
|
||||
R
|
||||
S
|
||||
T
|
||||
U
|
||||
V
|
||||
W
|
||||
X
|
||||
Y
|
||||
Z
|
||||
AND
|
||||
APOSTROPHE
|
||||
APRIL
|
||||
AREA
|
||||
AUGUST
|
||||
CODE
|
||||
DECEMBER
|
||||
EIGHT
|
||||
EIGHTEEN
|
||||
EIGHTEENTH
|
||||
EIGHTH
|
||||
EIGHTY
|
||||
ELEVEN
|
||||
ELEVENTH
|
||||
ENTER
|
||||
ERASE
|
||||
FEBRUARY
|
||||
FIFTEEN
|
||||
FIFTEENTH
|
||||
FIFTH
|
||||
FIFTY
|
||||
FIRST
|
||||
FIVE
|
||||
FORTY
|
||||
FOUR
|
||||
FOURTEEN
|
||||
FOURTH
|
||||
GO
|
||||
HALF
|
||||
HALL
|
||||
HELP
|
||||
HUNDRED
|
||||
JANUARY
|
||||
JULY
|
||||
JUNE
|
||||
LANE
|
||||
MARCH
|
||||
MAY
|
||||
MEMORY
|
||||
NINE
|
||||
NINETEEN
|
||||
NINETY
|
||||
NINTH
|
||||
NO
|
||||
NOVEMBER
|
||||
OCTOBER
|
||||
OF
|
||||
OH
|
||||
ONE
|
||||
REPEAT
|
||||
RUBOUT
|
||||
SECOND
|
||||
SEPTEMBER
|
||||
SEVEN
|
||||
SEVENTEEN
|
||||
SEVENTH
|
||||
SEVENTY
|
||||
SIX
|
||||
SIXTEEN
|
||||
SIXTEENTH
|
||||
SIXTH
|
||||
SIXTY
|
||||
START
|
||||
STOP
|
||||
TEN
|
||||
THIRD
|
||||
THIRTEEN
|
||||
THIRTIETH
|
||||
THIRTY
|
||||
THOUSAND
|
||||
THREE
|
||||
TWELFTH
|
||||
TWELVE
|
||||
TWENTIETH
|
||||
TWENTY
|
||||
TWO
|
||||
WEAN
|
||||
YES
|
||||
ZERO
|
||||
6484
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_plus.trigram.fst
Normal file
6484
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_plus.trigram.fst
Normal file
File diff suppressed because it is too large
Load diff
4771
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_plus.trigram.lm
Normal file
4771
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_plus.trigram.lm
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,214 @@
|
|||
A
|
||||
ABOUT
|
||||
AFTER
|
||||
ALL
|
||||
AN
|
||||
AND
|
||||
ANY
|
||||
APOSTROPHE
|
||||
APRIL
|
||||
ARE
|
||||
AREA
|
||||
AS
|
||||
AT
|
||||
AUGUST
|
||||
B
|
||||
BACK
|
||||
BE
|
||||
BEEN
|
||||
BEFORE
|
||||
BUT
|
||||
BY
|
||||
C
|
||||
CALLED
|
||||
CAN
|
||||
CODE
|
||||
COULD
|
||||
D
|
||||
DAY
|
||||
DECEMBER
|
||||
DID
|
||||
DO
|
||||
DOWN
|
||||
E
|
||||
EACH
|
||||
EIGHT
|
||||
EIGHTEEN
|
||||
EIGHTEENTH
|
||||
EIGHTH
|
||||
EIGHTY
|
||||
ELEVEN
|
||||
ELEVENTH
|
||||
ENTER
|
||||
ERASE
|
||||
F
|
||||
FEBRUARY
|
||||
FIFTEEN
|
||||
FIFTEENTH
|
||||
FIFTH
|
||||
FIFTY
|
||||
FIND
|
||||
FIRST
|
||||
FIVE
|
||||
FOR
|
||||
FORTY
|
||||
FOUR
|
||||
FOURTEEN
|
||||
FOURTH
|
||||
FROM
|
||||
G
|
||||
GET
|
||||
GO
|
||||
GOOD
|
||||
H
|
||||
HAD
|
||||
HALF
|
||||
HALL
|
||||
HAS
|
||||
HAVE
|
||||
HE
|
||||
HELP
|
||||
HER
|
||||
HIM
|
||||
HIS
|
||||
HOW
|
||||
HUNDRED
|
||||
I
|
||||
IF
|
||||
IN
|
||||
INTO
|
||||
IS
|
||||
IT
|
||||
ITS
|
||||
J
|
||||
JANUARY
|
||||
JULY
|
||||
JUNE
|
||||
JUST
|
||||
K
|
||||
KNOW
|
||||
L
|
||||
LANE
|
||||
LIKE
|
||||
LITTLE
|
||||
LONG
|
||||
LOOK
|
||||
M
|
||||
MADE
|
||||
MAKE
|
||||
MAN
|
||||
MANY
|
||||
MARCH
|
||||
MAY
|
||||
ME
|
||||
MEMORY
|
||||
MORE
|
||||
MOST
|
||||
MUCH
|
||||
MY
|
||||
N
|
||||
NEW
|
||||
NINE
|
||||
NINETEEN
|
||||
NINETY
|
||||
NINTH
|
||||
NO
|
||||
NOT
|
||||
NOW
|
||||
O
|
||||
OCTOBER
|
||||
OF
|
||||
OH
|
||||
ON
|
||||
ONE
|
||||
ONLY
|
||||
OR
|
||||
OTHER
|
||||
OUR
|
||||
OUT
|
||||
OVER
|
||||
P
|
||||
PEOPLE
|
||||
Q
|
||||
R
|
||||
REPEAT
|
||||
RIGHT
|
||||
RUBOUT
|
||||
S
|
||||
SAID
|
||||
SAME
|
||||
SECOND
|
||||
SEE
|
||||
SEPTEMBER
|
||||
SEVEN
|
||||
SEVENTEEN
|
||||
SEVENTH
|
||||
SEVENTY
|
||||
SHE
|
||||
SIX
|
||||
SIXTEEN
|
||||
SIXTEENTH
|
||||
SIXTH
|
||||
SIXTY
|
||||
SO
|
||||
SOME
|
||||
START
|
||||
STOP
|
||||
T
|
||||
TEN
|
||||
THAN
|
||||
THAT
|
||||
THE
|
||||
THEIR
|
||||
THEM
|
||||
THEN
|
||||
THERE
|
||||
THESE
|
||||
THEY
|
||||
THINK
|
||||
THIRD
|
||||
THIRTIETH
|
||||
THIRTY
|
||||
THIS
|
||||
THOUSAND
|
||||
THREE
|
||||
THROUGH
|
||||
TIME
|
||||
TO
|
||||
TOO
|
||||
TWELFTH
|
||||
TWELVE
|
||||
TWELVTH
|
||||
TWENTIETH
|
||||
TWENTY
|
||||
TWO
|
||||
U
|
||||
UP
|
||||
USE
|
||||
USED
|
||||
V
|
||||
VERY
|
||||
W
|
||||
WAS
|
||||
WATER
|
||||
WAY
|
||||
WE
|
||||
WEAN
|
||||
WERE
|
||||
WHAT
|
||||
WHEN
|
||||
WHERE
|
||||
WHICH
|
||||
WHO
|
||||
WILL
|
||||
WITH
|
||||
WORDS
|
||||
WOULD
|
||||
WRITE
|
||||
X
|
||||
Y
|
||||
YES
|
||||
YOU
|
||||
YOUR
|
||||
Z
|
||||
ZERO
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
eight
|
||||
eighteen
|
||||
|
|
@ -0,0 +1,220 @@
|
|||
a l l e v a
|
||||
a l m o n t
|
||||
a l t m a n n
|
||||
a m p e r e
|
||||
a m y
|
||||
a r a p a h o e
|
||||
a s b u r y p l a c e
|
||||
a s p n e s
|
||||
a y l e s b o r o
|
||||
b a r r y
|
||||
b e a c o n
|
||||
b e c h t e l
|
||||
b e e l e r
|
||||
b e r k e l e y
|
||||
b e v e r l y
|
||||
b l a c k w o o d
|
||||
b o u q u e t
|
||||
b r a d d o c k
|
||||
b r a d f o r d w o o d s
|
||||
b r e n n a n
|
||||
b r i a n
|
||||
b r o a d h e a d r o a d
|
||||
b r o n x v i l l e
|
||||
b r o o m a l l
|
||||
b r o s t
|
||||
b r o w n
|
||||
b r u m i t t
|
||||
b u c k w h e a t
|
||||
b u r c h f e i l d a v e
|
||||
b u r k s
|
||||
c a l i g i u r i
|
||||
c a r n e g i e
|
||||
c a r r e l
|
||||
c e l l i o
|
||||
c e n t r e a v e
|
||||
c e n t r e a v e n u e
|
||||
c h a r l e s
|
||||
c h r i s
|
||||
c h r i s t o p h e r
|
||||
c i n d y
|
||||
c l a r k
|
||||
c l o u t i e r
|
||||
c m u
|
||||
c o n c o r d
|
||||
c o n n e l l y
|
||||
c r a f t o n
|
||||
d a l z e l l
|
||||
d a n i e l
|
||||
d a v i d
|
||||
d e r e k
|
||||
d o n a l d
|
||||
d o u g l a s
|
||||
d o w l i n g
|
||||
d o w n i n g t o w n
|
||||
d r a v k
|
||||
e a r l f o r d
|
||||
e a s t e n d
|
||||
e a s t e n d a v e
|
||||
e a s t e n d a v e n u e
|
||||
e d w i n
|
||||
e f r o m
|
||||
e l g i n
|
||||
e l l s w o r t h
|
||||
e r i c
|
||||
e r i k
|
||||
e w a l d
|
||||
f a r r e l l y
|
||||
f e d o r
|
||||
f e n n i m o r e
|
||||
f i f t h
|
||||
f i f t h a v e n u e
|
||||
f i l
|
||||
f i n d l e y d r i v e
|
||||
f o r w a r d
|
||||
f r a n c e s m a r y
|
||||
f r a n z i n i
|
||||
g a r l a n d
|
||||
g i b b s
|
||||
g i b s o n i a
|
||||
g l e n n
|
||||
g l e n s h a w
|
||||
g o t t i e r
|
||||
g r e e n
|
||||
g r o s s m a n
|
||||
h a m p s h i r e
|
||||
h a n d e r s o n
|
||||
h a s t i n g s
|
||||
h a w t h o r n e
|
||||
h i g h l a n d
|
||||
h i n i c h
|
||||
h o b a r t
|
||||
h o f f r i c h t e r
|
||||
h o w e l l
|
||||
h o y
|
||||
i t h a c a
|
||||
i v a r s o n
|
||||
j a m e s
|
||||
j e a n
|
||||
j e a n e t t e
|
||||
j e f f
|
||||
j e n n i f e r
|
||||
j e t t
|
||||
j o h n
|
||||
j o h n s o n
|
||||
j o n a t h a n
|
||||
j o s e p h
|
||||
j u l i e
|
||||
k a r e n
|
||||
k a r l
|
||||
k a r l a
|
||||
k e a n e
|
||||
k e n
|
||||
k u n t z
|
||||
l a m p s o n
|
||||
l e u l i e t t e
|
||||
l e w i s
|
||||
l i n d a
|
||||
l o n g v i e w
|
||||
l o o f b o u r r o w
|
||||
l u b i n s k i
|
||||
l u d w i c k
|
||||
m a c a l u s o
|
||||
m a h o n e y
|
||||
m a p l e
|
||||
m a r g a r e t
|
||||
m a r k
|
||||
m a r n e l l
|
||||
m a r y j o
|
||||
m a s o n
|
||||
m a t t h e w
|
||||
m a u l d i n
|
||||
m c k e e s p o r t
|
||||
m e a d o w g a t e d r i v e
|
||||
m e m o r y l a n e
|
||||
m i c h a e l
|
||||
m i d w o o d
|
||||
m o d u g n o
|
||||
m o h n k e r n
|
||||
m o n i c a
|
||||
m o r e w o o d
|
||||
n a t h a n
|
||||
n e g l e y
|
||||
n e i l
|
||||
n e l s o n
|
||||
n e w b u r y
|
||||
n e w e l l
|
||||
n e w y o r k
|
||||
n i c o l e
|
||||
n o o n b u r g
|
||||
o a k d a l e d r i v e
|
||||
o l a c k
|
||||
o l d b a r n d r i v e
|
||||
o r c h a r d p l a c e
|
||||
p a r k r o a d
|
||||
p a t t e r s o n
|
||||
p g h
|
||||
p h i l l i p s
|
||||
p h y l l i s
|
||||
p i n e h u r s t
|
||||
p i t t s b u r g
|
||||
p i t t s b u r g h
|
||||
p o l i f r o n i
|
||||
p o m e r a n t z
|
||||
p r i n c e
|
||||
p u s k a r
|
||||
r a n d y
|
||||
r i c h a r d
|
||||
r o b e r t
|
||||
r o s e n f e l d
|
||||
r o y
|
||||
r o z e v e l d
|
||||
r u s k i n
|
||||
s a t t e r f i e l d
|
||||
s a y b r o o k h a r b o r
|
||||
s c a v i n c k y
|
||||
s e m p l e
|
||||
s e w i c k l e y
|
||||
s h a r o n
|
||||
s h e i l a
|
||||
s k e e s
|
||||
s l e e p y h o l l o w
|
||||
s m i t h
|
||||
s n o w
|
||||
s o u t h
|
||||
s p r i n g h o u s e
|
||||
s p r i n g h o u s e l a n e
|
||||
s t e e r e
|
||||
s t e p h e n
|
||||
s t e v e
|
||||
s t e v e n
|
||||
s t o d o l s k y
|
||||
s u m m e r l e a
|
||||
s u n n y v a l e
|
||||
s w a r t z
|
||||
s w i s s v a l e
|
||||
t a n g l e w y l d e
|
||||
t a y l o r
|
||||
t e r i n a
|
||||
t h a d
|
||||
t h a y e r
|
||||
t h o m a s
|
||||
t i m m
|
||||
t i m o t h y
|
||||
t o m
|
||||
t r a c y
|
||||
t r e n t o n
|
||||
v a l e
|
||||
v a n d e r l a a n
|
||||
v e c c h i
|
||||
v e r o n a
|
||||
w a r d
|
||||
w a r r e n
|
||||
w a t e r b u r y
|
||||
w a y n e
|
||||
w e i d e
|
||||
w h i t n e y
|
||||
w i l k i n s
|
||||
w i l l i a m s
|
||||
w r i g h t s v i l l e
|
||||
z e l i e n o p l e
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
A
|
||||
B
|
||||
C
|
||||
D
|
||||
E
|
||||
F
|
||||
G
|
||||
H
|
||||
I
|
||||
J
|
||||
K
|
||||
L
|
||||
M
|
||||
N
|
||||
O
|
||||
P
|
||||
Q
|
||||
R
|
||||
S
|
||||
T
|
||||
U
|
||||
V
|
||||
W
|
||||
X
|
||||
Y
|
||||
Z
|
||||
|
|
@ -0,0 +1,288 @@
|
|||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen5-fejs-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/cen1-fash-b.raw h i n i c h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/cen2-fash-b.raw a m y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/cen4-fash-b.raw m o r e w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/cen5-fash-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen1-fbbh-b.raw h o w e l l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen2-fbbh-b.raw b e v e r l y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen4-fbbh-b.raw p r i n c e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen5-fbbh-b.raw g i b s o n i a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen1-fclc-b.raw c o n n e l l y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen2-fclc-b.raw c i n d y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen4-fclc-b.raw a y l e s b o r o
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen5-fclc-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen1-fejs-b.raw s c a v i n c k y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen2-fejs-b.raw j e a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen4-fejs-b.raw f i n d l e y d r i v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen1-ffmm-b.raw m o d u g n o
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen2-ffmm-b.raw f r a n c e s m a r y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen4-ffmm-b.raw p h i l l i p s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen5-ffmm-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen1-fjam-b.raw m a r n e l l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen2-fjam-b.raw j u l i e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen4-fjam-b.raw m e m o r y l a n e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen5-fjam-b.raw m c k e e s p o r t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen1-fjdn-b.raw n e l s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen2-fjdn-b.raw j e n n i f e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen4-fjdn-b.raw k u n t z
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen5-fjdn-b.raw b e r k e l e y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen1-fjmd-b.raw d r a v k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen2-fjmd-b.raw j e a n e t t e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen4-fjmd-b.raw s p r i n g h o u s e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen5-fjmd-b.raw w r i g h t s v i l l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen1-fkai-b.raw i v a r s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen2-fkai-b.raw k a r l a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen4-fkai-b.raw m o r e w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen5-fkai-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen1-fkdo-b.raw o l a c k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen2-fkdo-b.raw k a r e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen4-fkdo-b.raw a l m o n t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen5-fkdo-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen1-flmm2-b.raw m a c a l u s o
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen2-flmm2-b.raw l i n d a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen4-flmm2-b.raw m e a d o w g a t e d r i v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen1-flrp-b.raw p o m e r a n t z
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen2-flrp-b.raw l i n d a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen4-flrp-b.raw m a r g a r e t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen5-flrp-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen1-fmjc-b.raw c e l l i o
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen2-fmjc-b.raw m o n i c a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen4-fmjc-b.raw h o b a r t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen5-fmjc-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen1-fmjd-b.raw d o w l i n g
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen2-fmjd-b.raw m a r y j o
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen4-fmjd-b.raw d a l z e l l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen5-fmjd-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen1-fnsv-b.raw v e c c h i
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen2-fnsv-b.raw n i c o l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen4-fnsv-b.raw e l l s w o r t h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen5-fnsv-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen1-fplp-b.raw p o m e r a n t z
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen2-fplp-b.raw p h y l l i s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen4-fplp-b.raw e a r l f o r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen5-fplp-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen1-fsaf2-b.raw f a r r e l l y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen2-fsaf2-b.raw s h e i l a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen4-fsaf2-b.raw t a n g l e w y l d e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen5-fsaf2-b.raw b r o n x v i l l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen1-fsrb-b.raw b u r k s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen2-fsrb-b.raw s h a r o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen4-fsrb-b.raw a r a p a h o e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen5-fsrb-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen1-ftal-b.raw l e w i s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen2-ftal-b.raw t r a c y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen4-ftal-b.raw v a l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen5-ftal-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen1-ftmj-b.raw j e t t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen2-ftmj-b.raw t e r i n a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen4-ftmj-b.raw h a w t h o r n e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen5-ftmj-b.raw s w i s s v a l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen1-fwxs-b.raw s a t t e r f i e l d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen2-fwxs-b.raw w h i t n e y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen4-fwxs-b.raw o r c h a r d p l a c e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen5-fwxs-b.raw s e w i c k l e y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen1-mblb-b.raw b r u m i t t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen2-mblb-b.raw b a r r y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen4-mblb-b.raw m i d w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen5-mblb-b.raw w a t e r b u r y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen1-mblw-b.raw w e i d e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen2-mblw-b.raw r o b e r t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen4-mblw-b.raw l u d w i c k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen5-mblw-b.raw p g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen1-mbmg-b.raw g o t t i e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen2-mbmg-b.raw b r i a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen4-mbmg-b.raw p a r k r o a d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen5-mbmg-b.raw d o w n i n g t o w n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen1-mcel-b.raw l a m p s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen2-mcel-b.raw c l a r k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen4-mcel-b.raw g a r l a n d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen5-mcel-b.raw s u n n y v a l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen1-mcen-b.raw n e w e l l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen2-mcen-b.raw c h r i s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen4-mcen-b.raw h o b a r t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen5-mcen-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen1-mcfl-b.raw f e d o r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen2-mcfl-b.raw c h r i s t o p h e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen4-mcfl-b.raw l o n g v i e w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen5-mcfl-b.raw n e w b u r y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen1-mcrt-b.raw t a y l o r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen2-mcrt-b.raw r o y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen4-mcrt-b.raw h a s t i n g s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen5-mcrt-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen1-mcsc-b.raw c a l i g i u r i
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen2-mcsc-b.raw c h a r l e s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen4-mcsc-b.raw t r e n t o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen5-mcsc-b.raw p g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen1-mdcs-b.raw s t e e r e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen2-mdcs-b.raw d a v i d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen4-mdcs-b.raw f o r w a r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen5-mdcs-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen1-mdcs2-b.raw s n o w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen2-mdcs2-b.raw d o n a l d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen4-mdcs2-b.raw s o u t h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen5-mdcs2-b.raw p i t t s b u r g
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen1-mdmc-b.raw c a r r e l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen2-mdmc-b.raw d a v i d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen4-mdmc-b.raw h i g h l a n d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen5-mdmc-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen1-mdxn-b.raw n o o n b u r g
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen2-mdxn-b.raw d e r e k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen4-mdxn-b.raw c o n c o r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen5-mdxn-b.raw i t h a c a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen1-mdxs-b.raw s t o d o l s k y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen2-mdxs-b.raw d a n i e l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen4-mdxs-b.raw b o u q u e t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen5-mdxs-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen1-meab-b.raw b l a c k w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen2-meab-b.raw e d w i n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen4-meab-b.raw b r a d d o c k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen5-meab-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen1-meht-b.raw t h a y e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen2-meht-b.raw e r i c
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen4-meht-b.raw b e a c o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen5-meht-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen1-mema-b.raw a l t m a n n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen2-mema-b.raw e r i k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen4-mema-b.raw e a s t e n d a v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen5-mema-b.raw p g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen1-mewl-b.raw l e u l i e t t e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen2-mewl-b.raw e r i c
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen5-mewl-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen1-mfaa-b.raw a l l e v a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen2-mfaa-b.raw f i l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen4-mfaa-b.raw w i l k i n s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen5-mfaa-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen1-mgah-b.raw h o y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen2-mgah-b.raw g l e n n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen4-mgah-b.raw r u s k i n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen5-mgah-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen1-mjbh-b.raw h a m p s h i r e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen2-mjbh-b.raw j o h n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen4-mjbh-b.raw e l g i n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen5-mjbh-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen1-mjda-b.raw a s p n e s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen2-mjda-b.raw j a m e s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen4-mjda-b.raw e a s t e n d a v e n u e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen5-mjda-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen1-mjdr-b.raw r o s e n f e l d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen2-mjdr-b.raw j e f f
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen4-mjdr-b.raw c e n t r e a v e n u e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen5-mjdr-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen1-mjes-b.raw s w a r t z
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen2-mjes-b.raw j o n a t h a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen5-mjes-b.raw n e w y o r k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen1-mjgk-b.raw k e a n e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen2-mjgk-b.raw j o s e p h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen4-mjgk-b.raw s p r i n g h o u s e l a n e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen1-mjhp-b.raw p o l i f r o n i
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen2-mjhp-b.raw j o s e p h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen4-mjhp-b.raw a s b u r y p l a c e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen5-mjhp-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen1-mjjs2-b.raw s k e e s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen2-mjjs2-b.raw j a m e s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen4-mjjs2-b.raw a m p e r e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen5-mjjs2-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen1-mkdb-b.raw b e c h t e l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen2-mkdb-b.raw k a r l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen4-mkdb-b.raw b e a c o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen5-mkdb-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen1-mkem-b.raw m o h n k e r n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen2-mkem-b.raw k e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen4-mkem-b.raw c m u
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen5-mkem-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen1-mmaf-b.raw f r a n z i n i
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen2-mmaf-b.raw m i c h a e l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen4-mmaf-b.raw s u m m e r l e a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen5-mmaf-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen1-mmal-b.raw l u b i n s k i
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen2-mmal-b.raw m a r k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen4-mmal-b.raw b e e l e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen5-mmal-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen1-mmap-b.raw p u s k a r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen2-mmap-b.raw m a r k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen4-mmap-b.raw b r o a d h e a d r o a d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen5-mmap-b.raw c r a f t o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen1-mmdg-b.raw g r o s s m a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen2-mmdg-b.raw m i c h a e l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen4-mmdg-b.raw d o u g l a s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen5-mmdg-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen1-mmkw-b.raw w i l l i a m s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen2-mmkw-b.raw m a t t h e w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen4-mmkw-b.raw p i n e h u r s t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen5-mmkw-b.raw m a u l d i n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen1-mmsh-b.raw h o f f r i c h t e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen2-mmsh-b.raw m a r k
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen4-mmsh-b.raw f i f t h a v e n u e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen5-mmsh-b.raw b r o o m a l l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen1-mmtm-b.raw m a s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen2-mmtm-b.raw m a t t h e w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen4-mmtm-b.raw o l d b a r n d r i v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen5-mmtm-b.raw v e r o n a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen1-mnfe-b.raw e f r o m
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen2-mnfe-b.raw n e i l
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen4-mnfe-b.raw m o r e w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen5-mnfe-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen1-mnjl-b.raw l o o f b o u r r o w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen2-mnjl-b.raw n a t h a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen5-mnjl-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen1-mrab-b.raw b r e n n a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen2-mrab-b.raw r o b e r t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen4-mrab-b.raw o a k d a l e d r i v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen5-mrab-b.raw z e l i e n o p l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen1-mrcb-b.raw b r o s t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen2-mrcb-b.raw r a n d y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen4-mrcb-b.raw n e g l e y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen5-mrcb-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen1-mrjc2-b.raw c l o u t i e r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen2-mrjc2-b.raw r i c h a r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen4-mrjc2-b.raw f e n n i m o r e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen5-mrjc2-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen1-mrmg-b.raw g r e e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen2-mrmg-b.raw r i c h a r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen4-mrmg-b.raw e a s t e n d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen5-mrmg-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen1-mscg2-b.raw g i b b s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen2-mscg2-b.raw s t e v e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen4-mscg2-b.raw m a r g a r e t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen5-mscg2-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen1-msct-b.raw t i m m
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen2-msct-b.raw s t e v e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen4-msct-b.raw s e m p l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen5-msct-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen1-msjm-b.raw m a h o n e y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen2-msjm-b.raw s t e p h e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen4-msjm-b.raw m a p l e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen5-msjm-b.raw g l e n s h a w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen1-msjr-b.raw r o z e v e l d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen2-msjr-b.raw s t e v e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen4-msjr-b.raw f i f t h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen5-msjr-b.raw v e r o n a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen1-mskh-b.raw h a n d e r s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen2-mskh-b.raw s t e v e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen5-mskh-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/cen4-msmn-b.raw b u r c h f e i l d a v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/cen5-msmn-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen1-msrb-b.raw b r o w n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen2-msrb-b.raw s t e v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen4-msrb-b.raw p a t t e r s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen5-msrb-b.raw c a r n e g i e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen1-mtcv-b.raw v a n d e r l a a n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen2-mtcv-b.raw t o m
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen4-mtcv-b.raw s l e e p y h o l l o w
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen5-mtcv-b.raw w a r r e n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen1-mtje-b.raw e w a l d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen2-mtje-b.raw t i m o t h y
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen4-mtje-b.raw c e n t r e a v e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen5-mtje-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen1-mtos-b.raw s m i t h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen2-mtos-b.raw t h o m a s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen4-mtos-b.raw m o r e w o o d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen5-mtos-b.raw p i t t s b u r g h
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen1-mtxj-b.raw j o h n s o n
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen2-mtxj-b.raw t h a d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen4-mtxj-b.raw s a y b r o o k h a r b o r
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen5-mtxj-b.raw b r a d f o r d w o o d s
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen1-mwhw-b.raw w a r d
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen2-mwhw-b.raw w a y n e
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen4-mwhw-b.raw b u c k w h e a t
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen5-mwhw-b.raw g i b s o n i a
|
||||
|
|
@ -0,0 +1,351 @@
|
|||
#FSTBasic MinPlus
|
||||
I 2
|
||||
F 0 230.256
|
||||
T 0 1 <unknown> <unknown> 230.256
|
||||
T 0 4 a a 2.63024
|
||||
T 0 5 b b 3.22984
|
||||
T 0 6 c c 3.76887
|
||||
T 0 7 d d 3.44098
|
||||
T 0 8 e e 2.35739
|
||||
T 0 9 f f 4.44169
|
||||
T 0 10 g g 3.34312
|
||||
T 0 11 h h 2.9602
|
||||
T 0 12 i i 2.71889
|
||||
T 0 13 j j 5.09562
|
||||
T 0 14 k k 4.16399
|
||||
T 0 15 l l 2.97839
|
||||
T 0 16 m m 3.6717
|
||||
T 0 17 n n 2.80086
|
||||
T 0 18 o o 2.82435
|
||||
T 0 19 p p 3.32977
|
||||
T 0 20 q q 230.256
|
||||
T 0 21 r r 2.41887
|
||||
T 0 22 s s 2.82435
|
||||
T 0 23 t t 2.52478
|
||||
T 0 24 u u 3.30398
|
||||
T 0 25 v v 4.19485
|
||||
T 0 26 w w 3.89943
|
||||
T 0 27 x x 230.256
|
||||
T 0 28 y y 4.13429
|
||||
T 0 29 z z 5.71479
|
||||
F 1 230.256
|
||||
T 1 0
|
||||
F 2 230.256
|
||||
T 2 0
|
||||
F 3 230.256
|
||||
T 3 0
|
||||
F 4 231.846
|
||||
T 4 0 , , 1.59024
|
||||
T 4 6 c c 2.78912
|
||||
T 4 7 d d 3.02652
|
||||
T 4 9 f f 4.65352
|
||||
T 4 11 h h 3.54022
|
||||
T 4 15 l l 2.51373
|
||||
T 4 16 m m 2.78912
|
||||
T 4 17 n n 1.92496
|
||||
T 4 19 p p 4.13383
|
||||
T 4 21 r r 1.4405
|
||||
T 4 22 s s 2.78912
|
||||
T 4 23 t t 2.78912
|
||||
T 4 25 v v 2.78912
|
||||
T 4 26 w w 4.65352
|
||||
T 4 28 y y 3.54022
|
||||
F 5 232.354
|
||||
T 5 0 , , 2.09755
|
||||
T 5 4 a a 3.19921
|
||||
T 5 5 b b 5.20338
|
||||
T 5 8 e e 2.43222
|
||||
T 5 18 o o 3.19921
|
||||
T 5 21 r r 2.09443
|
||||
T 5 22 s s 3.53953
|
||||
T 5 24 u u 0.501733
|
||||
F 6 231.469
|
||||
T 6 0 , , 1.2124
|
||||
T 6 4 a a 2.04516
|
||||
T 6 6 c c 4.67287
|
||||
T 6 8 e e 2.04516
|
||||
T 6 11 h h 1.38892
|
||||
T 6 14 k k 1.90147
|
||||
T 6 15 l l 3.52871
|
||||
T 6 16 m m 4.67287
|
||||
T 6 18 o o 2.21324
|
||||
T 6 28 y y 4.67287
|
||||
F 7 231.106
|
||||
T 7 0 , , 0.849466
|
||||
T 7 4 a a 1.98621
|
||||
T 7 7 d d 3.85061
|
||||
T 7 8 e e 2.36729
|
||||
T 7 9 f f 3.33092
|
||||
T 7 13 j j 4.995
|
||||
T 7 18 o o 2.22361
|
||||
T 7 19 p p 2.09789
|
||||
T 7 21 r r 2.53538
|
||||
T 7 22 s s 2.73731
|
||||
T 7 26 w w 2.36729
|
||||
T 7 28 y y 3.85061
|
||||
F 8 231.242
|
||||
T 8 0 , , 0.986113
|
||||
T 8 4 a a 2.63646
|
||||
T 8 5 b b 3.81147
|
||||
T 8 7 d d 3.81147
|
||||
T 8 8 e e 3.29776
|
||||
T 8 9 f f 4.92477
|
||||
T 8 10 g g 4.06498
|
||||
T 8 13 j j 4.92477
|
||||
T 8 15 l l 2.2418
|
||||
T 8 16 m m 3.81147
|
||||
T 8 17 n n 2.07095
|
||||
T 8 19 p p 2.44788
|
||||
T 8 21 r r 1.92496
|
||||
T 8 22 s s 2.86879
|
||||
T 8 25 v v 3.06037
|
||||
T 8 26 w w 2.63646
|
||||
T 8 28 y y 3.60953
|
||||
T 8 29 z z 6.06915
|
||||
F 9 231.231
|
||||
T 9 0 , , 0.975035
|
||||
T 9 5 b b 4.01893
|
||||
T 9 6 c c 4.01893
|
||||
T 9 8 e e 1.76125
|
||||
T 9 9 f f 2.87478
|
||||
T 9 12 i i 1.76125
|
||||
T 9 18 o o 2.35508
|
||||
T 9 21 r r 1.76125
|
||||
T 9 23 t t 2.35508
|
||||
F 10 231.861
|
||||
T 10 0 , , 1.60523
|
||||
T 10 4 a a 3.08731
|
||||
T 10 6 c c 5.09148
|
||||
T 10 11 h h 0.4094
|
||||
T 10 12 i i 2.63185
|
||||
T 10 15 l l 2.83402
|
||||
T 10 16 m m 5.09148
|
||||
T 10 21 r r 3.94732
|
||||
T 10 25 v v 5.09148
|
||||
F 11 230.702
|
||||
T 11 0 , , 0.44576
|
||||
T 11 4 a a 1.55401
|
||||
T 11 5 b b 3.2128
|
||||
T 11 6 c c 3.8064
|
||||
T 11 9 f f 3.46608
|
||||
T 11 12 i i 3.01086
|
||||
T 11 13 j j 4.3261
|
||||
T 11 15 l l 3.2128
|
||||
T 11 16 m m 3.46608
|
||||
T 11 18 o o 2.18653
|
||||
T 11 19 p p 3.46608
|
||||
T 11 22 s s 2.84277
|
||||
T 11 25 v v 4.3261
|
||||
T 11 28 y y 4.3261
|
||||
F 12 231.751
|
||||
T 12 0 , , 1.49444
|
||||
T 12 4 a a 3.70532
|
||||
T 12 5 b b 4.04564
|
||||
T 12 6 c c 2.42554
|
||||
T 12 7 d d 3.70532
|
||||
T 12 8 e e 2.81261
|
||||
T 12 9 f f 3.70532
|
||||
T 12 10 g g 4.04564
|
||||
T 12 13 j j 5.70949
|
||||
T 12 15 l l 2.81261
|
||||
T 12 16 m m 3.45204
|
||||
T 12 17 n n 1.88213
|
||||
T 12 22 s s 3.45204
|
||||
T 12 23 t t 1.06794
|
||||
T 12 25 v v 3.45204
|
||||
F 13 231.834
|
||||
T 13 0 , , 1.57733
|
||||
T 13 4 a a 2.25561
|
||||
T 13 8 e e 1.14231
|
||||
T 13 18 o o 0.940376
|
||||
T 13 24 u u 3.39977
|
||||
F 14 230.718
|
||||
T 14 0 , , 0.462021
|
||||
T 14 4 a a 2.28301
|
||||
T 14 5 b b 3.14303
|
||||
T 14 8 e e 1.6597
|
||||
T 14 9 f f 4.28718
|
||||
T 14 12 i i 2.62334
|
||||
T 14 13 j j 4.28718
|
||||
T 14 14 k k 3.14303
|
||||
T 14 19 p p 3.14303
|
||||
T 14 26 w w 3.14303
|
||||
T 14 28 y y 3.14303
|
||||
F 15 231.495
|
||||
T 15 0 , , 1.23879
|
||||
T 15 4 a a 2.09098
|
||||
T 15 5 b b 3.78821
|
||||
T 15 7 d d 2.34311
|
||||
T 15 8 e e 1.49392
|
||||
T 15 9 f f 5.45206
|
||||
T 15 12 i i 2.25193
|
||||
T 15 13 j j 5.45206
|
||||
T 15 14 k k 4.30791
|
||||
T 15 15 l l 1.95259
|
||||
T 15 16 m m 3.78821
|
||||
T 15 18 o o 3.19461
|
||||
T 15 22 s s 3.44789
|
||||
T 15 24 u u 3.78821
|
||||
T 15 28 y y 3.78821
|
||||
T 15 29 z z 5.45206
|
||||
F 16 231.748
|
||||
T 16 0 , , 1.49219
|
||||
T 16 4 a a 1.09143
|
||||
T 16 6 c c 4.76819
|
||||
T 16 8 e e 2.14048
|
||||
T 16 12 i i 2.51051
|
||||
T 16 16 m m 3.62381
|
||||
T 16 18 o o 1.65901
|
||||
T 16 19 p p 2.76402
|
||||
T 16 22 s s 3.10411
|
||||
T 16 24 u u 4.76819
|
||||
T 16 28 y y 4.76819
|
||||
F 17 231.003
|
||||
T 17 0 , , 0.747246
|
||||
T 17 4 a a 2.73133
|
||||
T 17 6 c c 3.00073
|
||||
T 17 7 d d 2.34449
|
||||
T 17 8 e e 1.80108
|
||||
T 17 9 f f 3.96436
|
||||
T 17 10 g g 2.85705
|
||||
T 17 12 i i 2.51926
|
||||
T 17 13 j j 5.62844
|
||||
T 17 14 k k 3.96436
|
||||
T 17 16 m m 3.62427
|
||||
T 17 17 n n 2.85705
|
||||
T 17 19 p p 2.85705
|
||||
T 17 22 s s 3.00073
|
||||
T 17 23 t t 2.73133
|
||||
T 17 24 u u 3.96436
|
||||
T 17 27 x x 5.62844
|
||||
T 17 29 z z 5.62844
|
||||
F 18 231.405
|
||||
T 18 0 , , 1.14848
|
||||
T 18 4 a a 3.60078
|
||||
T 18 5 b b 3.60078
|
||||
T 18 7 d d 2.59639
|
||||
T 18 9 f f 3.9411
|
||||
T 18 11 h h 3.9411
|
||||
T 18 15 l l 2.97747
|
||||
T 18 16 m m 2.97747
|
||||
T 18 17 n n 1.56829
|
||||
T 18 18 o o 2.496
|
||||
T 18 19 p p 3.9411
|
||||
T 18 21 r r 1.92818
|
||||
T 18 22 s s 3.3475
|
||||
T 18 24 u u 2.97747
|
||||
T 18 26 w w 2.70807
|
||||
T 18 28 y y 4.4608
|
||||
T 18 29 z z 5.60495
|
||||
F 19 231.854
|
||||
T 19 0 , , 1.59765
|
||||
T 19 4 a a 3.44075
|
||||
T 19 10 g g 3.44075
|
||||
T 19 11 h h 2.64498
|
||||
T 19 12 i i 0.526831
|
||||
T 19 15 l l 2.84692
|
||||
T 19 18 o o 3.10043
|
||||
T 19 21 r r 3.44075
|
||||
T 19 22 s s 3.44075
|
||||
T 19 28 y y 5.1046
|
||||
F 20 230.849
|
||||
T 20 0 , , 0.592377
|
||||
T 20 24 u u 0.760774
|
||||
F 21 231.262
|
||||
T 21 0 , , 1.00581
|
||||
T 21 4 a a 2.89872
|
||||
T 21 5 b b 4.00374
|
||||
T 21 6 c c 4.34383
|
||||
T 21 7 d d 3.23651
|
||||
T 21 8 e e 2.22821
|
||||
T 21 10 g g 1.38708
|
||||
T 21 12 i i 2.33114
|
||||
T 21 14 k k 3.11079
|
||||
T 21 15 l l 3.11079
|
||||
T 21 17 n n 3.75022
|
||||
T 21 18 o o 2.22821
|
||||
T 21 21 r r 3.3802
|
||||
T 21 23 t t 3.3802
|
||||
T 21 28 y y 3.3802
|
||||
F 22 231.806
|
||||
T 22 0 , , 1.54978
|
||||
T 22 4 a a 3.9411
|
||||
T 22 5 b b 1.00554
|
||||
T 22 8 e e 2.70807
|
||||
T 22 11 h h 3.3475
|
||||
T 22 13 j j 4.4608
|
||||
T 22 14 k k 3.3475
|
||||
T 22 16 m m 3.3475
|
||||
T 22 18 o o 2.496
|
||||
T 22 19 p p 2.83356
|
||||
T 22 22 s s 3.60078
|
||||
T 22 23 t t 2.04285
|
||||
T 22 24 u u 4.4608
|
||||
T 22 25 v v 4.4608
|
||||
T 22 26 w w 3.60078
|
||||
F 23 232.054
|
||||
T 23 0 , , 1.79752
|
||||
T 23 8 e e 2.22568
|
||||
T 23 11 h h 2.46975
|
||||
T 23 12 i i 3.64499
|
||||
T 23 16 m m 4.75829
|
||||
T 23 18 o o 3.27497
|
||||
T 23 19 p p 3.44283
|
||||
T 23 21 r r 3.64499
|
||||
T 23 22 s s 1.32468
|
||||
T 23 23 t t 1.14415
|
||||
T 23 29 z z 3.89828
|
||||
F 24 231.776
|
||||
T 24 0 , , 1.51954
|
||||
T 24 6 c c 5.13016
|
||||
T 24 8 e e 3.12599
|
||||
T 24 10 g g 3.98601
|
||||
T 24 15 l l 3.46631
|
||||
T 24 16 m m 3.98601
|
||||
T 24 17 n n 3.98601
|
||||
T 24 20 q q 5.13016
|
||||
T 24 21 r r 0.390288
|
||||
T 24 22 s s 2.8727
|
||||
T 24 23 t t 3.98601
|
||||
F 25 232.712
|
||||
T 25 0 , , 2.45536
|
||||
T 25 4 a a 1.79763
|
||||
T 25 8 e e 0.527753
|
||||
T 25 12 i i 1.79763
|
||||
T 25 14 k k 4.25725
|
||||
F 26 230.953
|
||||
T 26 0 , , 0.696488
|
||||
T 26 4 a a 1.91736
|
||||
T 26 8 e e 2.88099
|
||||
T 26 11 h h 3.40069
|
||||
T 26 12 i i 1.91736
|
||||
T 26 17 n n 2.28739
|
||||
T 26 18 o o 1.64796
|
||||
T 26 26 w w 4.54507
|
||||
T 26 28 y y 3.40069
|
||||
F 27 230.871
|
||||
T 27 0 , , 0.614618
|
||||
T 27 25 v v 0.760774
|
||||
F 28 230.767
|
||||
T 28 0 , , 0.511215
|
||||
T 28 5 b b 3.17204
|
||||
T 28 6 c c 3.17204
|
||||
T 28 7 d d 2.65212
|
||||
T 28 11 h h 3.17204
|
||||
T 28 13 j j 3.17204
|
||||
T 28 15 l l 2.05851
|
||||
T 28 16 m m 3.17204
|
||||
T 28 17 n n 3.17204
|
||||
T 28 18 o o 3.17204
|
||||
T 28 19 p p 2.31203
|
||||
T 28 22 s s 3.17204
|
||||
T 28 25 v v 3.17204
|
||||
T 28 26 w w 4.3162
|
||||
F 29 230.827
|
||||
T 29 0 , , 0.570718
|
||||
T 29 5 b b 2.84024
|
||||
T 29 8 e e 1.17639
|
||||
T 29 12 i i 2.84024
|
||||
T 29 13 j j 2.84024
|
||||
T 29 15 l l 2.84024
|
||||
T 29 19 p p 2.84024
|
||||
|
|
@ -0,0 +1,438 @@
|
|||
#############################################################################
|
||||
## Copyright (c) 1996, Carnegie Mellon University, Cambridge University,
|
||||
## Ronald Rosenfeld and Philip Clarkson
|
||||
#############################################################################
|
||||
=============================================================================
|
||||
=============== This file was produced by the CMU-Cambridge ===============
|
||||
=============== Statistical Language Modeling Toolkit ===============
|
||||
=============================================================================
|
||||
This is a 2-gram language model, based on a vocabulary of 28 words,
|
||||
which begins "<s>", "a", "b"...
|
||||
This is an OPEN-vocabulary model (type 1)
|
||||
(OOVs were mapped to UNK, which is treated as any other vocabulary word)
|
||||
Absolute discounting was applied.
|
||||
1-gram discounting constant : 1
|
||||
2-gram discounting constant : 0.53271
|
||||
This file is in the ARPA-standard format introduced by Doug Paul.
|
||||
|
||||
p(wd3|wd1,wd2)= if(trigram exists) p_3(wd1,wd2,wd3)
|
||||
else if(bigram w1,w2 exists) bo_wt_2(w1,w2)*p(wd3|wd2)
|
||||
else p(wd3|w2)
|
||||
|
||||
p(wd2|wd1)= if(bigram exists) p_2(wd1,wd2)
|
||||
else bo_wt_1(wd1)*p_1(wd2)
|
||||
|
||||
All probs and back-off weights (bo_wt) are given in log10 form.
|
||||
|
||||
Data formats:
|
||||
|
||||
Beginning of data mark: \data\
|
||||
ngram 1=nr # number of 1-grams
|
||||
ngram 2=nr # number of 2-grams
|
||||
|
||||
\1-grams:
|
||||
p_1 wd_1 bo_wt_1
|
||||
\2-grams:
|
||||
p_2 wd_1 wd_2
|
||||
|
||||
end of data mark: \end\
|
||||
|
||||
\data\
|
||||
ngram 1=29
|
||||
ngram 2=361
|
||||
|
||||
\1-grams:
|
||||
-99.9990 <UNK> 0.0000
|
||||
-98.9947 <s> 0.0000
|
||||
-1.1423 a -0.5272
|
||||
-1.4027 b -0.8846
|
||||
-1.6368 c -0.4158
|
||||
-1.4944 d -0.0486
|
||||
-1.0238 e 0.0094
|
||||
-1.9290 f -0.4012
|
||||
-1.4519 g -0.5389
|
||||
-1.2856 h 0.7485
|
||||
-1.1808 i -0.3408
|
||||
-2.2130 j -0.6851
|
||||
-1.8084 k 0.0629
|
||||
-1.2935 l -0.3457
|
||||
-1.5946 m -0.6264
|
||||
-1.2164 n 0.4262
|
||||
-1.2266 o -0.1643
|
||||
-1.4461 p -0.5694
|
||||
-99.9990 q -0.2573
|
||||
-1.0505 r -0.1338
|
||||
-1.2266 s -0.5507
|
||||
-1.0965 t -0.5775
|
||||
-1.4349 u -0.6301
|
||||
-1.8218 v -1.0660
|
||||
-1.6935 w -0.0341
|
||||
-99.9990 x -0.2669
|
||||
-1.7955 y 0.0357
|
||||
-2.4819 z -0.2479
|
||||
-99.9990 </s> 0.0000
|
||||
|
||||
\2-grams:
|
||||
-2.5179 a a
|
||||
-1.2113 a c
|
||||
-1.3144 a d
|
||||
-1.7953 a e
|
||||
-2.0210 a f
|
||||
-1.5375 a h
|
||||
-2.5179 a k
|
||||
-1.0917 a l
|
||||
-1.2113 a m
|
||||
-0.8360 a n
|
||||
-1.7953 a p
|
||||
-0.6256 a r
|
||||
-1.2113 a s
|
||||
-1.2113 a t
|
||||
-2.5179 a u
|
||||
-1.2113 a v
|
||||
-2.0210 a w
|
||||
-1.5375 a y
|
||||
-1.3894 b a
|
||||
-2.2598 b b
|
||||
-1.0563 b e
|
||||
-2.2598 b i
|
||||
-2.2598 b l
|
||||
-1.3894 b o
|
||||
-0.9096 b r
|
||||
-1.5372 b s
|
||||
-0.2179 b u
|
||||
-0.8882 c a
|
||||
-2.0294 c b
|
||||
-2.0294 c c
|
||||
-0.8882 c e
|
||||
-0.6032 c h
|
||||
-2.0294 c i
|
||||
-0.8258 c k
|
||||
-1.5325 c l
|
||||
-2.0294 c m
|
||||
-0.9612 c o
|
||||
-2.0294 c p
|
||||
-2.0294 c r
|
||||
-2.0294 c y
|
||||
-0.8626 d a
|
||||
-2.1693 d b
|
||||
-2.1693 d c
|
||||
-1.6723 d d
|
||||
-1.0281 d e
|
||||
-1.4466 d f
|
||||
-1.6723 d h
|
||||
-1.6723 d i
|
||||
-2.1693 d j
|
||||
-2.1693 d l
|
||||
-0.9657 d o
|
||||
-0.9111 d p
|
||||
-1.1011 d r
|
||||
-1.1888 d s
|
||||
-2.1693 d t
|
||||
-2.1693 d u
|
||||
-1.0281 d w
|
||||
-1.6723 d y
|
||||
-1.1450 e a
|
||||
-1.6553 e b
|
||||
-2.1388 e c
|
||||
-1.6553 e d
|
||||
-1.4322 e e
|
||||
-2.1388 e f
|
||||
-1.7654 e g
|
||||
-2.6358 e h
|
||||
-1.6553 e i
|
||||
-2.1388 e j
|
||||
-2.6358 e k
|
||||
-0.9736 e l
|
||||
-1.6553 e m
|
||||
-0.8994 e n
|
||||
-1.0631 e p
|
||||
-0.8360 e r
|
||||
-1.2459 e s
|
||||
-1.5676 e t
|
||||
-2.6358 e u
|
||||
-1.3291 e v
|
||||
-1.1450 e w
|
||||
-1.5676 e y
|
||||
-2.6358 e z
|
||||
-1.7454 f a
|
||||
-1.7454 f b
|
||||
-1.7454 f c
|
||||
-0.7649 f e
|
||||
-1.2485 f f
|
||||
-0.7649 f i
|
||||
-1.0228 f o
|
||||
-0.7649 f r
|
||||
-1.0228 f t
|
||||
-1.3408 g a
|
||||
-2.2112 g c
|
||||
-2.2112 g d
|
||||
-0.1778 g h
|
||||
-1.1430 g i
|
||||
-1.2308 g l
|
||||
-2.2112 g m
|
||||
-2.2112 g n
|
||||
-2.2112 g o
|
||||
-1.7143 g r
|
||||
-2.2112 g s
|
||||
-2.2112 g t
|
||||
-2.2112 g v
|
||||
-0.6749 h a
|
||||
-1.3953 h b
|
||||
-1.6531 h c
|
||||
-2.3757 h d
|
||||
-1.2346 h e
|
||||
-1.5053 h f
|
||||
-1.6531 h g
|
||||
-1.5053 h h
|
||||
-1.3076 h i
|
||||
-1.8788 h j
|
||||
-1.3953 h l
|
||||
-1.5053 h m
|
||||
-1.5053 h n
|
||||
-0.9496 h o
|
||||
-1.5053 h p
|
||||
-1.6531 h r
|
||||
-1.2346 h s
|
||||
-1.3076 h t
|
||||
-2.3757 h u
|
||||
-1.8788 h v
|
||||
-2.3757 h w
|
||||
-1.8788 h y
|
||||
-1.6092 i a
|
||||
-1.7570 i b
|
||||
-1.0534 i c
|
||||
-1.6092 i d
|
||||
-1.2215 i e
|
||||
-1.6092 i f
|
||||
-1.7570 i g
|
||||
-2.4796 i j
|
||||
-2.4796 i k
|
||||
-1.2215 i l
|
||||
-1.4992 i m
|
||||
-0.8174 i n
|
||||
-2.4796 i o
|
||||
-2.4796 i p
|
||||
-2.4796 i r
|
||||
-1.4992 i s
|
||||
-0.4638 i t
|
||||
-2.4796 i u
|
||||
-1.4992 i v
|
||||
-0.9796 j a
|
||||
-0.4961 j e
|
||||
-0.4084 j o
|
||||
-1.4765 j u
|
||||
-0.9915 k a
|
||||
-1.3650 k b
|
||||
-1.8619 k c
|
||||
-1.8619 k d
|
||||
-0.7208 k e
|
||||
-1.8619 k f
|
||||
-1.8619 k g
|
||||
-1.8619 k h
|
||||
-1.1393 k i
|
||||
-1.8619 k j
|
||||
-1.3650 k k
|
||||
-1.8619 k l
|
||||
-1.3650 k p
|
||||
-1.8619 k r
|
||||
-1.8619 k s
|
||||
-1.8619 k u
|
||||
-1.3650 k w
|
||||
-1.3650 k y
|
||||
-0.9081 l a
|
||||
-1.6452 l b
|
||||
-2.3678 l c
|
||||
-1.0176 l d
|
||||
-0.6488 l e
|
||||
-2.3678 l f
|
||||
-2.3678 l g
|
||||
-0.9780 l i
|
||||
-2.3678 l j
|
||||
-1.8709 l k
|
||||
-0.8480 l l
|
||||
-1.6452 l m
|
||||
-1.3874 l o
|
||||
-2.3678 l p
|
||||
-1.4974 l s
|
||||
-2.3678 l t
|
||||
-1.6452 l u
|
||||
-2.3678 l w
|
||||
-1.6452 l y
|
||||
-2.3678 l z
|
||||
-0.4740 m a
|
||||
-2.0708 m c
|
||||
-0.9296 m e
|
||||
-1.0903 m i
|
||||
-1.5738 m m
|
||||
-2.0708 m n
|
||||
-0.7205 m o
|
||||
-1.2004 m p
|
||||
-1.3481 m s
|
||||
-2.0708 m u
|
||||
-2.0708 m y
|
||||
-1.1862 n a
|
||||
-1.9474 n b
|
||||
-1.3032 n c
|
||||
-1.0182 n d
|
||||
-0.7822 n e
|
||||
-1.7217 n f
|
||||
-1.2408 n g
|
||||
-2.4444 n h
|
||||
-1.0941 n i
|
||||
-2.4444 n j
|
||||
-1.7217 n k
|
||||
-2.4444 n l
|
||||
-1.5740 n m
|
||||
-1.2408 n n
|
||||
-1.5740 n o
|
||||
-1.2408 n p
|
||||
-1.7217 n r
|
||||
-1.3032 n s
|
||||
-1.1862 n t
|
||||
-1.7217 n u
|
||||
-2.4444 n x
|
||||
-2.4444 n y
|
||||
-2.4444 n z
|
||||
-1.5638 o a
|
||||
-1.5638 o b
|
||||
-2.4342 o c
|
||||
-1.1276 o d
|
||||
-2.4342 o e
|
||||
-1.7116 o f
|
||||
-1.7116 o h
|
||||
-2.4342 o k
|
||||
-1.2931 o l
|
||||
-1.2931 o m
|
||||
-0.6811 o n
|
||||
-1.0840 o o
|
||||
-1.7116 o p
|
||||
-0.8374 o r
|
||||
-1.4538 o s
|
||||
-1.9373 o t
|
||||
-1.2931 o u
|
||||
-1.1761 o w
|
||||
-1.9373 o y
|
||||
-2.4342 o z
|
||||
-1.4943 p a
|
||||
-2.2169 p e
|
||||
-1.4943 p g
|
||||
-1.1487 p h
|
||||
-0.2288 p i
|
||||
-1.2364 p l
|
||||
-2.2169 p n
|
||||
-1.3465 p o
|
||||
-1.4943 p r
|
||||
-1.4943 p s
|
||||
-2.2169 p u
|
||||
-2.2169 p y
|
||||
-0.3304 q u
|
||||
-1.2589 r a
|
||||
-1.7388 r b
|
||||
-1.8865 r c
|
||||
-1.4056 r d
|
||||
-0.9677 r e
|
||||
-2.6092 r f
|
||||
-0.6024 r g
|
||||
-1.0124 r i
|
||||
-1.3510 r k
|
||||
-1.3510 r l
|
||||
-2.1122 r m
|
||||
-1.6287 r n
|
||||
-0.9677 r o
|
||||
-2.6092 r p
|
||||
-1.4680 r r
|
||||
-1.7388 r s
|
||||
-1.4680 r t
|
||||
-2.1122 r u
|
||||
-2.6092 r w
|
||||
-1.4680 r y
|
||||
-1.7116 s a
|
||||
-0.4367 s b
|
||||
-2.4342 s c
|
||||
-1.1761 s e
|
||||
-1.4538 s h
|
||||
-1.9373 s j
|
||||
-1.4538 s k
|
||||
-2.4342 s l
|
||||
-1.4538 s m
|
||||
-2.4342 s n
|
||||
-1.0840 s o
|
||||
-1.2306 s p
|
||||
-1.5638 s s
|
||||
-0.8872 s t
|
||||
-1.9373 s u
|
||||
-1.9373 s v
|
||||
-1.5638 s w
|
||||
-2.0665 t a
|
||||
-2.5634 t b
|
||||
-0.9666 t e
|
||||
-2.5634 t g
|
||||
-1.0726 t h
|
||||
-1.5830 t i
|
||||
-2.5634 t l
|
||||
-2.0665 t m
|
||||
-2.0665 t n
|
||||
-1.4223 t o
|
||||
-1.4952 t p
|
||||
-1.5830 t r
|
||||
-0.5753 t s
|
||||
-0.4969 t t
|
||||
-1.6930 t z
|
||||
-2.2280 u b
|
||||
-2.2280 u c
|
||||
-2.2280 u d
|
||||
-1.3576 u e
|
||||
-1.7311 u g
|
||||
-1.5054 u l
|
||||
-1.7311 u m
|
||||
-1.7311 u n
|
||||
-2.2280 u p
|
||||
-2.2280 u q
|
||||
-0.1695 u r
|
||||
-1.2476 u s
|
||||
-1.7311 u t
|
||||
-0.7807 v a
|
||||
-0.2292 v e
|
||||
-0.7807 v i
|
||||
-1.8489 v k
|
||||
-0.8327 w a
|
||||
-1.9739 w b
|
||||
-1.9739 w d
|
||||
-1.2512 w e
|
||||
-1.9739 w g
|
||||
-1.4769 w h
|
||||
-0.8327 w i
|
||||
-1.9739 w l
|
||||
-0.9934 w n
|
||||
-0.7157 w o
|
||||
-1.9739 w p
|
||||
-1.4769 w r
|
||||
-1.9739 w t
|
||||
-1.9739 w w
|
||||
-1.4769 w y
|
||||
-0.3304 x v
|
||||
-1.8745 y a
|
||||
-1.3776 y b
|
||||
-1.3776 y c
|
||||
-1.1518 y d
|
||||
-1.8745 y e
|
||||
-1.8745 y g
|
||||
-1.3776 y h
|
||||
-1.3776 y j
|
||||
-0.8940 y l
|
||||
-1.3776 y m
|
||||
-1.3776 y n
|
||||
-1.3776 y o
|
||||
-1.0041 y p
|
||||
-1.3776 y s
|
||||
-1.8745 y t
|
||||
-1.3776 y v
|
||||
-1.8745 y w
|
||||
-1.2335 z b
|
||||
-0.5109 z e
|
||||
-1.2335 z i
|
||||
-1.2335 z j
|
||||
-1.2335 z l
|
||||
-1.2335 z p
|
||||
|
||||
\end\
|
||||
|
|
@ -0,0 +1,88 @@
|
|||
#FSTBasic MinPlus
|
||||
I 2
|
||||
F 0 3.40644
|
||||
T 0 1 <unknown> <unknown> 3.32954
|
||||
T 0 4 a a 3.32954
|
||||
T 0 5 b b 3.32954
|
||||
T 0 6 c c 3.32954
|
||||
T 0 7 d d 3.32954
|
||||
T 0 8 e e 3.32954
|
||||
T 0 9 f f 3.32954
|
||||
T 0 10 g g 3.32954
|
||||
T 0 11 h h 3.32954
|
||||
T 0 12 i i 3.32954
|
||||
T 0 13 j j 3.32954
|
||||
T 0 14 k k 3.32954
|
||||
T 0 15 l l 3.32954
|
||||
T 0 16 m m 3.32954
|
||||
T 0 17 n n 3.32954
|
||||
T 0 18 o o 3.32954
|
||||
T 0 19 p p 3.32954
|
||||
T 0 20 q q 3.32954
|
||||
T 0 21 r r 3.32954
|
||||
T 0 22 s s 3.32954
|
||||
T 0 23 t t 3.32954
|
||||
T 0 24 u u 3.32954
|
||||
T 0 25 v v 3.32954
|
||||
T 0 26 w w 3.32954
|
||||
T 0 27 x x 3.32954
|
||||
T 0 28 y y 3.32954
|
||||
T 0 29 z z 3.32954
|
||||
F 1 3.40644
|
||||
T 1 0
|
||||
F 2 3.40644
|
||||
T 2 0
|
||||
F 3 3.40644
|
||||
T 3 0
|
||||
F 4 3.40644
|
||||
T 4 0
|
||||
F 5 3.40644
|
||||
T 5 0
|
||||
F 6 3.40644
|
||||
T 6 0
|
||||
F 7 3.40644
|
||||
T 7 0
|
||||
F 8 3.40644
|
||||
T 8 0
|
||||
F 9 3.40644
|
||||
T 9 0
|
||||
F 10 3.40644
|
||||
T 10 0
|
||||
F 11 3.40644
|
||||
T 11 0
|
||||
F 12 3.40644
|
||||
T 12 0
|
||||
F 13 3.40644
|
||||
T 13 0
|
||||
F 14 3.40644
|
||||
T 14 0
|
||||
F 15 3.40644
|
||||
T 15 0
|
||||
F 16 3.40644
|
||||
T 16 0
|
||||
F 17 3.40644
|
||||
T 17 0
|
||||
F 18 3.40644
|
||||
T 18 0
|
||||
F 19 3.40644
|
||||
T 19 0
|
||||
F 20 3.40644
|
||||
T 20 0
|
||||
F 21 3.40644
|
||||
T 21 0
|
||||
F 22 3.40644
|
||||
T 22 0
|
||||
F 23 3.40644
|
||||
T 23 0
|
||||
F 24 3.40644
|
||||
T 24 0
|
||||
F 25 3.40644
|
||||
T 25 0
|
||||
F 26 3.40644
|
||||
T 26 0
|
||||
F 27 3.40644
|
||||
T 27 0
|
||||
F 28 3.40644
|
||||
T 28 0
|
||||
F 29 3.40644
|
||||
T 29 0
|
||||
|
|
@ -0,0 +1,71 @@
|
|||
#############################################################################
|
||||
## Copyright (c) 1996, Carnegie Mellon University, Cambridge University,
|
||||
## Ronald Rosenfeld and Philip Clarkson
|
||||
#############################################################################
|
||||
=============================================================================
|
||||
=============== This file was produced by the CMU-Cambridge ===============
|
||||
=============== Statistical Language Modeling Toolkit ===============
|
||||
=============================================================================
|
||||
This is a 1-gram language model, based on a vocabulary of 28 words,
|
||||
which begins "<s>", "a", "b"...
|
||||
This is an OPEN-vocabulary model (type 1)
|
||||
(OOVs were mapped to UNK, which is treated as any other vocabulary word)
|
||||
Good-Turing discounting was applied.
|
||||
1-gram frequency of frequency : 27
|
||||
1-gram discounting ratios : 0.93
|
||||
This file is in the ARPA-standard format introduced by Doug Paul.
|
||||
|
||||
p(wd3|wd1,wd2)= if(trigram exists) p_3(wd1,wd2,wd3)
|
||||
else if(bigram w1,w2 exists) bo_wt_2(w1,w2)*p(wd3|wd2)
|
||||
else p(wd3|w2)
|
||||
|
||||
p(wd2|wd1)= if(bigram exists) p_2(wd1,wd2)
|
||||
else bo_wt_1(wd1)*p_1(wd2)
|
||||
|
||||
All probs and back-off weights (bo_wt) are given in log10 form.
|
||||
|
||||
Data formats:
|
||||
|
||||
Beginning of data mark: \data\
|
||||
ngram 1=nr # number of 1-grams
|
||||
|
||||
\1-grams:
|
||||
p_1 wd_1
|
||||
|
||||
end of data mark: \end\
|
||||
|
||||
\data\
|
||||
ngram 1=29
|
||||
|
||||
\1-grams:
|
||||
-1.4460 <UNK> 0.0000
|
||||
-99.0000 <s> 0.0000
|
||||
-1.4460 a 0.0000
|
||||
-1.4460 b 0.0000
|
||||
-1.4460 c 0.0000
|
||||
-1.4460 d 0.0000
|
||||
-1.4460 e 0.0000
|
||||
-1.4460 f 0.0000
|
||||
-1.4460 g 0.0000
|
||||
-1.4460 h 0.0000
|
||||
-1.4460 i 0.0000
|
||||
-1.4460 j 0.0000
|
||||
-1.4460 k 0.0000
|
||||
-1.4460 l 0.0000
|
||||
-1.4460 m 0.0000
|
||||
-1.4460 n 0.0000
|
||||
-1.4460 o 0.0000
|
||||
-1.4460 p 0.0000
|
||||
-1.4460 q 0.0000
|
||||
-1.4460 r 0.0000
|
||||
-1.4460 s 0.0000
|
||||
-1.4460 t 0.0000
|
||||
-1.4460 u 0.0000
|
||||
-1.4460 v 0.0000
|
||||
-1.4460 w 0.0000
|
||||
-1.4460 x 0.0000
|
||||
-1.4460 y 0.0000
|
||||
-1.4460 z 0.0000
|
||||
-1.4794 </s> 0.0000
|
||||
|
||||
\end\
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,88 @@
|
|||
#FSTBasic MinPlus
|
||||
I 2
|
||||
F 0 8.07908
|
||||
T 0 1 <unknown> <unknown> 8.07908
|
||||
T 0 4 a a 2.63001
|
||||
T 0 5 b b 3.23099
|
||||
T 0 6 c c 3.7615
|
||||
T 0 7 d d 3.43937
|
||||
T 0 8 e e 2.36522
|
||||
T 0 9 f f 4.41544
|
||||
T 0 10 g g 3.34289
|
||||
T 0 11 h h 2.96412
|
||||
T 0 12 i i 2.72488
|
||||
T 0 13 j j 5.03437
|
||||
T 0 14 k k 4.14719
|
||||
T 0 15 l l 2.98208
|
||||
T 0 16 m m 3.66618
|
||||
T 0 17 n n 2.80593
|
||||
T 0 18 o o 2.82942
|
||||
T 0 19 p p 3.32977
|
||||
T 0 20 q q 8.07908
|
||||
T 0 21 r r 2.42646
|
||||
T 0 22 s s 2.82942
|
||||
T 0 23 t t 2.53192
|
||||
T 0 24 u u 3.30398
|
||||
T 0 25 v v 4.17712
|
||||
T 0 26 w w 3.8893
|
||||
T 0 27 x x 8.07908
|
||||
T 0 28 y y 4.11817
|
||||
T 0 29 z z 5.59413
|
||||
F 1 8.07908
|
||||
T 1 0
|
||||
F 2 8.07908
|
||||
T 2 0
|
||||
F 3 8.07908
|
||||
T 3 0
|
||||
F 4 8.07908
|
||||
T 4 0
|
||||
F 5 8.07908
|
||||
T 5 0
|
||||
F 6 8.07908
|
||||
T 6 0
|
||||
F 7 8.07908
|
||||
T 7 0
|
||||
F 8 8.07908
|
||||
T 8 0
|
||||
F 9 8.07908
|
||||
T 9 0
|
||||
F 10 8.07908
|
||||
T 10 0
|
||||
F 11 8.07908
|
||||
T 11 0
|
||||
F 12 8.07908
|
||||
T 12 0
|
||||
F 13 8.07908
|
||||
T 13 0
|
||||
F 14 8.07908
|
||||
T 14 0
|
||||
F 15 8.07908
|
||||
T 15 0
|
||||
F 16 8.07908
|
||||
T 16 0
|
||||
F 17 8.07908
|
||||
T 17 0
|
||||
F 18 8.07908
|
||||
T 18 0
|
||||
F 19 8.07908
|
||||
T 19 0
|
||||
F 20 8.07908
|
||||
T 20 0
|
||||
F 21 8.07908
|
||||
T 21 0
|
||||
F 22 8.07908
|
||||
T 22 0
|
||||
F 23 8.07908
|
||||
T 23 0
|
||||
F 24 8.07908
|
||||
T 24 0
|
||||
F 25 8.07908
|
||||
T 25 0
|
||||
F 26 8.07908
|
||||
T 26 0
|
||||
F 27 8.07908
|
||||
T 27 0
|
||||
F 28 8.07908
|
||||
T 28 0
|
||||
F 29 8.07908
|
||||
T 29 0
|
||||
|
|
@ -0,0 +1,71 @@
|
|||
#############################################################################
|
||||
## Copyright (c) 1996, Carnegie Mellon University, Cambridge University,
|
||||
## Ronald Rosenfeld and Philip Clarkson
|
||||
#############################################################################
|
||||
=============================================================================
|
||||
=============== This file was produced by the CMU-Cambridge ===============
|
||||
=============== Statistical Language Modeling Toolkit ===============
|
||||
=============================================================================
|
||||
This is a 1-gram language model, based on a vocabulary of 28 words,
|
||||
which begins "<s>", "a", "b"...
|
||||
This is an OPEN-vocabulary model (type 1)
|
||||
(OOVs were mapped to UNK, which is treated as any other vocabulary word)
|
||||
Good-Turing discounting was applied.
|
||||
1-gram frequency of frequency : 4
|
||||
1-gram discounting ratios : 0.67
|
||||
This file is in the ARPA-standard format introduced by Doug Paul.
|
||||
|
||||
p(wd3|wd1,wd2)= if(trigram exists) p_3(wd1,wd2,wd3)
|
||||
else if(bigram w1,w2 exists) bo_wt_2(w1,w2)*p(wd3|wd2)
|
||||
else p(wd3|w2)
|
||||
|
||||
p(wd2|wd1)= if(bigram exists) p_2(wd1,wd2)
|
||||
else bo_wt_1(wd1)*p_1(wd2)
|
||||
|
||||
All probs and back-off weights (bo_wt) are given in log10 form.
|
||||
|
||||
Data formats:
|
||||
|
||||
Beginning of data mark: \data\
|
||||
ngram 1=nr # number of 1-grams
|
||||
|
||||
\1-grams:
|
||||
p_1 wd_1
|
||||
|
||||
end of data mark: \end\
|
||||
|
||||
\data\
|
||||
ngram 1=29
|
||||
|
||||
\1-grams:
|
||||
-3.5087 <UNK> 0.0000
|
||||
-98.9999 <s> 0.0000
|
||||
-1.1422 a 0.0000
|
||||
-1.4032 b 0.0000
|
||||
-1.6336 c 0.0000
|
||||
-1.4937 d 0.0000
|
||||
-1.0272 e 0.0000
|
||||
-1.9176 f 0.0000
|
||||
-1.4518 g 0.0000
|
||||
-1.2873 h 0.0000
|
||||
-1.1834 i 0.0000
|
||||
-2.1864 j 0.0000
|
||||
-1.8011 k 0.0000
|
||||
-1.2951 l 0.0000
|
||||
-1.5922 m 0.0000
|
||||
-1.2186 n 0.0000
|
||||
-1.2288 o 0.0000
|
||||
-1.4461 p 0.0000
|
||||
-3.5087 q 0.0000
|
||||
-1.0538 r 0.0000
|
||||
-1.2288 s 0.0000
|
||||
-1.0996 t 0.0000
|
||||
-1.4349 u 0.0000
|
||||
-1.8141 v 0.0000
|
||||
-1.6891 w 0.0000
|
||||
-3.5087 x 0.0000
|
||||
-1.7885 y 0.0000
|
||||
-2.4295 z 0.0000
|
||||
-3.5087 </s> 0.0000
|
||||
|
||||
\end\
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
a
|
||||
b
|
||||
c
|
||||
d
|
||||
e
|
||||
f
|
||||
g
|
||||
h
|
||||
i
|
||||
j
|
||||
k
|
||||
l
|
||||
m
|
||||
n
|
||||
o
|
||||
p
|
||||
q
|
||||
r
|
||||
s
|
||||
t
|
||||
u
|
||||
v
|
||||
w
|
||||
x
|
||||
y
|
||||
z
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
467
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_words.batch
Normal file
467
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_words.batch
Normal file
|
|
@ -0,0 +1,467 @@
|
|||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/an251-fash-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/an253-fash-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/an254-fash-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/cen7-fash-b.raw two six eight four four one eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/an87-fbbh-b.raw enter six two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/an90-fbbh-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen3-fbbh-b.raw fifty one fifty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen6-fbbh-b.raw one five oh four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen7-fbbh-b.raw four four three six three one two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen8-fbbh-b.raw march third nineteen twenty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/an149-fclc-b.raw enter nine eighty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen3-fclc-b.raw five five three five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen6-fclc-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen7-fclc-b.raw six eight seven five eight oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen8-fclc-b.raw june eleventh nineteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/an38-fejs-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen3-fejs-b.raw one zero six five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen6-fejs-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen7-fejs-b.raw two six eight three eight zero two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen8-fejs-b.raw two fifteen sixty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/an291-ffmm-b.raw enter five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/an292-ffmm-b.raw enter seventy eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen3-ffmm-b.raw fifty six thirty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen6-ffmm-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen7-ffmm-b.raw four one two four two one eight eight nine six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen8-ffmm-b.raw september fifteenth nineteen sixty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/an76-fjam-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/an80-fjam-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen3-fjam-b.raw seven fifty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen6-fjam-b.raw one five one three three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen7-fjam-b.raw six six four seven two nine three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen8-fjam-b.raw may twenty first nineteen sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an121-fjdn-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an122-fjdn-b.raw enter eight two four two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an123-fjdn-b.raw enter fifty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an125-fjdn-b.raw enter fifteen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen3-fjdn-b.raw thirty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen6-fjdn-b.raw oh seven nine two two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen7-fjdn-b.raw two oh one four six four six oh eight three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen8-fjdn-b.raw march twentieth nineteen seventy
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/an6-fjmd-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen3-fjmd-b.raw one ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen6-fjmd-b.raw one seven three six eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen7-fjmd-b.raw two five two two oh two nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen8-fjmd-b.raw eleven nine sixty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/an315-fkai-b.raw enter fifty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen3-fkai-b.raw one thousand
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen6-fkai-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen7-fkai-b.raw four four four seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen8-fkai-b.raw october first nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/an132-fkdo-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/an133-fkdo-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/an134-fkdo-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen3-fkdo-b.raw two two nine three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen6-fkdo-b.raw one five two one oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen7-fkdo-b.raw eight eight two eight one oh two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen8-fkdo-b.raw five twenty six forty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an61-flmm2-b.raw enter seven oh three eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an62-flmm2-b.raw enter five zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an63-flmm2-b.raw enter five three four three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an64-flmm2-b.raw enter four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen3-flmm2-b.raw three four eight zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen6-flmm2-b.raw one five six six eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen7-flmm2-b.raw three two seven one six nine five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/an22-flrp-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/an24-flrp-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen3-flrp-b.raw fifty one fifteen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen6-flrp-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen7-flrp-b.raw two six eight five nine five two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen8-flrp-b.raw three twenty seven sixty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/an119-fmjc-b.raw enter thirty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen3-fmjc-b.raw five six one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen6-fmjc-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen7-fmjc-b.raw four two one oh four five one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen8-fmjc-b.raw nine twenty three sixty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/an191-fmjd-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen3-fmjd-b.raw six five three four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen6-fmjd-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen7-fmjd-b.raw four two one oh one nine six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen8-fmjd-b.raw seven fourteen sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/an182-fnsv-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/an184-fnsv-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/an185-fnsv-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen3-fnsv-b.raw fifty six oh five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen6-fnsv-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen7-fnsv-b.raw six six one five zero six four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen8-fnsv-b.raw january fifteenth nineteen sixty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/an93-fplp-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen3-fplp-b.raw one two four one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen6-fplp-b.raw one five two two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen7-fplp-b.raw eight eight four one zero five seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen8-fplp-b.raw six seventeen thirty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/an298-fsaf2-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen3-fsaf2-b.raw one twenty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen6-fsaf2-b.raw one oh seven oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen7-fsaf2-b.raw nine one four three three seven one eight six nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen8-fsaf2-b.raw five sixteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/an167-fsrb-b.raw enter forty seven forty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/an169-fsrb-b.raw enter sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/an170-fsrb-b.raw enter four fifty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen3-fsrb-b.raw thirty two thirty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen6-fsrb-b.raw one five two four one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen7-fsrb-b.raw four one two eight three one nine five one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen8-fsrb-b.raw december eighteenth nineteen forty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/an326-ftal-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/an327-ftal-b.raw enter seven seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/an330-ftal-b.raw enter two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen3-ftal-b.raw four oh three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen6-ftal-b.raw one five two three nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen7-ftal-b.raw two six eight three zero two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen8-ftal-b.raw ten one sixty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/an211-ftmj-b.raw enter sixty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/an214-ftmj-b.raw enter seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/an215-ftmj-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen3-ftmj-b.raw twenty two twenty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen6-ftmj-b.raw one five two one eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen7-ftmj-b.raw two seven one zero eight two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen8-ftmj-b.raw july thirtieth nineteen sixty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/an222-fwxs-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/an223-fwxs-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/an225-fwxs-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen3-fwxs-b.raw two ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen6-fwxs-b.raw one five one four three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen7-fwxs-b.raw seven four one oh five nine two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/an374-mblb-b.raw enter thirty eight sixty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/an375-mblb-b.raw enter forty three forty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen3-mblb-b.raw one ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen6-mblb-b.raw oh six seven oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen7-mblb-b.raw two oh three seven five seven eight eight nine nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen8-mblb-b.raw july twelfth nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/an3-mblw-b.raw enter sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/an4-mblw-b.raw enter seventy two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/an5-mblw-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen3-mblw-b.raw forty three twenty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen6-mblw-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen7-mblw-b.raw four two two oh eight one six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen8-mblw-b.raw one sixteen forty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/an266-mbmg-b.raw enter fifty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/an270-mbmg-b.raw enter one forty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen3-mbmg-b.raw three oh one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen6-mbmg-b.raw one nine three three five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen7-mbmg-b.raw two one five four five eight five four six nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen8-mbmg-b.raw september twenty seventh nineteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an201-mcel-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an202-mcel-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an203-mcel-b.raw enter eight one nine six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an204-mcel-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen3-mcel-b.raw six three eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen6-mcel-b.raw nine four oh eight six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen8-mcel-b.raw twelve nine of sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an126-mcen-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an127-mcen-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an129-mcen-b.raw enter sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an130-mcen-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen6-mcen-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen7-mcen-b.raw five two one sixty fifty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen8-mcen-b.raw three fourteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/an261-mcfl-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/an264-mcfl-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/an265-mcfl-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen3-mcfl-b.raw one four eight two three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen6-mcfl-b.raw four four oh six five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen7-mcfl-b.raw six four five three three six four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen8-mcfl-b.raw eight fourteen sixty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an141-mcrt-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an142-mcrt-b.raw enter ninety four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an143-mcrt-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an145-mcrt-b.raw enter six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen3-mcrt-b.raw three oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen6-mcrt-b.raw one five two oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen7-mcrt-b.raw three six three oh nine six two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen8-mcrt-b.raw seven may nineteen forty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an231-mcsc-b.raw enter five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an232-mcsc-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an233-mcsc-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an234-mcsc-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an235-mcsc-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen3-mcsc-b.raw one zero zero six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen6-mcsc-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen7-mcsc-b.raw seven three one one three three eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen8-mcsc-b.raw three twelve fifty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/an241-mdcs-b.raw enter fifty sixty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/an243-mdcs-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen6-mdcs-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen7-mdcs-b.raw four one two four two two three five seven eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen8-mdcs-b.raw august sixteenth nineteen sixty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen3-mdcs2-b.raw fourteen fourteen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen6-mdcs2-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen7-mdcs2-b.raw four two one six two eight three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen8-mdcs2-b.raw september first nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen3-mdmc-b.raw five ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen6-mdmc-b.raw one five two oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen7-mdmc-b.raw three six one zero one five five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen8-mdmc-b.raw ninth of september nineteen sixty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/an106-mdxn-b.raw enter zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/an108-mdxn-b.raw enter forty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/an110-mdxn-b.raw enter sixty two thirty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen3-mdxn-b.raw one oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen6-mdxn-b.raw one four eight five oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen7-mdxn-b.raw two six eight four one six one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen8-mdxn-b.raw seven fifteen nineteen seventy
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an26-mdxs-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an28-mdxs-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an29-mdxs-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an30-mdxs-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen3-mdxs-b.raw three seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen6-mdxs-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen7-mdxs-b.raw four one two six eight seven eight eight seven one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen8-mdxs-b.raw july twenty nine nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/an139-meab-b.raw enter eight thirty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen3-meab-b.raw three one two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen6-meab-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen7-meab-b.raw four one two two four two six six two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen8-meab-b.raw six sixteen sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an66-meht-b.raw enter four thousand eight hundred eighty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an67-meht-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an69-meht-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an70-meht-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen3-meht-b.raw fifty six sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen6-meht-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen7-meht-b.raw four one two five two one two eight two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen8-meht-b.raw four seven sixty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/an286-mema-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/an288-mema-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/an289-mema-b.raw enter nine eight nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen3-mema-b.raw seven three zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen6-mema-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen7-mema-b.raw two four three eight three two eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/an256-mewl-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/an258-mewl-b.raw enter fourteen
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/an259-mewl-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen6-mewl-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen7-mewl-b.raw two six eight four six five eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen8-mewl-b.raw twelve four sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/an163-mfaa-b.raw enter ninety eight twenty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen3-mfaa-b.raw five six three one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen6-mfaa-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen7-mfaa-b.raw five two one oh two six eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen8-mfaa-b.raw ten thirty one fifty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an196-mgah-b.raw enter seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an197-mgah-b.raw enter four twenty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an198-mgah-b.raw enter one ninety six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an199-mgah-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an200-mgah-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen3-mgah-b.raw one two zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen6-mgah-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen7-mgah-b.raw six eight three five zero four one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen8-mgah-b.raw august twenty second nineteen sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an246-mjbh-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an247-mjbh-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an249-mjbh-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an250-mjbh-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen3-mjbh-b.raw five six four zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen6-mjbh-b.raw one five two zero six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen7-mjbh-b.raw two six eight three zero six six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen8-mjbh-b.raw seven twenty nine fifty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/an172-mjda-b.raw enter eight seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/an174-mjda-b.raw enter five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/an175-mjda-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen3-mjda-b.raw seven thirty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen6-mjda-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen7-mjda-b.raw two six eight three oh five four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen8-mjda-b.raw january twelfth nineteen sixty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/an18-mjdr-b.raw enter four fifty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen3-mjdr-b.raw four seven two zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen6-mjdr-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen7-mjdr-b.raw four one two six eight one one eight four two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen8-mjdr-b.raw oh six oh seven six six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/an157-mjes-b.raw enter thirty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/an159-mjes-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen3-mjes-b.raw thirty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen6-mjes-b.raw one oh oh two eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen7-mjes-b.raw two one two five seven oh two seven eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen8-mjes-b.raw august twenty second nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an217-mjgk-b.raw enter eight seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an218-mjgk-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an219-mjgk-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an220-mjgk-b.raw enter three eighty six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen6-mjgk-b.raw one five two three eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen7-mjgk-b.raw four two two two oh eight nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen8-mjgk-b.raw june twenty third nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/an60-mjhp-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen3-mjhp-b.raw one five three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen6-mjhp-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen7-mjhp-b.raw four one two five two one eight two six oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen8-mjhp-b.raw seven seventeen fifty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/an177-mjjs2-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/an178-mjjs2-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/an180-mjjs2-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen6-mjjs2-b.raw one five two zero seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen7-mjjs2-b.raw four two two zero seven nine one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen8-mjjs2-b.raw february eighth nineteen fifty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/an317-mkdb-b.raw enter seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/an318-mkdb-b.raw enter four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen3-mkdb-b.raw fifty seven fourteen a
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen6-mkdb-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen7-mkdb-b.raw five two one four nine five four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen8-mkdb-b.raw march twenty fifth nineteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/an187-mkem-b.raw enter one thirty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/an189-mkem-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen6-mkem-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen7-mkem-b.raw three oh eight five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen8-mkem-b.raw may ninth sixty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/an52-mmaf-b.raw enter seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/an54-mmaf-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/an55-mmaf-b.raw enter ninety five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen3-mmaf-b.raw five two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen6-mmaf-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen7-mmaf-b.raw four four one one seven two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen8-mmaf-b.raw september sixth nineteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/an323-mmal-b.raw enter two oh five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/an324-mmal-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/an325-mmal-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen3-mmal-b.raw fifty three forty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen6-mmal-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen7-mmal-b.raw six eight one seven seven five two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen8-mmal-b.raw ten twelve sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/an46-mmap-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/an47-mmap-b.raw enter seven two one six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/an48-mmap-b.raw enter one nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen3-mmap-b.raw six thirty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen6-mmap-b.raw one five two oh five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen7-mmap-b.raw nine two two seven two two zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen8-mmap-b.raw twelve twenty one fifty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an337-mmdg-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an338-mmdg-b.raw enter six one two five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an339-mmdg-b.raw enter two five four six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an340-mmdg-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen3-mmdg-b.raw six three two three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen6-mmdg-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen7-mmdg-b.raw four one two five two one five three three nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen8-mmdg-b.raw two twenty four forty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/an364-mmkw-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen3-mmkw-b.raw three two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen6-mmkw-b.raw two nine six six two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen7-mmkw-b.raw eight oh three two three four five nine seven two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen8-mmkw-b.raw eighteen february nineteen seventy
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/an383-mmsh-b.raw enter sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/an385-mmsh-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen3-mmsh-b.raw three four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen6-mmsh-b.raw one nine oh oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen7-mmsh-b.raw six eight three one five five eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen8-mmsh-b.raw april thirtieth nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/an386-mmtm-b.raw enter six four five one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/an388-mmtm-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/an390-mmtm-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen3-mmtm-b.raw one eleven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen6-mmtm-b.raw one five one four seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen7-mmtm-b.raw seven nine three five four two nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen8-mmtm-b.raw august twenty fourth nineteen fifty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/an347-mnfe-b.raw help
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/an348-mnfe-b.raw enter eight twenty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/an350-mnfe-b.raw enter three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen3-mnfe-b.raw ten seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen6-mnfe-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen7-mnfe-b.raw two six eight five five two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen8-mnfe-b.raw four twenty eight seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/an81-mnjl-b.raw enter eighty nine forty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/an83-mnjl-b.raw enter six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/an84-mnjl-b.raw enter seven thirty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen3-mnjl-b.raw one thousand
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen6-mnjl-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen7-mnjl-b.raw four one two two six eight four four seven four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen8-mnjl-b.raw twelve nineteen sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/an72-mrab-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/an73-mrab-b.raw enter two oh seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen3-mrab-b.raw one twenty two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen6-mrab-b.raw one six oh six three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen7-mrab-b.raw four five two eight five one eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen8-mrab-b.raw three twenty eight sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/an102-mrcb-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/an104-mrcb-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/an105-mrcb-b.raw enter eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen3-mrcb-b.raw one two five two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen6-mrcb-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen7-mrcb-b.raw area code four one two four two two one two two five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen8-mrcb-b.raw october thirtieth nineteen sixty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an236-mrjc2-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an237-mrjc2-b.raw enter seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an238-mrjc2-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an240-mrjc2-b.raw enter nine seventy two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen3-mrjc2-b.raw sixty seven ten
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen6-mrjc2-b.raw one five two oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen7-mrjc2-b.raw six six five nine six six five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen8-mrjc2-b.raw five two five five five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/an281-mrmg-b.raw enter two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/an282-mrmg-b.raw go
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/an284-mrmg-b.raw enter six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen3-mrmg-b.raw one oh two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen6-mrmg-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen7-mrmg-b.raw two four two two nine one two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen8-mrmg-b.raw one seven forty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/an356-mscg2-b.raw enter fifty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/an357-mscg2-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/an360-mscg2-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen3-mscg2-b.raw five one one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen6-mscg2-b.raw one five two two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen7-mscg2-b.raw two six eight four six seven eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen8-mscg2-b.raw three eleven sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/an341-msct-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/an343-msct-b.raw enter twenty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen3-msct-b.raw five one nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen6-msct-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen7-msct-b.raw six eight three three seven eight zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen8-msct-b.raw nine thirty sixty five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/an226-msjm-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/an229-msjm-b.raw repeat
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/an230-msjm-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen3-msjm-b.raw one two two two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen6-msjm-b.raw one five one one six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen7-msjm-b.raw four eight six three nine five oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen8-msjm-b.raw twelve twenty four sixty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/an352-msjr-b.raw enter two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/an353-msjr-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/an355-msjr-b.raw enter six seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen3-msjr-b.raw eight forty one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen6-msjr-b.raw one five one four seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen7-msjr-b.raw eight two six eight six eight seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen8-msjr-b.raw one thirty one sixty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an100-mskh-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an96-mskh-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an97-mskh-b.raw enter seventy one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an98-mskh-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen3-mskh-b.raw six zero one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen6-mskh-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen7-mskh-b.raw six six one nine eight eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen8-mskh-b.raw six twenty six sixty three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/an277-msmn-b.raw no
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/cen6-msmn-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/cen7-msmn-b.raw four one two four two two nine eight two eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/an331-msrb-b.raw enter nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/an333-msrb-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/an335-msrb-b.raw enter seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen3-msrb-b.raw one three six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen6-msrb-b.raw one five one oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen7-msrb-b.raw two seven nine two three two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen8-msrb-b.raw six three sixty eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/an304-mtcv-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/an305-mtcv-b.raw enter eight zero six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen3-mtcv-b.raw eight four six seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen6-mtcv-b.raw four four four eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen7-mtcv-b.raw eight five six one four nine zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen8-mtcv-b.raw one two seven six three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/an32-mtje-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/an34-mtje-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen3-mtje-b.raw four oh one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen6-mtje-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen7-mtje-b.raw four one two six eight seven nine five two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen8-mtje-b.raw ten twenty eight sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/an369-mtos-b.raw yes
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen6-mtos-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen7-mtos-b.raw four eight four two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen8-mtos-b.raw twelve ten sixty nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an376-mtxj-b.raw enter five two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an378-mtxj-b.raw enter sixty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an379-mtxj-b.raw stop
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an380-mtxj-b.raw enter six oh eight oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen3-mtxj-b.raw one hundred
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen6-mtxj-b.raw one five oh one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen7-mtxj-b.raw nine three five oh six nine two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen8-mtxj-b.raw october twenty third nineteen sixty seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/an152-mwhw-b.raw start
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/an155-mwhw-b.raw enter sixty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen3-mwhw-b.raw one fifty
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen6-mwhw-b.raw one five oh four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen7-mwhw-b.raw six two five one five six four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen8-mwhw-b.raw eleven seventeen fifty one
|
||||
|
|
@ -0,0 +1,578 @@
|
|||
#FSTBasic MinPlus
|
||||
I 2
|
||||
F 0 8.10993
|
||||
T 0 1 <unknown> <unknown> 8.10993
|
||||
T 0 4 a a 8.10993
|
||||
T 0 5 april april 8.10993
|
||||
T 0 6 area area 8.10993
|
||||
T 0 7 august august 6.23793
|
||||
T 0 8 code code 8.10993
|
||||
T 0 9 december december 8.10993
|
||||
T 0 10 eight eight 2.74537
|
||||
T 0 11 eighteen eighteen 8.10993
|
||||
T 0 12 eighteenth eighteenth 8.10993
|
||||
T 0 13 eighth eighth 8.10993
|
||||
T 0 14 eighty eighty 6.23793
|
||||
T 0 15 eleven eleven 6.23793
|
||||
T 0 16 eleventh eleventh 8.10993
|
||||
T 0 17 enter enter 3.07833
|
||||
T 0 18 february february 7.06848
|
||||
T 0 19 fifteen fifteen 6.23793
|
||||
T 0 20 fifteenth fifteenth 7.06848
|
||||
T 0 21 fifth fifth 8.10993
|
||||
T 0 22 fifty fifty 4.26324
|
||||
T 0 23 first first 6.56927
|
||||
T 0 24 five five 2.4313
|
||||
T 0 25 forty forty 4.7599
|
||||
T 0 26 four four 2.671
|
||||
T 0 27 fourteen fourteen 5.62499
|
||||
T 0 28 fourth fourth 8.10993
|
||||
T 0 29 go go 5.24759
|
||||
T 0 30 help help 5.0574
|
||||
T 0 31 hundred hundred 7.06848
|
||||
T 0 32 january january 7.06848
|
||||
T 0 33 july july 6.56927
|
||||
T 0 34 june june 7.06848
|
||||
T 0 35 march march 6.56927
|
||||
T 0 36 may may 6.56927
|
||||
T 0 37 nine nine 3.27612
|
||||
T 0 38 nineteen nineteen 4.11771
|
||||
T 0 39 ninety ninety 6.23793
|
||||
T 0 40 ninth ninth 7.06848
|
||||
T 0 41 no no 4.7599
|
||||
T 0 42 october october 6.56927
|
||||
T 0 43 of of 7.06848
|
||||
T 0 44 oh oh 3.48657
|
||||
T 0 45 one one 2.02489
|
||||
T 0 46 repeat repeat 4.6975
|
||||
T 0 47 second second 7.06848
|
||||
T 0 48 september september 5.98948
|
||||
T 0 49 seven seven 2.89297
|
||||
T 0 50 seventeen seventeen 6.56927
|
||||
T 0 51 seventh seventh 8.10993
|
||||
T 0 52 seventy seventy 5.0574
|
||||
T 0 53 six six 2.64751
|
||||
T 0 54 sixteen sixteen 6.56927
|
||||
T 0 55 sixteenth sixteenth 8.10993
|
||||
T 0 56 sixth sixth 8.10993
|
||||
T 0 57 sixty sixty 3.43385
|
||||
T 0 58 start start 5.14789
|
||||
T 0 59 stop stop 4.7599
|
||||
T 0 60 ten ten 5.14789
|
||||
T 0 61 third third 6.56927
|
||||
T 0 62 thirtieth thirtieth 6.56927
|
||||
T 0 63 thirty thirty 4.63879
|
||||
T 0 64 thousand thousand 6.56927
|
||||
T 0 65 three three 2.83517
|
||||
T 0 66 twelfth twelfth 7.06848
|
||||
T 0 67 twelve twelve 5.48269
|
||||
T 0 68 twentieth twentieth 8.10993
|
||||
T 0 69 twenty twenty 4.11771
|
||||
T 0 70 two two 2.10295
|
||||
T 0 71 yes yes 4.48106
|
||||
T 0 72 zero zero 4.26324
|
||||
F 1 8.10993
|
||||
T 1 0
|
||||
F 2 8.10993
|
||||
T 2 0
|
||||
F 3 8.10993
|
||||
T 3 0
|
||||
F 4 8.42463
|
||||
T 4 0 , , 0.314691
|
||||
T 4 45 one one 1.00416
|
||||
F 5 8.56479
|
||||
T 5 0 , , 0.45486
|
||||
T 5 62 thirtieth thirtieth 1.00416
|
||||
F 6 8.5659
|
||||
T 6 0 , , 0.455963
|
||||
T 6 8 code code 1.00416
|
||||
F 7 9.24251
|
||||
T 7 0 , , 1.13258
|
||||
T 7 55 sixteenth sixteenth 2.39054
|
||||
T 7 69 twenty twenty 0.524989
|
||||
F 8 8.49451
|
||||
T 8 0 , , 0.384571
|
||||
T 8 26 four four 1.00416
|
||||
F 9 8.5659
|
||||
T 9 0 , , 0.455963
|
||||
T 9 12 eighteenth eighteenth 1.00416
|
||||
F 10 8.43581
|
||||
T 10 0 , , 0.325875
|
||||
T 10 5 april april 5.76636
|
||||
T 10 7 august august 5.76636
|
||||
T 10 17 enter enter 2.3316
|
||||
T 10 26 four four 2.1695
|
||||
T 10 27 fourteen fourteen 5.76636
|
||||
T 10 31 hundred hundred 5.76636
|
||||
T 10 34 june june 5.76636
|
||||
T 10 37 nine nine 3.08201
|
||||
T 10 49 seven seven 3.08201
|
||||
T 10 52 seventy seventy 4.44998
|
||||
T 10 65 three three 2.09719
|
||||
T 10 67 twelve twelve 5.76636
|
||||
T 10 70 two two 2.3316
|
||||
T 10 72 zero zero 3.54828
|
||||
F 11 8.56535
|
||||
T 11 0 , , 0.455412
|
||||
T 11 18 february february 1.00416
|
||||
F 12 8.54978
|
||||
T 12 0 , , 0.439848
|
||||
T 12 38 nineteen nineteen 1.00416
|
||||
F 13 8.54978
|
||||
T 13 0 , , 0.439848
|
||||
T 13 38 nineteen nineteen 1.00416
|
||||
F 14 8.67075
|
||||
T 14 0 , , 0.560811
|
||||
T 14 37 nine nine 1.07416
|
||||
T 14 53 six six 2.39054
|
||||
T 14 65 three three 2.39054
|
||||
F 15 8.35704
|
||||
T 15 0 , , 0.247104
|
||||
T 15 37 nine nine 2.39054
|
||||
T 15 50 seventeen seventeen 2.39054
|
||||
T 15 57 sixty sixty 2.39054
|
||||
F 16 8.54978
|
||||
T 16 0 , , 0.439848
|
||||
T 16 38 nineteen nineteen 1.00416
|
||||
F 17 8.75675
|
||||
T 17 0 , , 0.646814
|
||||
T 17 10 eight eight 2.43383
|
||||
T 17 14 eighty eighty 5.43502
|
||||
T 17 19 fifteen fifteen 5.43502
|
||||
T 17 22 fifty fifty 2.95698
|
||||
T 17 24 five five 2.75067
|
||||
T 17 25 forty forty 3.56947
|
||||
T 17 26 four four 2.75067
|
||||
T 17 27 fourteen fourteen 5.43502
|
||||
T 17 37 nine nine 3.21694
|
||||
T 17 39 ninety ninety 3.56947
|
||||
T 17 49 seven seven 2.3065
|
||||
T 17 52 seventy seventy 3.21694
|
||||
T 17 53 six six 2.43383
|
||||
T 17 57 sixty sixty 2.43383
|
||||
T 17 63 thirty thirty 3.56947
|
||||
F 18 8.54952
|
||||
T 18 0 , , 0.439582
|
||||
T 18 13 eighth eighth 1.69724
|
||||
T 18 38 nineteen nineteen 1.69724
|
||||
F 19 8.37118
|
||||
T 19 0 , , 0.261248
|
||||
T 19 38 nineteen nineteen 2.39054
|
||||
T 19 57 sixty sixty 2.39054
|
||||
T 19 63 thirty thirty 2.39054
|
||||
F 20 9.24277
|
||||
T 20 0 , , 1.13283
|
||||
T 20 38 nineteen nineteen 0.381078
|
||||
F 21 8.54978
|
||||
T 21 0 , , 0.439848
|
||||
T 21 38 nineteen nineteen 1.00416
|
||||
F 22 8.6605
|
||||
T 22 0 , , 0.550569
|
||||
T 22 10 eight eight 2.04423
|
||||
T 22 24 five five 2.39676
|
||||
T 22 26 four four 2.94593
|
||||
T 22 45 one one 1.57796
|
||||
T 22 49 seven seven 2.94593
|
||||
T 22 53 six six 1.78427
|
||||
F 23 9.64875
|
||||
T 23 0 , , 1.53882
|
||||
T 23 38 nineteen nineteen 0.237166
|
||||
F 24 8.91503
|
||||
T 24 0 , , 0.805099
|
||||
T 24 17 enter enter 3.60124
|
||||
T 24 24 five five 2.95099
|
||||
T 24 26 four four 3.39493
|
||||
T 24 27 fourteen fourteen 6.07929
|
||||
T 24 30 help help 4.21373
|
||||
T 24 36 may may 6.07929
|
||||
T 24 37 nine nine 3.39493
|
||||
T 24 40 ninth ninth 6.07929
|
||||
T 24 42 october october 6.07929
|
||||
T 24 44 oh oh 3.39493
|
||||
T 24 45 one one 2.06127
|
||||
T 24 53 six six 3.22408
|
||||
T 24 54 sixteen sixteen 6.07929
|
||||
T 24 65 three three 3.22408
|
||||
T 24 70 two two 0.880048
|
||||
T 24 71 yes yes 3.86144
|
||||
T 24 72 zero zero 4.21373
|
||||
F 25 8.42203
|
||||
T 25 0 , , 0.312091
|
||||
T 25 24 five five 2.46054
|
||||
T 25 26 four four 2.46054
|
||||
T 25 49 seven seven 1.91115
|
||||
T 25 65 three three 1.91115
|
||||
F 26 8.42778
|
||||
T 26 0 , , 0.317847
|
||||
T 26 7 august august 5.84051
|
||||
T 26 10 eight eight 2.83932
|
||||
T 26 15 eleven eleven 5.84051
|
||||
T 26 17 enter enter 3.36246
|
||||
T 26 22 fifty fifty 3.97495
|
||||
T 26 26 four four 2.17134
|
||||
T 26 32 january january 4.52412
|
||||
T 26 35 march march 5.84051
|
||||
T 26 41 no no 4.52412
|
||||
T 26 44 oh oh 3.62243
|
||||
T 26 45 one one 1.68503
|
||||
T 26 48 september september 5.84051
|
||||
T 26 49 seven seven 2.9853
|
||||
T 26 53 six six 2.59916
|
||||
T 26 59 stop stop 4.52412
|
||||
T 26 64 thousand thousand 5.84051
|
||||
T 26 70 two two 2.1041
|
||||
F 27 8.74693
|
||||
T 27 0 , , 0.636995
|
||||
T 27 4 a a 2.95007
|
||||
T 27 27 fourteen fourteen 2.95007
|
||||
T 27 46 repeat repeat 2.95007
|
||||
T 27 57 sixty sixty 1.08452
|
||||
F 28 8.54978
|
||||
T 28 0 , , 0.439848
|
||||
T 28 38 nineteen nineteen 1.00416
|
||||
F 29 8.68362
|
||||
T 29 0 , , 0.573684
|
||||
T 29 17 enter enter 1.99035
|
||||
T 29 22 fifty fifty 3.30674
|
||||
T 29 46 repeat repeat 1.99035
|
||||
T 29 59 stop stop 3.30674
|
||||
T 29 65 three three 3.30674
|
||||
T 29 71 yes yes 1.99035
|
||||
F 30 8.68875
|
||||
T 30 0 , , 0.578813
|
||||
T 30 17 enter enter 1.27103
|
||||
T 30 22 fifty fifty 3.48911
|
||||
T 30 29 go go 2.17272
|
||||
T 30 30 help help 3.48911
|
||||
T 30 71 yes yes 3.48911
|
||||
F 31 8.42241
|
||||
T 31 0 , , 0.312477
|
||||
T 31 14 eighty eighty 1.69724
|
||||
T 31 45 one one 1.69724
|
||||
F 32 8.56453
|
||||
T 32 0 , , 0.454599
|
||||
T 32 20 fifteenth fifteenth 1.69724
|
||||
T 32 66 twelfth twelfth 1.69724
|
||||
F 33 8.54752
|
||||
T 33 0 , , 0.437582
|
||||
T 33 62 thirtieth thirtieth 2.10272
|
||||
T 33 66 twelfth twelfth 2.10272
|
||||
T 33 69 twenty twenty 2.10272
|
||||
F 34 8.54952
|
||||
T 34 0 , , 0.439582
|
||||
T 34 16 eleventh eleventh 1.69724
|
||||
T 34 69 twenty twenty 1.69724
|
||||
F 35 8.54808
|
||||
T 35 0 , , 0.438143
|
||||
T 35 61 third third 2.10272
|
||||
T 35 68 twentieth twentieth 2.10272
|
||||
T 35 69 twenty twenty 2.10272
|
||||
F 36 8.53224
|
||||
T 36 0 , , 0.422306
|
||||
T 36 38 nineteen nineteen 2.10272
|
||||
T 36 40 ninth ninth 2.10272
|
||||
T 36 69 twenty twenty 2.10272
|
||||
F 37 8.33042
|
||||
T 37 0 , , 0.220487
|
||||
T 37 7 august august 5.23838
|
||||
T 37 14 eighty eighty 5.23838
|
||||
T 37 15 eleven eleven 5.23838
|
||||
T 37 17 enter enter 2.55403
|
||||
T 37 24 five five 1.99703
|
||||
T 37 29 go go 5.23838
|
||||
T 37 30 help help 5.23838
|
||||
T 37 33 july july 5.23838
|
||||
T 37 34 june june 5.23838
|
||||
T 37 43 of of 5.23838
|
||||
T 37 48 september september 5.23838
|
||||
T 37 52 seventy seventy 5.23838
|
||||
T 37 53 six six 2.38318
|
||||
T 37 65 three three 2.76011
|
||||
T 37 71 yes yes 3.92199
|
||||
F 38 10.2771
|
||||
T 38 0 , , 2.16715
|
||||
T 38 22 fifty fifty 3.08915
|
||||
T 38 25 forty forty 3.08915
|
||||
T 38 52 seventy seventy 2.53975
|
||||
T 38 57 sixty sixty 0.339401
|
||||
T 38 69 twenty twenty 4.40531
|
||||
F 39 8.22061
|
||||
T 39 0 , , 0.110677
|
||||
T 39 10 eight eight 2.39054
|
||||
T 39 24 five five 2.39054
|
||||
T 39 26 four four 2.39054
|
||||
T 39 53 six six 2.39054
|
||||
F 40 8.53256
|
||||
T 40 0 , , 0.422629
|
||||
T 40 43 of of 1.69724
|
||||
T 40 57 sixty sixty 1.69724
|
||||
F 41 8.76609
|
||||
T 41 0 , , 0.656158
|
||||
T 41 17 enter enter 1.91115
|
||||
T 41 22 fifty fifty 2.46054
|
||||
T 41 30 help help 3.7767
|
||||
T 41 45 one one 1.55885
|
||||
T 41 46 repeat repeat 3.7767
|
||||
T 41 58 start start 2.46054
|
||||
T 41 71 yes yes 3.7767
|
||||
F 42 8.54696
|
||||
T 42 0 , , 0.43702
|
||||
T 42 23 first first 2.10272
|
||||
T 42 62 thirtieth thirtieth 2.10272
|
||||
T 42 69 twenty twenty 2.10272
|
||||
F 43 8.53085
|
||||
T 43 0 , , 0.420917
|
||||
T 43 48 september september 1.69724
|
||||
T 43 57 sixty sixty 1.69724
|
||||
F 44 8.95424
|
||||
T 44 0 , , 0.844301
|
||||
T 44 10 eight eight 1.68687
|
||||
T 44 24 five five 2.55149
|
||||
T 44 26 four four 3.16398
|
||||
T 44 44 oh oh 3.71315
|
||||
T 44 45 one one 2.34518
|
||||
T 44 49 seven seven 2.55149
|
||||
T 44 53 six six 1.68687
|
||||
T 44 65 three three 2.81146
|
||||
T 44 67 twelve twelve 5.02954
|
||||
T 44 70 two two 2.17433
|
||||
F 45 8.74704
|
||||
T 45 0 , , 0.637102
|
||||
T 45 7 august august 6.48477
|
||||
T 45 15 eleven eleven 6.48477
|
||||
T 45 18 february february 6.48477
|
||||
T 45 19 fifteen fifteen 6.48477
|
||||
T 45 22 fifty fifty 4.26692
|
||||
T 45 24 five five 1.22682
|
||||
T 45 26 four four 3.05
|
||||
T 45 31 hundred hundred 6.48477
|
||||
T 45 33 july july 6.48477
|
||||
T 45 37 nine nine 3.35648
|
||||
T 45 39 ninety ninety 6.48477
|
||||
T 45 44 oh oh 3.14211
|
||||
T 45 49 seven seven 2.41887
|
||||
T 45 54 sixteen sixteen 6.48477
|
||||
T 45 58 start start 5.16861
|
||||
T 45 60 ten ten 5.16861
|
||||
T 45 63 thirty thirty 5.16861
|
||||
T 45 64 thousand thousand 5.16861
|
||||
T 45 65 three three 2.8879
|
||||
T 45 70 two two 2.13542
|
||||
T 45 72 zero zero 4.00673
|
||||
F 46 8.9927
|
||||
T 46 0 , , 0.882767
|
||||
T 46 17 enter enter 2.5211
|
||||
T 46 22 fifty fifty 3.83749
|
||||
T 46 25 forty forty 3.83749
|
||||
T 46 41 no no 1.61941
|
||||
T 46 45 one one 1.61941
|
||||
T 46 46 repeat repeat 3.83749
|
||||
T 46 59 stop stop 1.97193
|
||||
F 47 9.24277
|
||||
T 47 0 , , 1.13283
|
||||
T 47 38 nineteen nineteen 0.381078
|
||||
F 48 8.53041
|
||||
T 48 0 , , 0.420474
|
||||
T 48 20 fifteenth fifteenth 2.61366
|
||||
T 48 23 first first 2.61366
|
||||
T 48 38 nineteen nineteen 2.61366
|
||||
T 48 56 sixth sixth 2.61366
|
||||
T 48 69 twenty twenty 2.61366
|
||||
F 49 8.5123
|
||||
T 49 0 , , 0.402364
|
||||
T 49 6 area area 5.61923
|
||||
T 49 10 eight eight 2.49094
|
||||
T 49 17 enter enter 2.61827
|
||||
T 49 19 fifteen fifteen 5.61923
|
||||
T 49 25 forty forty 4.30307
|
||||
T 49 26 four four 1.95029
|
||||
T 49 27 fourteen fourteen 4.30307
|
||||
T 49 29 go go 5.61923
|
||||
T 49 36 may may 5.61923
|
||||
T 49 37 nine nine 3.14119
|
||||
T 49 42 october october 5.61923
|
||||
T 49 44 oh oh 3.40138
|
||||
T 49 50 seventeen seventeen 5.61923
|
||||
T 49 58 start start 3.40138
|
||||
T 49 59 stop stop 3.14119
|
||||
T 49 60 ten ten 4.30307
|
||||
T 49 63 thirty thirty 4.30307
|
||||
T 49 71 yes yes 4.30307
|
||||
F 50 8.94754
|
||||
T 50 0 , , 0.837607
|
||||
T 50 22 fifty fifty 0.786563
|
||||
T 50 63 thirty thirty 2.10272
|
||||
F 51 8.54978
|
||||
T 51 0 , , 0.439848
|
||||
T 51 38 nineteen nineteen 1.00416
|
||||
F 52 8.78165
|
||||
T 52 0 , , 0.671719
|
||||
T 52 17 enter enter 3.48911
|
||||
T 52 41 no no 3.48911
|
||||
T 52 45 one one 0.804753
|
||||
T 52 70 two two 2.17272
|
||||
T 52 71 yes yes 3.48911
|
||||
F 53 8.54839
|
||||
T 53 0 , , 0.438457
|
||||
T 53 10 eight eight 1.66661
|
||||
T 53 17 enter enter 3.38595
|
||||
T 53 26 four four 2.62264
|
||||
T 53 33 july july 5.86399
|
||||
T 53 37 nine nine 3.64591
|
||||
T 53 44 oh oh 3.17964
|
||||
T 53 45 one one 2.12759
|
||||
T 53 48 september september 5.86399
|
||||
T 53 49 seven seven 3.17964
|
||||
T 53 50 seventeen seventeen 5.86399
|
||||
T 53 53 six six 2.42923
|
||||
T 53 54 sixteen sixteen 5.86399
|
||||
T 53 63 thirty thirty 3.99844
|
||||
T 53 65 three three 2.42923
|
||||
T 53 67 twelve twelve 5.86399
|
||||
F 54 8.92989
|
||||
T 54 0 , , 0.819953
|
||||
T 54 25 forty forty 2.10272
|
||||
T 54 57 sixty sixty 0.786563
|
||||
F 55 8.54978
|
||||
T 55 0 , , 0.439848
|
||||
T 55 38 nineteen nineteen 1.00416
|
||||
F 56 8.54978
|
||||
T 56 0 , , 0.439848
|
||||
T 56 38 nineteen nineteen 1.00416
|
||||
F 57 8.84613
|
||||
T 57 0 , , 0.736197
|
||||
T 57 10 eight eight 2.60353
|
||||
T 57 17 enter enter 3.76542
|
||||
T 57 24 five five 2.60353
|
||||
T 57 26 four four 2.86373
|
||||
T 57 30 help help 3.76542
|
||||
T 57 37 nine nine 1.64681
|
||||
T 57 45 one one 2.2266
|
||||
T 57 49 seven seven 1.84046
|
||||
T 57 58 start start 5.08181
|
||||
T 57 65 three three 2.60353
|
||||
F 58 8.92979
|
||||
T 58 0 , , 0.819857
|
||||
T 58 17 enter enter 1.53651
|
||||
T 58 29 go go 3.40207
|
||||
T 58 41 no no 3.40207
|
||||
T 58 46 repeat repeat 1.53651
|
||||
T 58 53 six six 2.08568
|
||||
F 59 8.88441
|
||||
T 59 0 , , 0.774478
|
||||
T 59 17 enter enter 0.921495
|
||||
T 59 29 go go 3.7767
|
||||
T 59 45 one one 1.91115
|
||||
T 59 46 repeat repeat 3.7767
|
||||
T 59 63 thirty thirty 3.7767
|
||||
T 59 71 yes yes 3.7767
|
||||
F 60 8.755
|
||||
T 60 0 , , 0.645065
|
||||
T 60 44 oh oh 3.40207
|
||||
T 60 45 one one 0.924027
|
||||
T 60 52 seventy seventy 3.40207
|
||||
T 60 57 sixty sixty 3.40207
|
||||
T 60 63 thirty thirty 3.40207
|
||||
T 60 67 twelve twelve 3.40207
|
||||
T 60 69 twenty twenty 3.40207
|
||||
F 61 9.64875
|
||||
T 61 0 , , 1.53882
|
||||
T 61 38 nineteen nineteen 0.237166
|
||||
F 62 9.64875
|
||||
T 62 0 , , 1.53882
|
||||
T 62 38 nineteen nineteen 0.237166
|
||||
F 63 8.69155
|
||||
T 63 0 , , 0.581618
|
||||
T 63 10 eight eight 2.5782
|
||||
T 63 45 one one 0.893403
|
||||
T 63 57 sixty sixty 3.89459
|
||||
T 63 70 two two 2.02904
|
||||
F 64 8.75313
|
||||
T 64 0 , , 0.643194
|
||||
T 64 10 eight eight 2.10272
|
||||
T 64 45 one one 0.786563
|
||||
F 65 8.34541
|
||||
T 65 0 , , 0.235479
|
||||
T 65 9 december december 5.67702
|
||||
T 65 14 eighty eighty 5.67702
|
||||
T 65 15 eleven eleven 5.67702
|
||||
T 65 25 forty forty 4.36064
|
||||
T 65 26 four four 2.33436
|
||||
T 65 27 fourteen fourteen 5.67702
|
||||
T 65 35 march march 5.67702
|
||||
T 65 36 may may 5.67702
|
||||
T 65 41 no no 3.81147
|
||||
T 65 44 oh oh 2.99267
|
||||
T 65 48 september september 5.67702
|
||||
T 65 53 six six 2.5485
|
||||
T 65 65 three three 2.67583
|
||||
T 65 67 twelve twelve 5.67702
|
||||
T 65 69 twenty twenty 3.81147
|
||||
T 65 70 two two 2.00785
|
||||
T 65 71 yes yes 4.36064
|
||||
T 65 72 zero zero 3.81147
|
||||
F 66 9.24277
|
||||
T 66 0 , , 1.13283
|
||||
T 66 38 nineteen nineteen 0.381078
|
||||
F 67 8.48971
|
||||
T 67 0 , , 0.379777
|
||||
T 67 22 fifty fifty 3.08362
|
||||
T 67 37 nine nine 3.08362
|
||||
T 67 38 nineteen nineteen 3.08362
|
||||
T 67 57 sixty sixty 3.08362
|
||||
T 67 60 ten ten 3.08362
|
||||
T 67 69 twenty twenty 1.76723
|
||||
F 68 8.54978
|
||||
T 68 0 , , 0.439848
|
||||
T 68 38 nineteen nineteen 1.00416
|
||||
F 69 8.52977
|
||||
T 69 0 , , 0.419831
|
||||
T 69 10 eight eight 1.92726
|
||||
T 69 21 fifth fifth 4.40531
|
||||
T 69 23 first first 4.40531
|
||||
T 69 26 four four 3.08915
|
||||
T 69 28 fourth fourth 4.40531
|
||||
T 69 37 nine nine 2.53975
|
||||
T 69 47 second second 3.08915
|
||||
T 69 49 seven seven 3.08915
|
||||
T 69 51 seventh seventh 4.40531
|
||||
T 69 53 six six 2.53975
|
||||
T 69 61 third third 3.08915
|
||||
T 69 65 three three 3.08915
|
||||
F 70 8.90312
|
||||
T 70 0 , , 0.793189
|
||||
T 70 10 eight eight 3.27842
|
||||
T 70 11 eighteen eighteen 6.40694
|
||||
T 70 19 fifteen fifteen 6.40694
|
||||
T 70 24 five five 2.88767
|
||||
T 70 26 four four 2.54804
|
||||
T 70 35 march march 6.40694
|
||||
T 70 37 nine nine 3.55174
|
||||
T 70 42 october october 6.40694
|
||||
T 70 44 oh oh 2.97195
|
||||
T 70 45 one one 1.37073
|
||||
T 70 49 seven seven 3.06405
|
||||
T 70 53 six six 2.20956
|
||||
T 70 60 ten ten 5.09056
|
||||
T 70 63 thirty thirty 5.09056
|
||||
T 70 65 three three 2.73777
|
||||
T 70 70 two two 2.09328
|
||||
T 70 72 zero zero 3.72259
|
||||
F 71 8.57783
|
||||
T 71 0 , , 0.467898
|
||||
T 71 17 enter enter 1.83079
|
||||
T 71 29 go go 2.73248
|
||||
T 71 45 one one 2.18308
|
||||
T 71 46 repeat repeat 2.73248
|
||||
T 71 58 start start 4.04864
|
||||
T 71 59 stop stop 4.04864
|
||||
T 71 69 twenty twenty 4.04864
|
||||
T 71 71 yes yes 2.73248
|
||||
F 72 8.69612
|
||||
T 72 0 , , 0.586181
|
||||
T 72 17 enter enter 2.94593
|
||||
T 72 45 one one 1.26113
|
||||
T 72 49 seven seven 2.94593
|
||||
T 72 53 six six 1.57796
|
||||
T 72 67 twelve twelve 4.26232
|
||||
T 72 72 zero zero 4.26232
|
||||
|
|
@ -0,0 +1,577 @@
|
|||
#FSTBasic MinPlus
|
||||
I 2
|
||||
F 0 1.77483
|
||||
T 0 1 <unknown> <unknown> 8.52417
|
||||
T 0 4 a a 8.52417
|
||||
T 0 5 april april 8.52417
|
||||
T 0 6 area area 8.52417
|
||||
T 0 7 august august 6.6524
|
||||
T 0 8 code code 8.52417
|
||||
T 0 9 december december 8.52417
|
||||
T 0 10 eight eight 3.15961
|
||||
T 0 11 eighteen eighteen 8.52417
|
||||
T 0 12 eighteenth eighteenth 8.52417
|
||||
T 0 13 eighth eighth 8.52417
|
||||
T 0 14 eighty eighty 6.6524
|
||||
T 0 15 eleven eleven 6.6524
|
||||
T 0 16 eleventh eleventh 8.52417
|
||||
T 0 17 enter enter 3.49256
|
||||
T 0 18 february february 7.48271
|
||||
T 0 19 fifteen fifteen 6.6524
|
||||
T 0 20 fifteenth fifteenth 7.48271
|
||||
T 0 21 fifth fifth 8.52417
|
||||
T 0 22 fifty fifty 4.67747
|
||||
T 0 23 first first 6.98374
|
||||
T 0 24 five five 2.84577
|
||||
T 0 25 forty forty 5.17414
|
||||
T 0 26 four four 3.08523
|
||||
T 0 27 fourteen fourteen 6.03922
|
||||
T 0 28 fourth fourth 8.52417
|
||||
T 0 29 go go 5.66183
|
||||
T 0 30 help help 5.47163
|
||||
T 0 31 hundred hundred 7.48271
|
||||
T 0 32 january january 7.48271
|
||||
T 0 33 july july 6.98374
|
||||
T 0 34 june june 7.48271
|
||||
T 0 35 march march 6.98374
|
||||
T 0 36 may may 6.98374
|
||||
T 0 37 nine nine 3.69058
|
||||
T 0 38 nineteen nineteen 4.53218
|
||||
T 0 39 ninety ninety 6.6524
|
||||
T 0 40 ninth ninth 7.48271
|
||||
T 0 41 no no 5.17414
|
||||
T 0 42 october october 6.98374
|
||||
T 0 43 of of 7.48271
|
||||
T 0 44 oh oh 3.90081
|
||||
T 0 45 one one 2.43936
|
||||
T 0 46 repeat repeat 5.11197
|
||||
T 0 47 second second 7.48271
|
||||
T 0 48 september september 6.40395
|
||||
T 0 49 seven seven 3.30743
|
||||
T 0 50 seventeen seventeen 6.98374
|
||||
T 0 51 seventh seventh 8.52417
|
||||
T 0 52 seventy seventy 5.47163
|
||||
T 0 53 six six 3.06175
|
||||
T 0 54 sixteen sixteen 6.98374
|
||||
T 0 55 sixteenth sixteenth 8.52417
|
||||
T 0 56 sixth sixth 8.52417
|
||||
T 0 57 sixty sixty 3.84831
|
||||
T 0 58 start start 5.56235
|
||||
T 0 59 stop stop 5.17414
|
||||
T 0 60 ten ten 5.56235
|
||||
T 0 61 third third 6.98374
|
||||
T 0 62 thirtieth thirtieth 6.98374
|
||||
T 0 63 thirty thirty 5.05325
|
||||
T 0 64 thousand thousand 6.98374
|
||||
T 0 65 three three 3.24941
|
||||
T 0 66 twelfth twelfth 7.48271
|
||||
T 0 67 twelve twelve 5.89715
|
||||
T 0 68 twentieth twentieth 8.52417
|
||||
T 0 69 twenty twenty 4.53218
|
||||
T 0 70 two two 2.51742
|
||||
T 0 71 yes yes 4.8953
|
||||
T 0 72 zero zero 4.67747
|
||||
F 1 1.77483
|
||||
T 1 0
|
||||
F 2 3.84669
|
||||
T 2 0 , , 2.07186
|
||||
T 2 5 april april 6.9842
|
||||
T 2 6 area area 6.9842
|
||||
T 2 7 august august 4.91303
|
||||
T 2 9 december december 6.9842
|
||||
T 2 10 eight eight 4.14051
|
||||
T 2 11 eighteen eighteen 6.9842
|
||||
T 2 15 eleven eleven 5.78686
|
||||
T 2 17 enter enter 1.72233
|
||||
T 2 18 february february 6.9842
|
||||
T 2 22 fifty fifty 4.28488
|
||||
T 2 24 five five 3.54874
|
||||
T 2 25 forty forty 6.9842
|
||||
T 2 26 four four 2.73087
|
||||
T 2 27 fourteen fourteen 6.9842
|
||||
T 2 29 go go 3.90219
|
||||
T 2 30 help help 3.70992
|
||||
T 2 32 january january 5.78686
|
||||
T 2 33 july july 5.25726
|
||||
T 2 34 june june 5.78686
|
||||
T 2 35 march march 5.25726
|
||||
T 2 36 may may 5.78686
|
||||
T 2 37 nine nine 4.45389
|
||||
T 2 40 ninth ninth 6.9842
|
||||
T 2 41 no no 3.4099
|
||||
T 2 42 october october 5.25726
|
||||
T 2 44 oh oh 5.25726
|
||||
T 2 45 one one 1.64174
|
||||
T 2 46 repeat repeat 3.34704
|
||||
T 2 48 september september 4.91303
|
||||
T 2 49 seven seven 3.80134
|
||||
T 2 53 six six 3.17941
|
||||
T 2 58 start start 3.80134
|
||||
T 2 59 stop stop 3.4099
|
||||
T 2 60 ten ten 4.65744
|
||||
T 2 63 thirty thirty 5.25726
|
||||
T 2 65 three three 3.4099
|
||||
T 2 67 twelve twelve 4.45389
|
||||
T 2 70 two two 2.99221
|
||||
T 2 71 yes yes 3.12921
|
||||
F 3 8.35607
|
||||
T 3 0 , , 6.58123
|
||||
F 4 0.837911
|
||||
T 4 0 , , 0.380973
|
||||
F 5 2.34062
|
||||
T 5 0 , , 0.565787
|
||||
T 5 62 thirtieth thirtieth 0.837911
|
||||
F 6 2.34135
|
||||
T 6 0 , , 0.566516
|
||||
T 6 8 code code 0.837911
|
||||
F 7 3.02367
|
||||
T 7 0 , , 1.24883
|
||||
T 7 55 sixteenth sixteenth 2.22407
|
||||
T 7 69 twenty twenty 0.497358
|
||||
F 8 2.29475
|
||||
T 8 0 , , 0.519917
|
||||
T 8 26 four four 0.837911
|
||||
F 9 2.34135
|
||||
T 9 0 , , 0.566516
|
||||
T 9 12 eighteenth eighteenth 0.837911
|
||||
F 10 1.22313
|
||||
T 10 0 , , 1.14107
|
||||
T 10 10 eight eight 3.06981
|
||||
T 10 24 five five 2.9008
|
||||
T 10 25 forty forty 5.60012
|
||||
T 10 26 four four 2.2418
|
||||
T 10 27 fourteen fourteen 5.60012
|
||||
T 10 31 hundred hundred 5.60012
|
||||
T 10 37 nine nine 3.52894
|
||||
T 10 44 oh oh 3.87318
|
||||
T 10 45 one one 3.27312
|
||||
T 10 49 seven seven 3.06981
|
||||
T 10 52 seventy seventy 4.40277
|
||||
T 10 53 six six 3.52894
|
||||
T 10 57 sixty sixty 3.87318
|
||||
T 10 63 thirty thirty 5.60012
|
||||
T 10 65 three three 2.41725
|
||||
T 10 69 twenty twenty 4.40277
|
||||
T 10 70 two two 2.75619
|
||||
T 10 72 zero zero 3.52894
|
||||
F 11 2.34098
|
||||
T 11 0 , , 0.566152
|
||||
T 11 18 february february 0.837911
|
||||
F 12 2.33073
|
||||
T 12 0 , , 0.555899
|
||||
T 12 38 nineteen nineteen 0.837911
|
||||
F 13 2.33073
|
||||
T 13 0 , , 0.555899
|
||||
T 13 38 nineteen nineteen 0.837911
|
||||
F 14 2.5122
|
||||
T 14 0 , , 0.737363
|
||||
T 14 37 nine nine 1.02672
|
||||
T 14 53 six six 2.22407
|
||||
T 14 65 three three 2.22407
|
||||
F 15 2.11879
|
||||
T 15 0 , , 0.343959
|
||||
T 15 37 nine nine 2.22407
|
||||
T 15 50 seventeen seventeen 2.22407
|
||||
T 15 57 sixty sixty 2.22407
|
||||
F 16 2.33073
|
||||
T 16 0 , , 0.555899
|
||||
T 16 38 nineteen nineteen 0.837911
|
||||
F 17 3.01204
|
||||
T 17 0 , , 1.23721
|
||||
T 17 10 eight eight 2.42485
|
||||
T 17 14 eighty eighty 5.26877
|
||||
T 17 19 fifteen fifteen 5.26877
|
||||
T 17 22 fifty fifty 2.94178
|
||||
T 17 24 five five 2.73846
|
||||
T 17 25 forty forty 3.54184
|
||||
T 17 26 four four 2.73846
|
||||
T 17 27 fourteen fourteen 5.26877
|
||||
T 17 37 nine nine 3.1976
|
||||
T 17 39 ninety ninety 3.54184
|
||||
T 17 45 one one 3.1976
|
||||
T 17 49 seven seven 2.29867
|
||||
T 17 52 seventy seventy 3.1976
|
||||
T 17 53 six six 2.42485
|
||||
T 17 57 sixty sixty 2.42485
|
||||
T 17 63 thirty thirty 3.54184
|
||||
T 17 65 three three 4.0712
|
||||
T 17 69 twenty twenty 5.26877
|
||||
T 17 70 two two 2.73846
|
||||
T 17 72 zero zero 5.26877
|
||||
F 18 2.33058
|
||||
T 18 0 , , 0.555751
|
||||
T 18 13 eighth eighth 1.53099
|
||||
T 18 38 nineteen nineteen 1.53099
|
||||
F 19 1.02672
|
||||
T 19 0 , , 0.6294
|
||||
T 19 38 nineteen nineteen 2.22407
|
||||
T 19 57 sixty sixty 2.22407
|
||||
F 20 3.02388
|
||||
T 20 0 , , 1.24905
|
||||
T 20 38 nineteen nineteen 0.333645
|
||||
F 21 2.33073
|
||||
T 21 0 , , 0.555899
|
||||
T 21 38 nineteen nineteen 0.837911
|
||||
F 22 2.61252
|
||||
T 22 0 , , 0.837685
|
||||
T 22 10 eight eight 2.02466
|
||||
T 22 24 five five 2.36913
|
||||
T 22 26 four four 2.89849
|
||||
T 22 45 one one 1.76908
|
||||
T 22 49 seven seven 2.89849
|
||||
T 22 53 six six 1.76908
|
||||
T 22 57 sixty sixty 4.09607
|
||||
T 22 70 two two 2.89849
|
||||
F 23 3.42982
|
||||
T 23 0 , , 1.65499
|
||||
T 23 38 nineteen nineteen 0.209535
|
||||
F 24 1.59592
|
||||
T 24 0 , , 1.80798
|
||||
T 24 10 eight eight 3.84186
|
||||
T 24 24 five five 3.38273
|
||||
T 24 26 four four 3.38273
|
||||
T 24 37 nine nine 3.84186
|
||||
T 24 44 oh oh 3.38273
|
||||
T 24 45 one one 2.55495
|
||||
T 24 49 seven seven 3.84186
|
||||
T 24 53 six six 3.38273
|
||||
T 24 54 sixteen sixteen 5.91304
|
||||
T 24 60 ten ten 5.91304
|
||||
T 24 65 three three 3.38273
|
||||
T 24 69 twenty twenty 5.91304
|
||||
T 24 70 two two 0.894094
|
||||
T 24 72 zero zero 4.1861
|
||||
F 25 2.4995
|
||||
T 25 0 , , 0.72467
|
||||
T 25 10 eight eight 3.61045
|
||||
T 25 24 five five 2.41311
|
||||
T 25 26 four four 2.41311
|
||||
T 25 37 nine nine 3.61045
|
||||
T 25 45 one one 2.41311
|
||||
T 25 49 seven seven 1.88351
|
||||
T 25 65 three three 1.88351
|
||||
T 25 70 two two 2.41311
|
||||
F 26 1.42069
|
||||
T 26 0 , , 1.3383
|
||||
T 26 10 eight eight 3.14395
|
||||
T 26 22 fifty fifty 4.47669
|
||||
T 26 24 five five 3.14395
|
||||
T 26 25 forty forty 5.67426
|
||||
T 26 26 four four 2.39975
|
||||
T 26 37 nine nine 4.47669
|
||||
T 26 44 oh oh 3.60285
|
||||
T 26 45 one one 1.81904
|
||||
T 26 49 seven seven 2.97494
|
||||
T 26 53 six six 2.97494
|
||||
T 26 57 sixty sixty 4.47669
|
||||
T 26 64 thousand thousand 5.67426
|
||||
T 26 65 three three 3.34727
|
||||
T 26 69 twenty twenty 4.47669
|
||||
T 26 70 two two 2.09973
|
||||
T 26 72 zero zero 5.67426
|
||||
F 27 1.58648
|
||||
T 27 0 , , 0.911406
|
||||
T 27 4 a a 2.78383
|
||||
T 27 27 fourteen fourteen 2.78383
|
||||
T 27 57 sixty sixty 1.05689
|
||||
F 28 2.33073
|
||||
T 28 0 , , 0.555899
|
||||
T 28 38 nineteen nineteen 0.837911
|
||||
F 29 0.0584857
|
||||
T 29 0 , , 2.68233
|
||||
F 30 0.0483543
|
||||
T 30 0 , , 2.86754
|
||||
F 31 1.53099
|
||||
T 31 0 , , 0.37947
|
||||
T 31 14 eighty eighty 1.53099
|
||||
F 32 2.34047
|
||||
T 32 0 , , 0.565641
|
||||
T 32 20 fifteenth fifteenth 1.53099
|
||||
T 32 66 twelfth twelfth 1.53099
|
||||
F 33 2.32926
|
||||
T 33 0 , , 0.554429
|
||||
T 33 62 thirtieth thirtieth 1.93647
|
||||
T 33 66 twelfth twelfth 1.93647
|
||||
T 33 69 twenty twenty 1.93647
|
||||
F 34 2.33058
|
||||
T 34 0 , , 0.555751
|
||||
T 34 16 eleventh eleventh 1.53099
|
||||
T 34 69 twenty twenty 1.53099
|
||||
F 35 2.32963
|
||||
T 35 0 , , 0.554798
|
||||
T 35 61 third third 1.93647
|
||||
T 35 68 twentieth twentieth 1.93647
|
||||
T 35 69 twenty twenty 1.93647
|
||||
F 36 2.31926
|
||||
T 36 0 , , 0.544427
|
||||
T 36 38 nineteen nineteen 1.93647
|
||||
T 36 40 ninth ninth 1.93647
|
||||
T 36 69 twenty twenty 1.93647
|
||||
F 37 0.959487
|
||||
T 37 0 , , 0.747901
|
||||
T 37 10 eight eight 3.3452
|
||||
T 37 14 eighty eighty 5.0719
|
||||
T 37 22 fifty fifty 5.0719
|
||||
T 37 24 five five 2.54159
|
||||
T 37 25 forty forty 5.0719
|
||||
T 37 38 nineteen nineteen 5.0719
|
||||
T 37 43 of of 5.0719
|
||||
T 37 52 seventy seventy 5.0719
|
||||
T 37 53 six six 2.54159
|
||||
T 37 63 thirty thirty 5.0719
|
||||
T 37 65 three three 2.74514
|
||||
T 37 69 twenty twenty 5.0719
|
||||
T 37 70 two two 2.74514
|
||||
T 37 72 zero zero 5.0719
|
||||
F 38 4.08159
|
||||
T 38 0 , , 2.30676
|
||||
T 38 22 fifty fifty 3.04171
|
||||
T 38 25 forty forty 3.04171
|
||||
T 38 52 seventy seventy 2.51212
|
||||
T 38 57 sixty sixty 0.336177
|
||||
T 38 69 twenty twenty 4.23906
|
||||
F 39 2.12715
|
||||
T 39 0 , , 0.352317
|
||||
T 39 10 eight eight 2.22407
|
||||
T 39 24 five five 2.22407
|
||||
T 39 26 four four 2.22407
|
||||
T 39 53 six six 2.22407
|
||||
F 40 2.31948
|
||||
T 40 0 , , 0.544646
|
||||
T 40 43 of of 1.53099
|
||||
T 40 57 sixty sixty 1.53099
|
||||
F 41 0.0361506
|
||||
T 41 0 , , 3.15234
|
||||
F 42 2.32889
|
||||
T 42 0 , , 0.554061
|
||||
T 42 23 first first 1.93647
|
||||
T 42 62 thirtieth thirtieth 1.93647
|
||||
T 42 69 twenty twenty 1.93647
|
||||
F 43 2.31836
|
||||
T 43 0 , , 0.543528
|
||||
T 43 48 september september 1.53099
|
||||
T 43 57 sixty sixty 1.53099
|
||||
F 44 2.5363
|
||||
T 44 0 , , 1.14326
|
||||
T 44 10 eight eight 1.78128
|
||||
T 44 24 five five 2.5363
|
||||
T 44 26 four four 3.13635
|
||||
T 44 44 oh oh 3.66595
|
||||
T 44 45 one one 2.5363
|
||||
T 44 49 seven seven 2.79211
|
||||
T 44 53 six six 1.68043
|
||||
T 44 65 three three 2.79211
|
||||
T 44 70 two two 2.33298
|
||||
F 45 1.88513
|
||||
T 45 0 , , 1.58291
|
||||
T 45 10 eight eight 3.6192
|
||||
T 45 15 eleven eleven 6.31852
|
||||
T 45 19 fifteen fifteen 6.31852
|
||||
T 45 22 fifty fifty 4.24735
|
||||
T 45 24 five five 1.2259
|
||||
T 45 25 forty forty 6.31852
|
||||
T 45 26 four four 3.34842
|
||||
T 45 31 hundred hundred 6.31852
|
||||
T 45 37 nine nine 3.47483
|
||||
T 45 39 ninety ninety 6.31852
|
||||
T 45 44 oh oh 3.13566
|
||||
T 45 45 one one 3.99176
|
||||
T 45 49 seven seven 2.51373
|
||||
T 45 53 six six 3.6192
|
||||
T 45 54 sixteen sixteen 6.31852
|
||||
T 45 57 sixty sixty 4.59158
|
||||
T 45 60 ten ten 5.12118
|
||||
T 45 63 thirty thirty 5.12118
|
||||
T 45 64 thousand thousand 5.12118
|
||||
T 45 65 three three 2.88307
|
||||
T 45 69 twenty twenty 5.12118
|
||||
T 45 70 two two 2.28463
|
||||
T 45 72 zero zero 3.99176
|
||||
F 46 0.033848
|
||||
T 46 0 , , 3.21701
|
||||
F 47 3.02388
|
||||
T 47 0 , , 1.24905
|
||||
T 47 38 nineteen nineteen 0.333645
|
||||
F 48 2.31802
|
||||
T 48 0 , , 0.543186
|
||||
T 48 20 fifteenth fifteenth 2.44742
|
||||
T 48 23 first first 2.44742
|
||||
T 48 38 nineteen nineteen 2.44742
|
||||
T 48 56 sixth sixth 2.44742
|
||||
T 48 69 twenty twenty 2.44742
|
||||
F 49 0.714492
|
||||
T 49 0 , , 0.949208
|
||||
T 49 10 eight eight 2.92267
|
||||
T 49 19 fifteen fifteen 5.45298
|
||||
T 49 22 fifty fifty 5.45298
|
||||
T 49 24 five five 3.72604
|
||||
T 49 25 forty forty 4.25564
|
||||
T 49 27 fourteen fourteen 4.25564
|
||||
T 49 36 may may 5.45298
|
||||
T 49 37 nine nine 3.12622
|
||||
T 49 44 oh oh 3.38181
|
||||
T 49 50 seventeen seventeen 5.45298
|
||||
T 49 57 sixty sixty 4.25564
|
||||
T 49 60 ten ten 5.45298
|
||||
T 49 63 thirty thirty 4.25564
|
||||
T 49 65 three three 3.72604
|
||||
T 49 69 twenty twenty 5.45298
|
||||
T 49 70 two two 2.92267
|
||||
F 50 2.73119
|
||||
T 50 0 , , 0.95636
|
||||
T 50 22 fifty fifty 0.73913
|
||||
T 50 63 thirty thirty 1.93647
|
||||
F 51 2.33073
|
||||
T 51 0 , , 0.555899
|
||||
T 51 38 nineteen nineteen 0.837911
|
||||
F 52 1.59592
|
||||
T 52 0 , , 1.18749
|
||||
T 52 10 eight eight 3.32286
|
||||
T 52 45 one one 0.79255
|
||||
T 52 70 two two 2.12529
|
||||
F 53 1.29221
|
||||
T 53 0 , , 1.3105
|
||||
T 53 10 eight eight 1.70576
|
||||
T 53 24 five five 3.16744
|
||||
T 53 25 forty forty 5.69775
|
||||
T 53 26 four four 2.85382
|
||||
T 53 37 nine nine 3.62657
|
||||
T 53 44 oh oh 3.16744
|
||||
T 53 45 one one 2.99843
|
||||
T 53 49 seven seven 3.62657
|
||||
T 53 50 seventeen seventeen 5.69775
|
||||
T 53 53 six six 2.61574
|
||||
T 53 54 sixteen sixteen 5.69775
|
||||
T 53 57 sixty sixty 4.5004
|
||||
T 53 63 thirty thirty 4.5004
|
||||
T 53 65 three three 2.72764
|
||||
T 53 69 twenty twenty 5.69775
|
||||
T 53 70 two two 3.16744
|
||||
T 53 72 zero zero 5.69775
|
||||
F 54 2.71966
|
||||
T 54 0 , , 0.944828
|
||||
T 54 25 forty forty 1.93647
|
||||
T 54 57 sixty sixty 0.73913
|
||||
F 55 2.33073
|
||||
T 55 0 , , 0.555899
|
||||
T 55 38 nineteen nineteen 0.837911
|
||||
F 56 2.33073
|
||||
T 56 0 , , 0.555899
|
||||
T 56 38 nineteen nineteen 0.837911
|
||||
F 57 2.38502
|
||||
T 57 0 , , 1.22464
|
||||
T 57 10 eight eight 2.58857
|
||||
T 57 22 fifty fifty 4.91533
|
||||
T 57 24 five five 2.58857
|
||||
T 57 26 four four 2.84415
|
||||
T 57 37 nine nine 1.64105
|
||||
T 57 45 one one 2.38502
|
||||
T 57 49 seven seven 1.83332
|
||||
T 57 53 six six 3.71798
|
||||
T 57 65 three three 2.58857
|
||||
T 57 70 two two 3.18862
|
||||
F 58 0.0529595
|
||||
T 58 0 , , 2.77885
|
||||
F 59 0.0361506
|
||||
T 59 0 , , 3.15234
|
||||
F 60 0.90883
|
||||
T 60 0 , , 0.673401
|
||||
T 60 52 seventy seventy 3.23582
|
||||
T 60 57 sixty sixty 3.23582
|
||||
T 60 63 thirty thirty 3.23582
|
||||
T 60 67 twelve twelve 3.23582
|
||||
T 60 69 twenty twenty 3.23582
|
||||
F 61 3.42982
|
||||
T 61 0 , , 1.65499
|
||||
T 61 38 nineteen nineteen 0.209535
|
||||
F 62 3.42982
|
||||
T 62 0 , , 1.65499
|
||||
T 62 38 nineteen nineteen 0.209535
|
||||
F 63 2.00141
|
||||
T 63 0 , , 0.457598
|
||||
T 63 10 eight eight 2.53077
|
||||
T 63 45 one one 1.40135
|
||||
T 63 49 seven seven 3.72835
|
||||
T 63 57 sixty sixty 3.72835
|
||||
T 63 70 two two 2.00141
|
||||
F 64 0.73913
|
||||
T 64 0 , , 0.733976
|
||||
T 64 10 eight eight 1.93647
|
||||
F 65 1.19366
|
||||
T 65 0 , , 1.00596
|
||||
T 65 10 eight eight 2.98047
|
||||
T 65 14 eighty eighty 5.51078
|
||||
T 65 15 eleven eleven 5.51078
|
||||
T 65 24 five five 2.98047
|
||||
T 65 25 forty forty 4.31343
|
||||
T 65 26 four four 3.18378
|
||||
T 65 27 fourteen fourteen 5.51078
|
||||
T 65 37 nine nine 3.78384
|
||||
T 65 44 oh oh 3.18378
|
||||
T 65 45 one one 2.98047
|
||||
T 65 49 seven seven 3.78384
|
||||
T 65 52 seventy seventy 5.51078
|
||||
T 65 53 six six 2.98047
|
||||
T 65 57 sixty sixty 4.31343
|
||||
T 65 65 three three 2.81146
|
||||
T 65 67 twelve twelve 5.51078
|
||||
T 65 69 twenty twenty 3.78384
|
||||
T 65 70 two two 2.23627
|
||||
T 65 72 zero zero 3.78384
|
||||
F 66 3.02388
|
||||
T 66 0 , , 1.24905
|
||||
T 66 38 nineteen nineteen 0.333645
|
||||
F 67 2.33961
|
||||
T 67 0 , , 0.56478
|
||||
T 67 22 fifty fifty 2.91738
|
||||
T 67 26 four four 2.91738
|
||||
T 67 37 nine nine 2.91738
|
||||
T 67 38 nineteen nineteen 2.91738
|
||||
T 67 57 sixty sixty 2.91738
|
||||
T 67 60 ten ten 2.91738
|
||||
T 67 69 twenty twenty 1.72003
|
||||
F 68 2.33073
|
||||
T 68 0 , , 0.555899
|
||||
T 68 38 nineteen nineteen 0.837911
|
||||
F 69 2.46386
|
||||
T 69 0 , , 0.689025
|
||||
T 69 10 eight eight 1.9123
|
||||
T 69 21 fifth fifth 4.23906
|
||||
T 69 23 first first 4.23906
|
||||
T 69 26 four four 3.04171
|
||||
T 69 28 fourth fourth 4.23906
|
||||
T 69 37 nine nine 2.51212
|
||||
T 69 45 one one 3.04171
|
||||
T 69 47 second second 3.04171
|
||||
T 69 49 seven seven 3.04171
|
||||
T 69 51 seventh seventh 4.23906
|
||||
T 69 53 six six 2.51212
|
||||
T 69 61 third third 3.04171
|
||||
T 69 65 three three 3.04171
|
||||
T 69 70 two two 3.04171
|
||||
F 70 1.78013
|
||||
T 70 0 , , 2.04844
|
||||
T 70 10 eight eight 3.39677
|
||||
T 70 19 fifteen fifteen 6.24047
|
||||
T 70 24 five five 3.05783
|
||||
T 70 26 four four 2.66616
|
||||
T 70 37 nine nine 3.54138
|
||||
T 70 44 oh oh 3.05783
|
||||
T 70 45 one one 1.54342
|
||||
T 70 49 seven seven 3.15846
|
||||
T 70 53 six six 2.29222
|
||||
T 70 60 ten ten 6.24047
|
||||
T 70 63 thirty thirty 5.04312
|
||||
T 70 65 three three 2.96619
|
||||
T 70 69 twenty twenty 5.04312
|
||||
T 70 70 two two 2.16673
|
||||
T 70 72 zero zero 3.71016
|
||||
F 71 0.0274008
|
||||
T 71 0 , , 3.42511
|
||||
F 72 1.01383
|
||||
T 72 0 , , 0.838939
|
||||
T 72 45 one one 2.89849
|
||||
T 72 49 seven seven 2.89849
|
||||
T 72 53 six six 1.56576
|
||||
T 72 70 two two 2.89849
|
||||
T 72 72 zero zero 4.09607
|
||||
|
|
@ -0,0 +1,624 @@
|
|||
#############################################################################
|
||||
## Copyright (c) 1996, Carnegie Mellon University, Cambridge University,
|
||||
## Ronald Rosenfeld and Philip Clarkson
|
||||
#############################################################################
|
||||
=============================================================================
|
||||
=============== This file was produced by the CMU-Cambridge ===============
|
||||
=============== Statistical Language Modeling Toolkit ===============
|
||||
=============================================================================
|
||||
This is a 2-gram language model, based on a vocabulary of 71 words,
|
||||
which begins "<s>", "</s>", "a"...
|
||||
This is an OPEN-vocabulary model (type 1)
|
||||
(OOVs were mapped to UNK, which is treated as any other vocabulary word)
|
||||
Absolute discounting was applied.
|
||||
1-gram discounting constant : 0.454545
|
||||
2-gram discounting constant : 0.633663
|
||||
This file is in the ARPA-standard format introduced by Doug Paul.
|
||||
|
||||
p(wd3|wd1,wd2)= if(trigram exists) p_3(wd1,wd2,wd3)
|
||||
else if(bigram w1,w2 exists) bo_wt_2(w1,w2)*p(wd3|wd2)
|
||||
else p(wd3|w2)
|
||||
|
||||
p(wd2|wd1)= if(bigram exists) p_2(wd1,wd2)
|
||||
else bo_wt_1(wd1)*p_1(wd2)
|
||||
|
||||
All probs and back-off weights (bo_wt) are given in log10 form.
|
||||
|
||||
Data formats:
|
||||
|
||||
Beginning of data mark: \data\
|
||||
ngram 1=nr # number of 1-grams
|
||||
ngram 2=nr # number of 2-grams
|
||||
|
||||
\1-grams:
|
||||
p_1 wd_1 bo_wt_1
|
||||
\2-grams:
|
||||
p_2 wd_1 wd_2
|
||||
|
||||
end of data mark: \end\
|
||||
|
||||
\data\
|
||||
ngram 1=72
|
||||
ngram 2=504
|
||||
|
||||
\1-grams:
|
||||
-3.5221 <UNK> 0.0000
|
||||
-98.9928 <s> 0.0000
|
||||
-3.5221 </s> 0.0000
|
||||
-3.5221 a -0.1367
|
||||
-3.5221 april -0.1975
|
||||
-3.5221 area -0.1980
|
||||
-2.7091 august -0.4919
|
||||
-3.5221 code -0.1670
|
||||
-3.5221 december -0.1980
|
||||
-1.1923 eight 0.2622
|
||||
-3.5221 eighteen -0.1978
|
||||
-3.5221 eighteenth -0.1910
|
||||
-3.5221 eighth -0.1910
|
||||
-2.7091 eighty -0.2436
|
||||
-2.7091 eleven -0.0994
|
||||
-3.5221 eleventh -0.1910
|
||||
-1.3369 enter -0.1027
|
||||
-3.0698 february -0.1909
|
||||
-2.7091 fifteen -0.1065
|
||||
-3.0698 fifteenth -0.4920
|
||||
-3.5221 fifth -0.1910
|
||||
-1.8515 fifty -0.1466
|
||||
-2.8530 first -0.6681
|
||||
-1.0559 five -0.2462
|
||||
-2.0672 forty -0.0705
|
||||
-1.1600 four 0.1638
|
||||
-2.4429 fourteen -0.2595
|
||||
-3.5221 fourth -0.1910
|
||||
-2.2790 go -0.2105
|
||||
-2.1964 help -0.2008
|
||||
-3.0698 hundred -0.1357
|
||||
-3.0698 january -0.1974
|
||||
-2.8530 july -0.1900
|
||||
-3.0698 june -0.1909
|
||||
-2.8530 march -0.1903
|
||||
-2.8530 may -0.1834
|
||||
-1.4228 nine 0.7054
|
||||
-1.7883 nineteen -0.9412
|
||||
-2.7091 ninety -0.0481
|
||||
-3.0698 ninth -0.1835
|
||||
-2.0672 no -0.2581
|
||||
-2.8530 october -0.1898
|
||||
-3.0698 of -0.1828
|
||||
-1.5142 oh -0.3316
|
||||
-0.8794 one 0.2068
|
||||
-2.0401 repeat -0.3613
|
||||
-3.0698 second -0.4920
|
||||
-2.6012 september -0.1826
|
||||
-1.2564 seven 0.2397
|
||||
-2.8530 seventeen -0.3638
|
||||
-3.5221 seventh -0.1910
|
||||
-2.1964 seventy -0.2886
|
||||
-1.1498 six 0.1383
|
||||
-2.8530 sixteen -0.3561
|
||||
-3.5221 sixteenth -0.1910
|
||||
-3.5221 sixth -0.1910
|
||||
-1.4913 sixty -0.2160
|
||||
-2.2357 start -0.3236
|
||||
-2.0672 stop -0.2839
|
||||
-2.2357 ten -0.2802
|
||||
-2.8530 third -0.6681
|
||||
-2.8530 thirtieth -0.6681
|
||||
-2.0146 thirty -0.1262
|
||||
-2.8530 thousand -0.2794
|
||||
-1.2313 three 0.2953
|
||||
-3.0698 twelfth -0.4920
|
||||
-2.3811 twelve -0.1637
|
||||
-3.5221 twentieth -0.1910
|
||||
-1.7883 twenty -0.1149
|
||||
-0.9133 two -0.1824
|
||||
-1.9461 yes -0.0598
|
||||
-1.8515 zero -0.0435
|
||||
|
||||
\2-grams:
|
||||
-0.4361 a one
|
||||
-0.4361 april thirtieth
|
||||
-0.4361 area code
|
||||
-1.0382 august sixteenth
|
||||
-0.2280 august twenty
|
||||
-0.4361 code four
|
||||
-0.4361 december eighteenth
|
||||
-2.5043 eight april
|
||||
-2.5043 eight august
|
||||
-1.3385 eight eight
|
||||
-1.0126 eight enter
|
||||
-2.5043 eight fifty
|
||||
-1.2009 eight five
|
||||
-2.5043 eight forty
|
||||
-0.9422 eight four
|
||||
-2.5043 eight fourteen
|
||||
-2.5043 eight help
|
||||
-2.5043 eight hundred
|
||||
-2.5043 eight june
|
||||
-1.3385 eight nine
|
||||
-2.5043 eight no
|
||||
-1.6941 eight oh
|
||||
-1.3385 eight one
|
||||
-1.3385 eight seven
|
||||
-1.9326 eight seventy
|
||||
-1.4281 eight six
|
||||
-1.6941 eight sixty
|
||||
-2.5043 eight stop
|
||||
-2.5043 eight ten
|
||||
-2.5043 eight thirty
|
||||
-0.9108 eight three
|
||||
-2.5043 eight twelve
|
||||
-1.9326 eight twenty
|
||||
-1.0126 eight two
|
||||
-1.5410 eight zero
|
||||
-0.4361 eighteen february
|
||||
-0.4361 eighteenth nineteen
|
||||
-0.4361 eighth nineteen
|
||||
-0.4665 eighty nine
|
||||
-1.0382 eighty six
|
||||
-1.0382 eighty three
|
||||
-1.0382 eleven nine
|
||||
-1.0382 eleven one
|
||||
-1.0382 eleven seventeen
|
||||
-1.0382 eleven sixty
|
||||
-0.4361 eleventh nineteen
|
||||
-1.0570 enter eight
|
||||
-2.3604 enter eighty
|
||||
-2.3604 enter fifteen
|
||||
-1.2842 enter fifty
|
||||
-1.1946 enter five
|
||||
-1.5502 enter forty
|
||||
-1.1946 enter four
|
||||
-2.3604 enter fourteen
|
||||
-1.3971 enter nine
|
||||
-1.5502 enter ninety
|
||||
-1.3971 enter one
|
||||
-1.0017 enter seven
|
||||
-1.3971 enter seventy
|
||||
-1.0570 enter six
|
||||
-1.0570 enter sixty
|
||||
-1.5502 enter thirty
|
||||
-1.7887 enter three
|
||||
-2.3604 enter twenty
|
||||
-1.1946 enter two
|
||||
-2.3604 enter zero
|
||||
-0.7371 february eighth
|
||||
-0.7371 february nineteen
|
||||
-1.0382 fifteen nineteen
|
||||
-1.0382 fifteen one
|
||||
-1.0382 fifteen sixty
|
||||
-1.0382 fifteen thirty
|
||||
-0.1655 fifteenth nineteen
|
||||
-0.4361 fifth nineteen
|
||||
-0.8878 fifty eight
|
||||
-1.0409 fifty five
|
||||
-1.2794 fifty four
|
||||
-0.6853 fifty one
|
||||
-1.2794 fifty seven
|
||||
-0.7749 fifty six
|
||||
-1.8511 fifty sixty
|
||||
-1.8511 fifty three
|
||||
-1.2794 fifty two
|
||||
-0.1030 first nineteen
|
||||
-1.6770 five eight
|
||||
-1.5640 five enter
|
||||
-1.2816 five five
|
||||
-1.4744 five four
|
||||
-2.6402 five fourteen
|
||||
-1.8300 five help
|
||||
-2.6402 five may
|
||||
-1.4744 five nine
|
||||
-2.6402 five ninth
|
||||
-2.6402 five october
|
||||
-1.4744 five oh
|
||||
-0.8952 five one
|
||||
-2.6402 five repeat
|
||||
-1.6770 five seven
|
||||
-1.4002 five six
|
||||
-2.6402 five sixteen
|
||||
-2.6402 five ten
|
||||
-1.4002 five three
|
||||
-2.6402 five twenty
|
||||
-0.3822 five two
|
||||
-1.6770 five yes
|
||||
-1.8300 five zero
|
||||
-1.6402 forty eight
|
||||
-1.0686 forty five
|
||||
-1.0686 forty four
|
||||
-1.6402 forty nine
|
||||
-1.0686 forty one
|
||||
-0.8300 forty seven
|
||||
-0.8300 forty three
|
||||
-1.0686 forty two
|
||||
-2.5365 four august
|
||||
-1.2331 four eight
|
||||
-2.5365 four eleven
|
||||
-1.4603 four enter
|
||||
-1.7263 four fifty
|
||||
-1.3707 four five
|
||||
-2.5365 four forty
|
||||
-0.9430 four four
|
||||
-2.5365 four help
|
||||
-1.9648 four january
|
||||
-2.5365 four march
|
||||
-1.9648 four nine
|
||||
-1.9648 four no
|
||||
-1.5732 four oh
|
||||
-0.7318 four one
|
||||
-2.5365 four repeat
|
||||
-2.5365 four september
|
||||
-1.2965 four seven
|
||||
-1.1288 four six
|
||||
-1.9648 four sixty
|
||||
-1.9648 four stop
|
||||
-2.5365 four thousand
|
||||
-1.3707 four three
|
||||
-2.5365 four twelve
|
||||
-1.9648 four twenty
|
||||
-0.9138 four two
|
||||
-2.5365 four zero
|
||||
-1.2812 fourteen a
|
||||
-1.2812 fourteen fourteen
|
||||
-1.2812 fourteen one
|
||||
-1.2812 fourteen repeat
|
||||
-0.4710 fourteen sixty
|
||||
-0.4361 fourth nineteen
|
||||
-0.8644 go enter
|
||||
-1.4361 go fifty
|
||||
-1.4361 go one
|
||||
-0.8644 go repeat
|
||||
-1.4361 go stop
|
||||
-1.4361 go three
|
||||
-0.8644 go yes
|
||||
-0.5520 help enter
|
||||
-1.5153 help fifty
|
||||
-0.9436 help go
|
||||
-1.5153 help help
|
||||
-1.5153 help one
|
||||
-1.5153 help seven
|
||||
-1.5153 help three
|
||||
-1.5153 help yes
|
||||
-0.7371 hundred eighty
|
||||
-0.7371 hundred one
|
||||
-0.7371 january fifteenth
|
||||
-0.7371 january twelfth
|
||||
-0.9132 july thirtieth
|
||||
-0.9132 july twelfth
|
||||
-0.9132 july twenty
|
||||
-0.7371 june eleventh
|
||||
-0.7371 june twenty
|
||||
-0.9132 march third
|
||||
-0.9132 march twentieth
|
||||
-0.9132 march twenty
|
||||
-0.9132 may nineteen
|
||||
-0.9132 may ninth
|
||||
-0.9132 may twenty
|
||||
-2.2750 nine august
|
||||
-1.4648 nine eight
|
||||
-2.2750 nine eighty
|
||||
-2.2750 nine eleven
|
||||
-1.1092 nine enter
|
||||
-2.2750 nine fifty
|
||||
-0.8673 nine five
|
||||
-2.2750 nine forty
|
||||
-2.2750 nine four
|
||||
-2.2750 nine go
|
||||
-2.2750 nine help
|
||||
-2.2750 nine july
|
||||
-2.2750 nine june
|
||||
-2.2750 nine nine
|
||||
-2.2750 nine nineteen
|
||||
-2.2750 nine no
|
||||
-2.2750 nine of
|
||||
-2.2750 nine oh
|
||||
-1.1987 nine one
|
||||
-2.2750 nine september
|
||||
-1.7033 nine seven
|
||||
-2.2750 nine seventy
|
||||
-1.0350 nine six
|
||||
-2.2750 nine sixty
|
||||
-2.2750 nine stop
|
||||
-2.2750 nine thirty
|
||||
-1.1987 nine three
|
||||
-2.2750 nine twenty
|
||||
-1.0350 nine two
|
||||
-1.7033 nine yes
|
||||
-2.2750 nine zero
|
||||
-1.3416 nineteen fifty
|
||||
-1.3416 nineteen forty
|
||||
-1.1030 nineteen seventy
|
||||
-0.1474 nineteen sixty
|
||||
-1.9132 nineteen twenty
|
||||
-1.0382 ninety eight
|
||||
-1.0382 ninety five
|
||||
-1.0382 ninety four
|
||||
-1.0382 ninety six
|
||||
-0.7371 ninth of
|
||||
-0.7371 ninth sixty
|
||||
-0.8300 no enter
|
||||
-1.0686 no fifty
|
||||
-1.6402 no help
|
||||
-0.6770 no one
|
||||
-1.6402 no repeat
|
||||
-1.6402 no six
|
||||
-1.0686 no start
|
||||
-1.6402 no three
|
||||
-1.6402 no yes
|
||||
-0.9132 october first
|
||||
-0.9132 october thirtieth
|
||||
-0.9132 october twenty
|
||||
-0.7371 of september
|
||||
-0.7371 of sixty
|
||||
-0.7326 oh eight
|
||||
-1.1081 oh five
|
||||
-1.3741 oh four
|
||||
-2.1843 oh nine
|
||||
-1.6126 oh oh
|
||||
-1.0185 oh one
|
||||
-1.1081 oh seven
|
||||
-0.7326 oh six
|
||||
-1.2210 oh three
|
||||
-2.1843 oh twelve
|
||||
-0.9443 oh two
|
||||
-2.8163 one august
|
||||
-1.5763 one eight
|
||||
-2.8163 one eleven
|
||||
-1.6505 one enter
|
||||
-2.8163 one february
|
||||
-2.8163 one fifteen
|
||||
-1.8531 one fifty
|
||||
-0.5328 one five
|
||||
-2.8163 one forty
|
||||
-1.3246 one four
|
||||
-2.8163 one go
|
||||
-2.8163 one help
|
||||
-2.8163 one hundred
|
||||
-2.8163 one july
|
||||
-1.4577 one nine
|
||||
-2.8163 one ninety
|
||||
-2.8163 one no
|
||||
-1.3646 one oh
|
||||
-1.2229 one one
|
||||
-2.8163 one repeat
|
||||
-1.0505 one seven
|
||||
-1.5763 one six
|
||||
-2.8163 one sixteen
|
||||
-2.0061 one sixty
|
||||
-2.2447 one start
|
||||
-2.8163 one stop
|
||||
-2.2447 one ten
|
||||
-2.2447 one thirty
|
||||
-2.2447 one thousand
|
||||
-1.2542 one three
|
||||
-2.2447 one twenty
|
||||
-0.9274 one two
|
||||
-2.8163 one yes
|
||||
-1.7401 one zero
|
||||
-1.0949 repeat enter
|
||||
-1.6666 repeat fifty
|
||||
-1.6666 repeat five
|
||||
-1.6666 repeat forty
|
||||
-0.7033 repeat no
|
||||
-0.7033 repeat one
|
||||
-1.6666 repeat repeat
|
||||
-0.8564 repeat stop
|
||||
-0.1655 second nineteen
|
||||
-1.1351 september fifteenth
|
||||
-1.1351 september first
|
||||
-1.1351 september nineteen
|
||||
-1.1351 september sixth
|
||||
-1.1351 september twenty
|
||||
-2.4404 seven area
|
||||
-1.0818 seven eight
|
||||
-1.1371 seven enter
|
||||
-2.4404 seven fifteen
|
||||
-2.4404 seven fifty
|
||||
-1.3642 seven five
|
||||
-1.8688 seven forty
|
||||
-0.8470 seven four
|
||||
-1.8688 seven fourteen
|
||||
-2.4404 seven go
|
||||
-2.4404 seven may
|
||||
-1.3642 seven nine
|
||||
-2.4404 seven october
|
||||
-1.4772 seven oh
|
||||
-1.1371 seven one
|
||||
-1.6302 seven seven
|
||||
-2.4404 seven seventeen
|
||||
-1.3642 seven six
|
||||
-1.8688 seven sixty
|
||||
-1.4772 seven start
|
||||
-1.3642 seven stop
|
||||
-1.8688 seven ten
|
||||
-1.8688 seven thirty
|
||||
-1.6302 seven three
|
||||
-2.4404 seven twenty
|
||||
-1.2004 seven two
|
||||
-1.8688 seven yes
|
||||
-0.3416 seventeen fifty
|
||||
-0.9132 seventeen thirty
|
||||
-0.4361 seventh nineteen
|
||||
-1.5153 seventy eight
|
||||
-1.5153 seventy enter
|
||||
-1.5153 seventy no
|
||||
-0.3495 seventy one
|
||||
-0.9436 seventy two
|
||||
-1.5153 seventy yes
|
||||
-0.7238 six eight
|
||||
-1.4705 six enter
|
||||
-1.3809 six five
|
||||
-2.5467 six forty
|
||||
-1.1390 six four
|
||||
-2.5467 six july
|
||||
-1.5834 six nine
|
||||
-2.5467 six no
|
||||
-1.3809 six oh
|
||||
-0.9240 six one
|
||||
-2.5467 six repeat
|
||||
-2.5467 six september
|
||||
-1.3809 six seven
|
||||
-2.5467 six seventeen
|
||||
-1.0550 six six
|
||||
-2.5467 six sixteen
|
||||
-1.9750 six sixty
|
||||
-2.5467 six start
|
||||
-2.5467 six ten
|
||||
-1.7365 six thirty
|
||||
-1.0550 six three
|
||||
-2.5467 six twelve
|
||||
-2.5467 six twenty
|
||||
-1.1881 six two
|
||||
-2.5467 six yes
|
||||
-2.5467 six zero
|
||||
-0.9132 sixteen forty
|
||||
-0.3416 sixteen sixty
|
||||
-0.4361 sixteenth nineteen
|
||||
-0.4361 sixth nineteen
|
||||
-1.1307 sixty eight
|
||||
-1.6353 sixty enter
|
||||
-2.2070 sixty fifty
|
||||
-1.1307 sixty five
|
||||
-1.2437 sixty four
|
||||
-1.6353 sixty help
|
||||
-0.7152 sixty nine
|
||||
-0.9670 sixty one
|
||||
-0.7993 sixty seven
|
||||
-1.6353 sixty six
|
||||
-2.2070 sixty start
|
||||
-1.1307 sixty three
|
||||
-1.3968 sixty two
|
||||
-0.6673 start enter
|
||||
-1.4775 start go
|
||||
-1.4775 start no
|
||||
-1.4775 start one
|
||||
-0.6673 start repeat
|
||||
-0.9058 start six
|
||||
-0.4002 stop enter
|
||||
-1.6402 stop go
|
||||
-0.8300 stop one
|
||||
-1.6402 stop repeat
|
||||
-1.6402 stop seven
|
||||
-1.6402 stop thirty
|
||||
-1.6402 stop two
|
||||
-1.6402 stop yes
|
||||
-1.4775 ten oh
|
||||
-0.4013 ten one
|
||||
-1.4775 ten seventy
|
||||
-1.4775 ten sixty
|
||||
-1.4775 ten thirty
|
||||
-1.4775 ten twelve
|
||||
-1.4775 ten twenty
|
||||
-0.1030 third nineteen
|
||||
-0.1030 thirtieth nineteen
|
||||
-1.1197 thirty eight
|
||||
-1.6914 thirty five
|
||||
-0.3880 thirty one
|
||||
-1.6914 thirty seven
|
||||
-1.6914 thirty six
|
||||
-1.6914 thirty sixty
|
||||
-1.6914 thirty three
|
||||
-0.8812 thirty two
|
||||
-0.9132 thousand eight
|
||||
-0.3416 thousand one
|
||||
-2.4655 three december
|
||||
-1.2997 three eight
|
||||
-2.4655 three eighty
|
||||
-2.4655 three eleven
|
||||
-1.8938 three enter
|
||||
-1.2997 three five
|
||||
-1.8938 three forty
|
||||
-1.0138 three four
|
||||
-2.4655 three fourteen
|
||||
-2.4655 three march
|
||||
-2.4655 three may
|
||||
-1.6553 three nine
|
||||
-1.6553 three no
|
||||
-1.2997 three oh
|
||||
-1.0578 three one
|
||||
-2.4655 three repeat
|
||||
-2.4655 three september
|
||||
-1.5022 three seven
|
||||
-2.4655 three seventy
|
||||
-1.1068 three six
|
||||
-1.8938 three sixty
|
||||
-2.4655 three stop
|
||||
-2.4655 three ten
|
||||
-1.1621 three three
|
||||
-2.4655 three twelve
|
||||
-1.6553 three twenty
|
||||
-0.8720 three two
|
||||
-1.8938 three yes
|
||||
-1.6553 three zero
|
||||
-0.1655 twelfth nineteen
|
||||
-1.3392 twelve fifty
|
||||
-1.3392 twelve four
|
||||
-1.3392 twelve nine
|
||||
-1.3392 twelve nineteen
|
||||
-1.3392 twelve sixty
|
||||
-1.3392 twelve ten
|
||||
-0.7675 twelve twenty
|
||||
-0.4361 twentieth nineteen
|
||||
-0.8370 twenty eight
|
||||
-1.9132 twenty fifth
|
||||
-1.9132 twenty first
|
||||
-1.3416 twenty four
|
||||
-1.9132 twenty fourth
|
||||
-1.1030 twenty nine
|
||||
-1.1030 twenty one
|
||||
-1.3416 twenty second
|
||||
-1.3416 twenty seven
|
||||
-1.9132 twenty seventh
|
||||
-1.1030 twenty six
|
||||
-1.3416 twenty third
|
||||
-1.3416 twenty three
|
||||
-1.3416 twenty two
|
||||
-1.4238 two eight
|
||||
-2.7825 two eighteen
|
||||
-1.7062 two enter
|
||||
-2.7825 two fifteen
|
||||
-1.2541 two five
|
||||
-1.1066 two four
|
||||
-2.7825 two go
|
||||
-2.7825 two help
|
||||
-2.7825 two march
|
||||
-1.5425 two nine
|
||||
-2.7825 two no
|
||||
-2.7825 two october
|
||||
-1.2907 two oh
|
||||
-0.5953 two one
|
||||
-2.7825 two repeat
|
||||
-1.3307 two seven
|
||||
-0.9596 two six
|
||||
-2.7825 two sixty
|
||||
-2.2108 two ten
|
||||
-2.2108 two thirty
|
||||
-1.1890 two three
|
||||
-2.7825 two twelve
|
||||
-2.2108 two twenty
|
||||
-0.9091 two two
|
||||
-1.6167 two zero
|
||||
-0.7951 yes enter
|
||||
-1.7583 yes five
|
||||
-1.7583 yes four
|
||||
-1.1867 yes go
|
||||
-0.9481 yes one
|
||||
-1.1867 yes repeat
|
||||
-1.7583 yes six
|
||||
-1.7583 yes start
|
||||
-1.7583 yes stop
|
||||
-1.7583 yes twenty
|
||||
-1.1867 yes two
|
||||
-1.1867 yes yes
|
||||
-1.8511 zero eight
|
||||
-1.2794 zero enter
|
||||
-1.8511 zero five
|
||||
-1.8511 zero four
|
||||
-1.8511 zero nine
|
||||
-0.5477 zero one
|
||||
-1.2794 zero seven
|
||||
-0.6853 zero six
|
||||
-1.8511 zero twelve
|
||||
-1.2794 zero two
|
||||
-1.8511 zero zero
|
||||
|
||||
\end\
|
||||
|
|
@ -0,0 +1,217 @@
|
|||
#FSTBasic MinPlus
|
||||
I 2
|
||||
F 0 4.29133
|
||||
T 0 1 <unknown> <unknown> 4.26232
|
||||
T 0 4 a a 4.26232
|
||||
T 0 5 april april 4.26232
|
||||
T 0 6 area area 4.26232
|
||||
T 0 7 august august 4.26232
|
||||
T 0 8 code code 4.26232
|
||||
T 0 9 december december 4.26232
|
||||
T 0 10 eight eight 4.26232
|
||||
T 0 11 eighteen eighteen 4.26232
|
||||
T 0 12 eighteenth eighteenth 4.26232
|
||||
T 0 13 eighth eighth 4.26232
|
||||
T 0 14 eighty eighty 4.26232
|
||||
T 0 15 eleven eleven 4.26232
|
||||
T 0 16 eleventh eleventh 4.26232
|
||||
T 0 17 enter enter 4.26232
|
||||
T 0 18 february february 4.26232
|
||||
T 0 19 fifteen fifteen 4.26232
|
||||
T 0 20 fifteenth fifteenth 4.26232
|
||||
T 0 21 fifth fifth 4.26232
|
||||
T 0 22 fifty fifty 4.26232
|
||||
T 0 23 first first 4.26232
|
||||
T 0 24 five five 4.26232
|
||||
T 0 25 forty forty 4.26232
|
||||
T 0 26 four four 4.26232
|
||||
T 0 27 fourteen fourteen 4.26232
|
||||
T 0 28 fourth fourth 4.26232
|
||||
T 0 29 go go 4.26232
|
||||
T 0 30 help help 4.26232
|
||||
T 0 31 hundred hundred 4.26232
|
||||
T 0 32 january january 4.26232
|
||||
T 0 33 july july 4.26232
|
||||
T 0 34 june june 4.26232
|
||||
T 0 35 march march 4.26232
|
||||
T 0 36 may may 4.26232
|
||||
T 0 37 nine nine 4.26232
|
||||
T 0 38 nineteen nineteen 4.26232
|
||||
T 0 39 ninety ninety 4.26232
|
||||
T 0 40 ninth ninth 4.26232
|
||||
T 0 41 no no 4.26232
|
||||
T 0 42 october october 4.26232
|
||||
T 0 43 of of 4.26232
|
||||
T 0 44 oh oh 4.26232
|
||||
T 0 45 one one 4.26232
|
||||
T 0 46 repeat repeat 4.26232
|
||||
T 0 47 second second 4.26232
|
||||
T 0 48 september september 4.26232
|
||||
T 0 49 seven seven 4.26232
|
||||
T 0 50 seventeen seventeen 4.26232
|
||||
T 0 51 seventh seventh 4.26232
|
||||
T 0 52 seventy seventy 4.26232
|
||||
T 0 53 six six 4.26232
|
||||
T 0 54 sixteen sixteen 4.26232
|
||||
T 0 55 sixteenth sixteenth 4.26232
|
||||
T 0 56 sixth sixth 4.26232
|
||||
T 0 57 sixty sixty 4.26232
|
||||
T 0 58 start start 4.26232
|
||||
T 0 59 stop stop 4.26232
|
||||
T 0 60 ten ten 4.26232
|
||||
T 0 61 third third 4.26232
|
||||
T 0 62 thirtieth thirtieth 4.26232
|
||||
T 0 63 thirty thirty 4.26232
|
||||
T 0 64 thousand thousand 4.26232
|
||||
T 0 65 three three 4.26232
|
||||
T 0 66 twelfth twelfth 4.26232
|
||||
T 0 67 twelve twelve 4.26232
|
||||
T 0 68 twentieth twentieth 4.26232
|
||||
T 0 69 twenty twenty 4.26232
|
||||
T 0 70 two two 4.26232
|
||||
T 0 71 yes yes 4.26232
|
||||
T 0 72 zero zero 4.26232
|
||||
F 1 4.29133
|
||||
T 1 0
|
||||
F 2 4.29133
|
||||
T 2 0
|
||||
F 3 4.29133
|
||||
T 3 0
|
||||
F 4 4.29133
|
||||
T 4 0
|
||||
F 5 4.29133
|
||||
T 5 0
|
||||
F 6 4.29133
|
||||
T 6 0
|
||||
F 7 4.29133
|
||||
T 7 0
|
||||
F 8 4.29133
|
||||
T 8 0
|
||||
F 9 4.29133
|
||||
T 9 0
|
||||
F 10 4.29133
|
||||
T 10 0
|
||||
F 11 4.29133
|
||||
T 11 0
|
||||
F 12 4.29133
|
||||
T 12 0
|
||||
F 13 4.29133
|
||||
T 13 0
|
||||
F 14 4.29133
|
||||
T 14 0
|
||||
F 15 4.29133
|
||||
T 15 0
|
||||
F 16 4.29133
|
||||
T 16 0
|
||||
F 17 4.29133
|
||||
T 17 0
|
||||
F 18 4.29133
|
||||
T 18 0
|
||||
F 19 4.29133
|
||||
T 19 0
|
||||
F 20 4.29133
|
||||
T 20 0
|
||||
F 21 4.29133
|
||||
T 21 0
|
||||
F 22 4.29133
|
||||
T 22 0
|
||||
F 23 4.29133
|
||||
T 23 0
|
||||
F 24 4.29133
|
||||
T 24 0
|
||||
F 25 4.29133
|
||||
T 25 0
|
||||
F 26 4.29133
|
||||
T 26 0
|
||||
F 27 4.29133
|
||||
T 27 0
|
||||
F 28 4.29133
|
||||
T 28 0
|
||||
F 29 4.29133
|
||||
T 29 0
|
||||
F 30 4.29133
|
||||
T 30 0
|
||||
F 31 4.29133
|
||||
T 31 0
|
||||
F 32 4.29133
|
||||
T 32 0
|
||||
F 33 4.29133
|
||||
T 33 0
|
||||
F 34 4.29133
|
||||
T 34 0
|
||||
F 35 4.29133
|
||||
T 35 0
|
||||
F 36 4.29133
|
||||
T 36 0
|
||||
F 37 4.29133
|
||||
T 37 0
|
||||
F 38 4.29133
|
||||
T 38 0
|
||||
F 39 4.29133
|
||||
T 39 0
|
||||
F 40 4.29133
|
||||
T 40 0
|
||||
F 41 4.29133
|
||||
T 41 0
|
||||
F 42 4.29133
|
||||
T 42 0
|
||||
F 43 4.29133
|
||||
T 43 0
|
||||
F 44 4.29133
|
||||
T 44 0
|
||||
F 45 4.29133
|
||||
T 45 0
|
||||
F 46 4.29133
|
||||
T 46 0
|
||||
F 47 4.29133
|
||||
T 47 0
|
||||
F 48 4.29133
|
||||
T 48 0
|
||||
F 49 4.29133
|
||||
T 49 0
|
||||
F 50 4.29133
|
||||
T 50 0
|
||||
F 51 4.29133
|
||||
T 51 0
|
||||
F 52 4.29133
|
||||
T 52 0
|
||||
F 53 4.29133
|
||||
T 53 0
|
||||
F 54 4.29133
|
||||
T 54 0
|
||||
F 55 4.29133
|
||||
T 55 0
|
||||
F 56 4.29133
|
||||
T 56 0
|
||||
F 57 4.29133
|
||||
T 57 0
|
||||
F 58 4.29133
|
||||
T 58 0
|
||||
F 59 4.29133
|
||||
T 59 0
|
||||
F 60 4.29133
|
||||
T 60 0
|
||||
F 61 4.29133
|
||||
T 61 0
|
||||
F 62 4.29133
|
||||
T 62 0
|
||||
F 63 4.29133
|
||||
T 63 0
|
||||
F 64 4.29133
|
||||
T 64 0
|
||||
F 65 4.29133
|
||||
T 65 0
|
||||
F 66 4.29133
|
||||
T 66 0
|
||||
F 67 4.29133
|
||||
T 67 0
|
||||
F 68 4.29133
|
||||
T 68 0
|
||||
F 69 4.29133
|
||||
T 69 0
|
||||
F 70 4.29133
|
||||
T 70 0
|
||||
F 71 4.29133
|
||||
T 71 0
|
||||
F 72 4.29133
|
||||
T 72 0
|
||||
|
|
@ -0,0 +1,114 @@
|
|||
#############################################################################
|
||||
## Copyright (c) 1996, Carnegie Mellon University, Cambridge University,
|
||||
## Ronald Rosenfeld and Philip Clarkson
|
||||
#############################################################################
|
||||
=============================================================================
|
||||
=============== This file was produced by the CMU-Cambridge ===============
|
||||
=============== Statistical Language Modeling Toolkit ===============
|
||||
=============================================================================
|
||||
This is a 1-gram language model, based on a vocabulary of 71 words,
|
||||
which begins "<s>", "</s>", "a"...
|
||||
This is an OPEN-vocabulary model (type 1)
|
||||
(OOVs were mapped to UNK, which is treated as any other vocabulary word)
|
||||
Good-Turing discounting was applied.
|
||||
1-gram frequency of frequency : 70
|
||||
1-gram discounting ratios : 0.97
|
||||
This file is in the ARPA-standard format introduced by Doug Paul.
|
||||
|
||||
p(wd3|wd1,wd2)= if(trigram exists) p_3(wd1,wd2,wd3)
|
||||
else if(bigram w1,w2 exists) bo_wt_2(w1,w2)*p(wd3|wd2)
|
||||
else p(wd3|w2)
|
||||
|
||||
p(wd2|wd1)= if(bigram exists) p_2(wd1,wd2)
|
||||
else bo_wt_1(wd1)*p_1(wd2)
|
||||
|
||||
All probs and back-off weights (bo_wt) are given in log10 form.
|
||||
|
||||
Data formats:
|
||||
|
||||
Beginning of data mark: \data\
|
||||
ngram 1=nr # number of 1-grams
|
||||
|
||||
\1-grams:
|
||||
p_1 wd_1
|
||||
|
||||
end of data mark: \end\
|
||||
|
||||
\data\
|
||||
ngram 1=72
|
||||
|
||||
\1-grams:
|
||||
-1.8511 <UNK> 0.0000
|
||||
-99.0000 <s> 0.0000
|
||||
-1.8637 </s> 0.0000
|
||||
-1.8511 a 0.0000
|
||||
-1.8511 april 0.0000
|
||||
-1.8511 area 0.0000
|
||||
-1.8511 august 0.0000
|
||||
-1.8511 code 0.0000
|
||||
-1.8511 december 0.0000
|
||||
-1.8511 eight 0.0000
|
||||
-1.8511 eighteen 0.0000
|
||||
-1.8511 eighteenth 0.0000
|
||||
-1.8511 eighth 0.0000
|
||||
-1.8511 eighty 0.0000
|
||||
-1.8511 eleven 0.0000
|
||||
-1.8511 eleventh 0.0000
|
||||
-1.8511 enter 0.0000
|
||||
-1.8511 february 0.0000
|
||||
-1.8511 fifteen 0.0000
|
||||
-1.8511 fifteenth 0.0000
|
||||
-1.8511 fifth 0.0000
|
||||
-1.8511 fifty 0.0000
|
||||
-1.8511 first 0.0000
|
||||
-1.8511 five 0.0000
|
||||
-1.8511 forty 0.0000
|
||||
-1.8511 four 0.0000
|
||||
-1.8511 fourteen 0.0000
|
||||
-1.8511 fourth 0.0000
|
||||
-1.8511 go 0.0000
|
||||
-1.8511 help 0.0000
|
||||
-1.8511 hundred 0.0000
|
||||
-1.8511 january 0.0000
|
||||
-1.8511 july 0.0000
|
||||
-1.8511 june 0.0000
|
||||
-1.8511 march 0.0000
|
||||
-1.8511 may 0.0000
|
||||
-1.8511 nine 0.0000
|
||||
-1.8511 nineteen 0.0000
|
||||
-1.8511 ninety 0.0000
|
||||
-1.8511 ninth 0.0000
|
||||
-1.8511 no 0.0000
|
||||
-1.8511 october 0.0000
|
||||
-1.8511 of 0.0000
|
||||
-1.8511 oh 0.0000
|
||||
-1.8511 one 0.0000
|
||||
-1.8511 repeat 0.0000
|
||||
-1.8511 second 0.0000
|
||||
-1.8511 september 0.0000
|
||||
-1.8511 seven 0.0000
|
||||
-1.8511 seventeen 0.0000
|
||||
-1.8511 seventh 0.0000
|
||||
-1.8511 seventy 0.0000
|
||||
-1.8511 six 0.0000
|
||||
-1.8511 sixteen 0.0000
|
||||
-1.8511 sixteenth 0.0000
|
||||
-1.8511 sixth 0.0000
|
||||
-1.8511 sixty 0.0000
|
||||
-1.8511 start 0.0000
|
||||
-1.8511 stop 0.0000
|
||||
-1.8511 ten 0.0000
|
||||
-1.8511 third 0.0000
|
||||
-1.8511 thirtieth 0.0000
|
||||
-1.8511 thirty 0.0000
|
||||
-1.8511 thousand 0.0000
|
||||
-1.8511 three 0.0000
|
||||
-1.8511 twelfth 0.0000
|
||||
-1.8511 twelve 0.0000
|
||||
-1.8511 twentieth 0.0000
|
||||
-1.8511 twenty 0.0000
|
||||
-1.8511 two 0.0000
|
||||
-1.8511 yes 0.0000
|
||||
-1.8511 zero 0.0000
|
||||
|
||||
\end\
|
||||
File diff suppressed because it is too large
Load diff
1602
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_words.trigram.lm
Normal file
1602
lib/sphinx4-5prealpha-src/tests/performance/an4/an4_words.trigram.lm
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,217 @@
|
|||
#FSTBasic MinPlus
|
||||
I 2
|
||||
F 0 7.77215
|
||||
T 0 1 <unknown> <unknown> 7.6386
|
||||
T 0 4 a a 7.6386
|
||||
T 0 5 april april 7.6386
|
||||
T 0 6 area area 7.6386
|
||||
T 0 7 august august 6.13455
|
||||
T 0 8 code code 7.6386
|
||||
T 0 9 december december 7.6386
|
||||
T 0 10 eight eight 2.7585
|
||||
T 0 11 eighteen eighteen 7.6386
|
||||
T 0 12 eighteenth eighteenth 7.6386
|
||||
T 0 13 eighth eighth 7.6386
|
||||
T 0 14 eighty eighty 6.13455
|
||||
T 0 15 eleven eleven 6.13455
|
||||
T 0 16 eleventh eleventh 7.6386
|
||||
T 0 17 enter enter 3.09007
|
||||
T 0 18 february february 6.82763
|
||||
T 0 19 fifteen fifteen 6.13455
|
||||
T 0 20 fifteenth fifteenth 6.82763
|
||||
T 0 21 fifth fifth 7.6386
|
||||
T 0 22 fifty fifty 4.26278
|
||||
T 0 23 first first 6.42214
|
||||
T 0 24 five five 2.44558
|
||||
T 0 25 forty forty 4.74816
|
||||
T 0 26 four four 2.68458
|
||||
T 0 27 fourteen fourteen 5.57479
|
||||
T 0 28 fourth fourth 7.6386
|
||||
T 0 29 go go 5.21812
|
||||
T 0 30 help help 5.03598
|
||||
T 0 31 hundred hundred 6.82763
|
||||
T 0 32 january january 6.82763
|
||||
T 0 33 july july 6.42214
|
||||
T 0 34 june june 6.82763
|
||||
T 0 35 march march 6.42214
|
||||
T 0 36 may may 6.42214
|
||||
T 0 37 nine nine 3.28671
|
||||
T 0 38 nineteen nineteen 4.11955
|
||||
T 0 39 ninety ninety 6.13455
|
||||
T 0 40 ninth ninth 6.82763
|
||||
T 0 41 no no 4.74816
|
||||
T 0 42 october october 6.42214
|
||||
T 0 43 of of 6.82763
|
||||
T 0 44 oh oh 3.49532
|
||||
T 0 45 one one 2.03595
|
||||
T 0 46 repeat repeat 4.6876
|
||||
T 0 47 second second 6.82763
|
||||
T 0 48 september september 5.91143
|
||||
T 0 49 seven seven 2.90563
|
||||
T 0 50 seventeen seventeen 6.42214
|
||||
T 0 51 seventh seventh 7.6386
|
||||
T 0 52 seventy seventy 5.03598
|
||||
T 0 53 six six 2.66087
|
||||
T 0 54 sixteen sixteen 6.42214
|
||||
T 0 55 sixteenth sixteenth 7.6386
|
||||
T 0 56 sixth sixth 7.6386
|
||||
T 0 57 sixty sixty 3.44329
|
||||
T 0 58 start start 5.12279
|
||||
T 0 59 stop stop 4.74816
|
||||
T 0 60 ten ten 5.12279
|
||||
T 0 61 third third 6.42214
|
||||
T 0 62 thirtieth thirtieth 6.42214
|
||||
T 0 63 thirty thirty 4.6305
|
||||
T 0 64 thousand thousand 6.42214
|
||||
T 0 65 three three 2.84784
|
||||
T 0 66 twelfth twelfth 6.82763
|
||||
T 0 67 twelve twelve 5.44124
|
||||
T 0 68 twentieth twentieth 7.6386
|
||||
T 0 69 twenty twenty 4.11955
|
||||
T 0 70 two two 2.11815
|
||||
T 0 71 yes yes 4.47623
|
||||
T 0 72 zero zero 4.26278
|
||||
F 1 7.77215
|
||||
T 1 0
|
||||
F 2 7.77215
|
||||
T 2 0
|
||||
F 3 7.77215
|
||||
T 3 0
|
||||
F 4 7.77215
|
||||
T 4 0
|
||||
F 5 7.77215
|
||||
T 5 0
|
||||
F 6 7.77215
|
||||
T 6 0
|
||||
F 7 7.77215
|
||||
T 7 0
|
||||
F 8 7.77215
|
||||
T 8 0
|
||||
F 9 7.77215
|
||||
T 9 0
|
||||
F 10 7.77215
|
||||
T 10 0
|
||||
F 11 7.77215
|
||||
T 11 0
|
||||
F 12 7.77215
|
||||
T 12 0
|
||||
F 13 7.77215
|
||||
T 13 0
|
||||
F 14 7.77215
|
||||
T 14 0
|
||||
F 15 7.77215
|
||||
T 15 0
|
||||
F 16 7.77215
|
||||
T 16 0
|
||||
F 17 7.77215
|
||||
T 17 0
|
||||
F 18 7.77215
|
||||
T 18 0
|
||||
F 19 7.77215
|
||||
T 19 0
|
||||
F 20 7.77215
|
||||
T 20 0
|
||||
F 21 7.77215
|
||||
T 21 0
|
||||
F 22 7.77215
|
||||
T 22 0
|
||||
F 23 7.77215
|
||||
T 23 0
|
||||
F 24 7.77215
|
||||
T 24 0
|
||||
F 25 7.77215
|
||||
T 25 0
|
||||
F 26 7.77215
|
||||
T 26 0
|
||||
F 27 7.77215
|
||||
T 27 0
|
||||
F 28 7.77215
|
||||
T 28 0
|
||||
F 29 7.77215
|
||||
T 29 0
|
||||
F 30 7.77215
|
||||
T 30 0
|
||||
F 31 7.77215
|
||||
T 31 0
|
||||
F 32 7.77215
|
||||
T 32 0
|
||||
F 33 7.77215
|
||||
T 33 0
|
||||
F 34 7.77215
|
||||
T 34 0
|
||||
F 35 7.77215
|
||||
T 35 0
|
||||
F 36 7.77215
|
||||
T 36 0
|
||||
F 37 7.77215
|
||||
T 37 0
|
||||
F 38 7.77215
|
||||
T 38 0
|
||||
F 39 7.77215
|
||||
T 39 0
|
||||
F 40 7.77215
|
||||
T 40 0
|
||||
F 41 7.77215
|
||||
T 41 0
|
||||
F 42 7.77215
|
||||
T 42 0
|
||||
F 43 7.77215
|
||||
T 43 0
|
||||
F 44 7.77215
|
||||
T 44 0
|
||||
F 45 7.77215
|
||||
T 45 0
|
||||
F 46 7.77215
|
||||
T 46 0
|
||||
F 47 7.77215
|
||||
T 47 0
|
||||
F 48 7.77215
|
||||
T 48 0
|
||||
F 49 7.77215
|
||||
T 49 0
|
||||
F 50 7.77215
|
||||
T 50 0
|
||||
F 51 7.77215
|
||||
T 51 0
|
||||
F 52 7.77215
|
||||
T 52 0
|
||||
F 53 7.77215
|
||||
T 53 0
|
||||
F 54 7.77215
|
||||
T 54 0
|
||||
F 55 7.77215
|
||||
T 55 0
|
||||
F 56 7.77215
|
||||
T 56 0
|
||||
F 57 7.77215
|
||||
T 57 0
|
||||
F 58 7.77215
|
||||
T 58 0
|
||||
F 59 7.77215
|
||||
T 59 0
|
||||
F 60 7.77215
|
||||
T 60 0
|
||||
F 61 7.77215
|
||||
T 61 0
|
||||
F 62 7.77215
|
||||
T 62 0
|
||||
F 63 7.77215
|
||||
T 63 0
|
||||
F 64 7.77215
|
||||
T 64 0
|
||||
F 65 7.77215
|
||||
T 65 0
|
||||
F 66 7.77215
|
||||
T 66 0
|
||||
F 67 7.77215
|
||||
T 67 0
|
||||
F 68 7.77215
|
||||
T 68 0
|
||||
F 69 7.77215
|
||||
T 69 0
|
||||
F 70 7.77215
|
||||
T 70 0
|
||||
F 71 7.77215
|
||||
T 71 0
|
||||
F 72 7.77215
|
||||
T 72 0
|
||||
|
|
@ -0,0 +1,114 @@
|
|||
#############################################################################
|
||||
## Copyright (c) 1996, Carnegie Mellon University, Cambridge University,
|
||||
## Ronald Rosenfeld and Philip Clarkson
|
||||
#############################################################################
|
||||
=============================================================================
|
||||
=============== This file was produced by the CMU-Cambridge ===============
|
||||
=============== Statistical Language Modeling Toolkit ===============
|
||||
=============================================================================
|
||||
This is a 1-gram language model, based on a vocabulary of 71 words,
|
||||
which begins "<s>", "</s>", "a"...
|
||||
This is an OPEN-vocabulary model (type 1)
|
||||
(OOVs were mapped to UNK, which is treated as any other vocabulary word)
|
||||
Good-Turing discounting was applied.
|
||||
1-gram frequency of frequency : 16
|
||||
1-gram discounting ratios : 0.89
|
||||
This file is in the ARPA-standard format introduced by Doug Paul.
|
||||
|
||||
p(wd3|wd1,wd2)= if(trigram exists) p_3(wd1,wd2,wd3)
|
||||
else if(bigram w1,w2 exists) bo_wt_2(w1,w2)*p(wd3|wd2)
|
||||
else p(wd3|w2)
|
||||
|
||||
p(wd2|wd1)= if(bigram exists) p_2(wd1,wd2)
|
||||
else bo_wt_1(wd1)*p_1(wd2)
|
||||
|
||||
All probs and back-off weights (bo_wt) are given in log10 form.
|
||||
|
||||
Data formats:
|
||||
|
||||
Beginning of data mark: \data\
|
||||
ngram 1=nr # number of 1-grams
|
||||
|
||||
\1-grams:
|
||||
p_1 wd_1
|
||||
|
||||
end of data mark: \end\
|
||||
|
||||
\data\
|
||||
ngram 1=72
|
||||
|
||||
\1-grams:
|
||||
-3.3174 <UNK> 0.0000
|
||||
-99.0000 <s> 0.0000
|
||||
-3.3754 </s> 0.0000
|
||||
-3.3174 a 0.0000
|
||||
-3.3174 april 0.0000
|
||||
-3.3174 area 0.0000
|
||||
-2.6642 august 0.0000
|
||||
-3.3174 code 0.0000
|
||||
-3.3174 december 0.0000
|
||||
-1.1980 eight 0.0000
|
||||
-3.3174 eighteen 0.0000
|
||||
-3.3174 eighteenth 0.0000
|
||||
-3.3174 eighth 0.0000
|
||||
-2.6642 eighty 0.0000
|
||||
-2.6642 eleven 0.0000
|
||||
-3.3174 eleventh 0.0000
|
||||
-1.3420 enter 0.0000
|
||||
-2.9652 february 0.0000
|
||||
-2.6642 fifteen 0.0000
|
||||
-2.9652 fifteenth 0.0000
|
||||
-3.3174 fifth 0.0000
|
||||
-1.8513 fifty 0.0000
|
||||
-2.7891 first 0.0000
|
||||
-1.0621 five 0.0000
|
||||
-2.0621 forty 0.0000
|
||||
-1.1659 four 0.0000
|
||||
-2.4211 fourteen 0.0000
|
||||
-3.3174 fourth 0.0000
|
||||
-2.2662 go 0.0000
|
||||
-2.1871 help 0.0000
|
||||
-2.9652 hundred 0.0000
|
||||
-2.9652 january 0.0000
|
||||
-2.7891 july 0.0000
|
||||
-2.9652 june 0.0000
|
||||
-2.7891 march 0.0000
|
||||
-2.7891 may 0.0000
|
||||
-1.4274 nine 0.0000
|
||||
-1.7891 nineteen 0.0000
|
||||
-2.6642 ninety 0.0000
|
||||
-2.9652 ninth 0.0000
|
||||
-2.0621 no 0.0000
|
||||
-2.7891 october 0.0000
|
||||
-2.9652 of 0.0000
|
||||
-1.5180 oh 0.0000
|
||||
-0.8842 one 0.0000
|
||||
-2.0358 repeat 0.0000
|
||||
-2.9652 second 0.0000
|
||||
-2.5673 september 0.0000
|
||||
-1.2619 seven 0.0000
|
||||
-2.7891 seventeen 0.0000
|
||||
-3.3174 seventh 0.0000
|
||||
-2.1871 seventy 0.0000
|
||||
-1.1556 six 0.0000
|
||||
-2.7891 sixteen 0.0000
|
||||
-3.3174 sixteenth 0.0000
|
||||
-3.3174 sixth 0.0000
|
||||
-1.4954 sixty 0.0000
|
||||
-2.2248 start 0.0000
|
||||
-2.0621 stop 0.0000
|
||||
-2.2248 ten 0.0000
|
||||
-2.7891 third 0.0000
|
||||
-2.7891 thirtieth 0.0000
|
||||
-2.0110 thirty 0.0000
|
||||
-2.7891 thousand 0.0000
|
||||
-1.2368 three 0.0000
|
||||
-2.9652 twelfth 0.0000
|
||||
-2.3631 twelve 0.0000
|
||||
-3.3174 twentieth 0.0000
|
||||
-1.7891 twenty 0.0000
|
||||
-0.9199 two 0.0000
|
||||
-1.9440 yes 0.0000
|
||||
-1.8513 zero 0.0000
|
||||
|
||||
\end\
|
||||
|
|
@ -0,0 +1,79 @@
|
|||
AND
|
||||
APOSTROPHE
|
||||
APRIL
|
||||
AREA
|
||||
AUGUST
|
||||
CODE
|
||||
DECEMBER
|
||||
EIGHT
|
||||
EIGHTEEN
|
||||
EIGHTEENTH
|
||||
EIGHTH
|
||||
EIGHTY
|
||||
ELEVEN
|
||||
ELEVENTH
|
||||
ENTER
|
||||
ERASE
|
||||
FEBRUARY
|
||||
FIFTEEN
|
||||
FIFTEENTH
|
||||
FIFTH
|
||||
FIFTY
|
||||
FIRST
|
||||
FIVE
|
||||
FORTY
|
||||
FOUR
|
||||
FOURTEEN
|
||||
FOURTH
|
||||
GO
|
||||
HALF
|
||||
HALL
|
||||
HELP
|
||||
HUNDRED
|
||||
JANUARY
|
||||
JULY
|
||||
JUNE
|
||||
LANE
|
||||
MARCH
|
||||
MAY
|
||||
MEMORY
|
||||
NINE
|
||||
NINETEEN
|
||||
NINETY
|
||||
NINTH
|
||||
NO
|
||||
NOVEMBER
|
||||
OCTOBER
|
||||
OF
|
||||
OH
|
||||
ONE
|
||||
REPEAT
|
||||
RUBOUT
|
||||
SECOND
|
||||
SEPTEMBER
|
||||
SEVEN
|
||||
SEVENTEEN
|
||||
SEVENTH
|
||||
SEVENTY
|
||||
SIX
|
||||
SIXTEEN
|
||||
SIXTEENTH
|
||||
SIXTH
|
||||
SIXTY
|
||||
START
|
||||
STOP
|
||||
TEN
|
||||
THIRD
|
||||
THIRTEEN
|
||||
THIRTIETH
|
||||
THIRTY
|
||||
THOUSAND
|
||||
THREE
|
||||
TWELFTH
|
||||
TWELVE
|
||||
TWENTIETH
|
||||
TWENTY
|
||||
TWO
|
||||
WEAN
|
||||
YES
|
||||
ZERO
|
||||
|
|
@ -0,0 +1,467 @@
|
|||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/an251-fash-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/an253-fash-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/an254-fash-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fash/cen7-fash-b.raw two six eight four four one eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/an87-fbbh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/an90-fbbh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen3-fbbh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen6-fbbh-b.raw one five oh four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen7-fbbh-b.raw four four three six three one two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fbbh/cen8-fbbh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/an149-fclc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen3-fclc-b.raw five five three five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen6-fclc-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen7-fclc-b.raw six eight seven five eight oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fclc/cen8-fclc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/an38-fejs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen3-fejs-b.raw one zero six five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen6-fejs-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen7-fejs-b.raw two six eight three eight zero two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fejs/cen8-fejs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/an291-ffmm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/an292-ffmm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen3-ffmm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen6-ffmm-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen7-ffmm-b.raw four one two four two one eight eight nine six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ffmm/cen8-ffmm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/an76-fjam-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/an80-fjam-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen3-fjam-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen6-fjam-b.raw one five one three three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen7-fjam-b.raw six six four seven two nine three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjam/cen8-fjam-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an121-fjdn-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an122-fjdn-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an123-fjdn-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/an125-fjdn-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen3-fjdn-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen6-fjdn-b.raw oh seven nine two two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen7-fjdn-b.raw two oh one four six four six oh eight three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjdn/cen8-fjdn-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/an6-fjmd-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen3-fjmd-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen6-fjmd-b.raw one seven three six eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen7-fjmd-b.raw two five two two oh two nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fjmd/cen8-fjmd-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/an315-fkai-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen3-fkai-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen6-fkai-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen7-fkai-b.raw four four four seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkai/cen8-fkai-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/an132-fkdo-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/an133-fkdo-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/an134-fkdo-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen3-fkdo-b.raw two two nine three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen6-fkdo-b.raw one five two one oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen7-fkdo-b.raw eight eight two eight one oh two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fkdo/cen8-fkdo-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an61-flmm2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an62-flmm2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an63-flmm2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/an64-flmm2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen3-flmm2-b.raw three four eight zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen6-flmm2-b.raw one five six six eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flmm2/cen7-flmm2-b.raw three two seven one six nine five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/an22-flrp-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/an24-flrp-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen3-flrp-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen6-flrp-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen7-flrp-b.raw two six eight five nine five two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/flrp/cen8-flrp-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/an119-fmjc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen3-fmjc-b.raw five six one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen6-fmjc-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen7-fmjc-b.raw four two one oh four five one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjc/cen8-fmjc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/an191-fmjd-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen3-fmjd-b.raw six five three four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen6-fmjd-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen7-fmjd-b.raw four two one oh one nine six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fmjd/cen8-fmjd-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/an182-fnsv-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/an184-fnsv-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/an185-fnsv-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen3-fnsv-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen6-fnsv-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen7-fnsv-b.raw six six one five zero six four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fnsv/cen8-fnsv-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/an93-fplp-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen3-fplp-b.raw one two four one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen6-fplp-b.raw one five two two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen7-fplp-b.raw eight eight four one zero five seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fplp/cen8-fplp-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/an298-fsaf2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen3-fsaf2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen6-fsaf2-b.raw one oh seven oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen7-fsaf2-b.raw nine one four three three seven one eight six nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsaf2/cen8-fsaf2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/an167-fsrb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/an169-fsrb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/an170-fsrb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen3-fsrb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen6-fsrb-b.raw one five two four one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen7-fsrb-b.raw four one two eight three one nine five one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fsrb/cen8-fsrb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/an326-ftal-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/an327-ftal-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/an330-ftal-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen3-ftal-b.raw four oh three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen6-ftal-b.raw one five two three nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen7-ftal-b.raw two six eight three zero two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftal/cen8-ftal-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/an211-ftmj-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/an214-ftmj-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/an215-ftmj-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen3-ftmj-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen6-ftmj-b.raw one five two one eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen7-ftmj-b.raw two seven one zero eight two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/ftmj/cen8-ftmj-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/an222-fwxs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/an223-fwxs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/an225-fwxs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen3-fwxs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen6-fwxs-b.raw one five one four three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/fwxs/cen7-fwxs-b.raw seven four one oh five nine two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/an374-mblb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/an375-mblb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen3-mblb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen6-mblb-b.raw oh six seven oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen7-mblb-b.raw two oh three seven five seven eight eight nine nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblb/cen8-mblb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/an3-mblw-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/an4-mblw-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/an5-mblw-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen3-mblw-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen6-mblw-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen7-mblw-b.raw four two two oh eight one six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mblw/cen8-mblw-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/an266-mbmg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/an270-mbmg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen3-mbmg-b.raw three oh one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen6-mbmg-b.raw one nine three three five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen7-mbmg-b.raw two one five four five eight five four six nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mbmg/cen8-mbmg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an201-mcel-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an202-mcel-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an203-mcel-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/an204-mcel-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen3-mcel-b.raw six three eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen6-mcel-b.raw nine four oh eight six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcel/cen8-mcel-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an126-mcen-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an127-mcen-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an129-mcen-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/an130-mcen-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen6-mcen-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen7-mcen-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcen/cen8-mcen-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/an261-mcfl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/an264-mcfl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/an265-mcfl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen3-mcfl-b.raw one four eight two three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen6-mcfl-b.raw four four oh six five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen7-mcfl-b.raw six four five three three six four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcfl/cen8-mcfl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an141-mcrt-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an142-mcrt-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an143-mcrt-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/an145-mcrt-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen3-mcrt-b.raw three oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen6-mcrt-b.raw one five two oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen7-mcrt-b.raw three six three oh nine six two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcrt/cen8-mcrt-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an231-mcsc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an232-mcsc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an233-mcsc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an234-mcsc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/an235-mcsc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen3-mcsc-b.raw one zero zero six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen6-mcsc-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen7-mcsc-b.raw seven three one one three three eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mcsc/cen8-mcsc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/an241-mdcs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/an243-mdcs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen6-mdcs-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen7-mdcs-b.raw four one two four two two three five seven eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs/cen8-mdcs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen3-mdcs2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen6-mdcs2-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen7-mdcs2-b.raw four two one six two eight three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdcs2/cen8-mdcs2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen3-mdmc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen6-mdmc-b.raw one five two oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen7-mdmc-b.raw three six one zero one five five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdmc/cen8-mdmc-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/an106-mdxn-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/an108-mdxn-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/an110-mdxn-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen3-mdxn-b.raw one oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen6-mdxn-b.raw one four eight five oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen7-mdxn-b.raw two six eight four one six one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxn/cen8-mdxn-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an26-mdxs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an28-mdxs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an29-mdxs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/an30-mdxs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen3-mdxs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen6-mdxs-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen7-mdxs-b.raw four one two six eight seven eight eight seven one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mdxs/cen8-mdxs-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/an139-meab-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen3-meab-b.raw three one two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen6-meab-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen7-meab-b.raw four one two two four two six six two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meab/cen8-meab-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an66-meht-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an67-meht-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an69-meht-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/an70-meht-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen3-meht-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen6-meht-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen7-meht-b.raw four one two five two one two eight two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/meht/cen8-meht-b.raw four seven sixty four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/an286-mema-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/an288-mema-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/an289-mema-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen3-mema-b.raw seven three zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen6-mema-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mema/cen7-mema-b.raw two four three eight three two eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/an256-mewl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/an258-mewl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/an259-mewl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen6-mewl-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen7-mewl-b.raw two six eight four six five eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mewl/cen8-mewl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/an163-mfaa-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen3-mfaa-b.raw five six three one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen6-mfaa-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen7-mfaa-b.raw five two one oh two six eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mfaa/cen8-mfaa-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an196-mgah-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an197-mgah-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an198-mgah-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an199-mgah-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/an200-mgah-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen3-mgah-b.raw one two zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen6-mgah-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen7-mgah-b.raw six eight three five zero four one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mgah/cen8-mgah-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an246-mjbh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an247-mjbh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an249-mjbh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/an250-mjbh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen3-mjbh-b.raw five six four zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen6-mjbh-b.raw one five two zero six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen7-mjbh-b.raw two six eight three zero six six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjbh/cen8-mjbh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/an172-mjda-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/an174-mjda-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/an175-mjda-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen3-mjda-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen6-mjda-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen7-mjda-b.raw two six eight three oh five four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjda/cen8-mjda-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/an18-mjdr-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen3-mjdr-b.raw four seven two zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen6-mjdr-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen7-mjdr-b.raw four one two six eight one one eight four two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjdr/cen8-mjdr-b.raw oh six oh seven six six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/an157-mjes-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/an159-mjes-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen3-mjes-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen6-mjes-b.raw one oh oh two eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen7-mjes-b.raw two one two five seven oh two seven eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjes/cen8-mjes-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an217-mjgk-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an218-mjgk-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an219-mjgk-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/an220-mjgk-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen6-mjgk-b.raw one five two three eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen7-mjgk-b.raw four two two two oh eight nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjgk/cen8-mjgk-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/an60-mjhp-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen3-mjhp-b.raw one five three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen6-mjhp-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen7-mjhp-b.raw four one two five two one eight two six oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjhp/cen8-mjhp-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/an177-mjjs2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/an178-mjjs2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/an180-mjjs2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen6-mjjs2-b.raw one five two zero seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen7-mjjs2-b.raw four two two zero seven nine one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mjjs2/cen8-mjjs2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/an317-mkdb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/an318-mkdb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen3-mkdb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen6-mkdb-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen7-mkdb-b.raw five two one four nine five four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkdb/cen8-mkdb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/an187-mkem-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/an189-mkem-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen6-mkem-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen7-mkem-b.raw three oh eight five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mkem/cen8-mkem-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/an52-mmaf-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/an54-mmaf-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/an55-mmaf-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen3-mmaf-b.raw five two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen6-mmaf-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen7-mmaf-b.raw four four one one seven two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmaf/cen8-mmaf-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/an323-mmal-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/an324-mmal-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/an325-mmal-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen3-mmal-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen6-mmal-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen7-mmal-b.raw six eight one seven seven five two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmal/cen8-mmal-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/an46-mmap-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/an47-mmap-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/an48-mmap-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen3-mmap-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen6-mmap-b.raw one five two oh five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen7-mmap-b.raw nine two two seven two two zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmap/cen8-mmap-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an337-mmdg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an338-mmdg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an339-mmdg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/an340-mmdg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen3-mmdg-b.raw six three two three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen6-mmdg-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen7-mmdg-b.raw four one two five two one five three three nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmdg/cen8-mmdg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/an364-mmkw-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen3-mmkw-b.raw three two seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen6-mmkw-b.raw two nine six six two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen7-mmkw-b.raw eight oh three two three four five nine seven two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmkw/cen8-mmkw-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/an383-mmsh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/an385-mmsh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen3-mmsh-b.raw three four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen6-mmsh-b.raw one nine oh oh eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen7-mmsh-b.raw six eight three one five five eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmsh/cen8-mmsh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/an386-mmtm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/an388-mmtm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/an390-mmtm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen3-mmtm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen6-mmtm-b.raw one five one four seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen7-mmtm-b.raw seven nine three five four two nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mmtm/cen8-mmtm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/an347-mnfe-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/an348-mnfe-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/an350-mnfe-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen3-mnfe-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen6-mnfe-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen7-mnfe-b.raw two six eight five five two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnfe/cen8-mnfe-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/an81-mnjl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/an83-mnjl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/an84-mnjl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen3-mnjl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen6-mnjl-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen7-mnjl-b.raw four one two two six eight four four seven four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mnjl/cen8-mnjl-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/an72-mrab-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/an73-mrab-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen3-mrab-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen6-mrab-b.raw one six oh six three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen7-mrab-b.raw four five two eight five one eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrab/cen8-mrab-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/an102-mrcb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/an104-mrcb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/an105-mrcb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen3-mrcb-b.raw one two five two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen6-mrcb-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen7-mrcb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrcb/cen8-mrcb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an236-mrjc2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an237-mrjc2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an238-mrjc2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/an240-mrjc2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen3-mrjc2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen6-mrjc2-b.raw one five two oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen7-mrjc2-b.raw six six five nine six six five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrjc2/cen8-mrjc2-b.raw five two five five five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/an281-mrmg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/an282-mrmg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/an284-mrmg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen3-mrmg-b.raw one oh two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen6-mrmg-b.raw one five two two one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen7-mrmg-b.raw two four two two nine one two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mrmg/cen8-mrmg-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/an356-mscg2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/an357-mscg2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/an360-mscg2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen3-mscg2-b.raw five one one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen6-mscg2-b.raw one five two two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen7-mscg2-b.raw two six eight four six seven eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mscg2/cen8-mscg2-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/an341-msct-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/an343-msct-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen3-msct-b.raw five one nine
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen6-msct-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen7-msct-b.raw six eight three three seven eight zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msct/cen8-msct-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/an226-msjm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/an229-msjm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/an230-msjm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen3-msjm-b.raw one two two two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen6-msjm-b.raw one five one one six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen7-msjm-b.raw four eight six three nine five oh
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjm/cen8-msjm-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/an352-msjr-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/an353-msjr-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/an355-msjr-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen3-msjr-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen6-msjr-b.raw one five one four seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen7-msjr-b.raw eight two six eight six eight seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msjr/cen8-msjr-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an100-mskh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an96-mskh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an97-mskh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/an98-mskh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen3-mskh-b.raw six zero one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen6-mskh-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen7-mskh-b.raw six six one nine eight eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mskh/cen8-mskh-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/an277-msmn-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/cen6-msmn-b.raw one five two one seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msmn/cen7-msmn-b.raw four one two four two two nine eight two eight
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/an331-msrb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/an333-msrb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/an335-msrb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen3-msrb-b.raw one three six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen6-msrb-b.raw one five one oh six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen7-msrb-b.raw two seven nine two three two four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/msrb/cen8-msrb-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/an304-mtcv-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/an305-mtcv-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen3-mtcv-b.raw eight four six seven
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen6-mtcv-b.raw four four four eight four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen7-mtcv-b.raw eight five six one four nine zero
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtcv/cen8-mtcv-b.raw one two seven six three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/an32-mtje-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/an34-mtje-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen3-mtje-b.raw four oh one
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen6-mtje-b.raw one five two three two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen7-mtje-b.raw four one two six eight seven nine five two six
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtje/cen8-mtje-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/an369-mtos-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen6-mtos-b.raw one five two one three
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen7-mtos-b.raw four eight four two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtos/cen8-mtos-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an376-mtxj-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an378-mtxj-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an379-mtxj-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/an380-mtxj-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen3-mtxj-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen6-mtxj-b.raw one five oh one five
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen7-mtxj-b.raw nine three five oh six nine two
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mtxj/cen8-mtxj-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/an152-mwhw-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/an155-mwhw-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen3-mwhw-b.raw <unk>
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen6-mwhw-b.raw one five oh four four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen7-mwhw-b.raw six two five one five six four
|
||||
/lab/speech/sphinx4/data/an4/an4_clstk/mwhw/cen8-mwhw-b.raw <unk>
|
||||
|
|
@ -0,0 +1,380 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- Sphinx-4 Configuration File -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
|
||||
<config>
|
||||
<!-- ************************************************** -->
|
||||
<!-- Global Properties -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<property name="recognizer" value="wordRecognizer"/>
|
||||
<property name="modelPackage" value="edu.cmu.sphinx.model.acoustic.WSJ_8gau_13dCep_16k_40mel_130Hz_6800Hz"/>
|
||||
<property name="modelPath" value="/edu/cmu/sphinx/model/acoustic/WSJ_8gau_13dCep_16k_40mel_130Hz_6800Hz"/>
|
||||
|
||||
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- Components -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- batch -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="batch"
|
||||
type="edu.cmu.sphinx.tools.batch.BatchModeRecognizer">
|
||||
<propertylist name="inputDataProcessors">
|
||||
<item>streamDataSource</item>
|
||||
</propertylist>
|
||||
<property name="skip" value="0"/>
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- wordRecognizer -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="wordRecognizer"
|
||||
type="edu.cmu.sphinx.recognizer.Recognizer">
|
||||
<propertylist name="monitors">
|
||||
<item>accuracyTracker</item>
|
||||
<item>speedTracker</item>
|
||||
<item>memoryTracker</item>
|
||||
<item>recognizerMonitor</item>
|
||||
<item>beamFinder</item>
|
||||
</propertylist>
|
||||
<property name="decoder" value="decoder"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- decoder -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="decoder"
|
||||
type="edu.cmu.sphinx.decoder.Decoder">
|
||||
<property name="searchManager" value="wordPruningSearchManager"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- wordPruningSearchManager -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="wordPruningSearchManager"
|
||||
type="edu.cmu.sphinx.decoder.search.WordPruningBreadthFirstSearchManager">
|
||||
<property name="scorer" value="threadedScorer"/>
|
||||
<property name="pruner" value="trivialPruner"/>
|
||||
<property name="acousticLookaheadFrames" value="1.8"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="activeListManager" value="activeListManager"/>
|
||||
<property name="buildWordLattice" value="false"/>
|
||||
<property name="relativeBeamWidth" value="1E-80"/>
|
||||
<property name="growSkipInterval" value="7"/>
|
||||
<property name="linguist" value="lexTreeLinguist"/>
|
||||
<property name="checkStateOrder" value="false"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- logMath -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="logMath"
|
||||
type="edu.cmu.sphinx.util.LogMath">
|
||||
<property name="logBase" value="1.0001"/>
|
||||
<property name="useAddTable" value="true"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- lexTreeLinguist -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="lexTreeLinguist"
|
||||
type="edu.cmu.sphinx.linguist.lextree.LexTreeLinguist">
|
||||
<property name="silenceInsertionProbability" value=".1"/>
|
||||
<property name="addFillerWords" value="false"/>
|
||||
<property name="acousticModel" value="wsj"/>
|
||||
<property name="languageModel" value="ngramLanguageModel"/>
|
||||
<property name="wordInsertionProbability" value=".1"/>
|
||||
<property name="languageWeight" value="19"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="dictionary" value="dictionary"/>
|
||||
<property name="unigramSmearWeight" value="1.2"/>
|
||||
<property name="cacheSize" value="0"/>
|
||||
<property name="wantUnigramSmear" value="true"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
</component>
|
||||
|
||||
<!-- ngramLanguageModel -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="ngramLanguageModel"
|
||||
type="edu.cmu.sphinx.linguist.language.ngram.SimpleNGramModel">
|
||||
<property name="unigramWeight" value=".7"/>
|
||||
<property name="maxDepth" value="3"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="dictionary" value="dictionary"/>
|
||||
<property name="location" value="an4_words.trigram.lm"/>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The Dictionary configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="dictionary"
|
||||
type="edu.cmu.sphinx.linguist.dictionary.FullDictionary">
|
||||
<property name="dictionaryPath"
|
||||
value="resource:/WSJ_8gau_13dCep_16k_40mel_130Hz_6800Hz/dict/cmudict.0.6d"/>
|
||||
<property name="fillerPath"
|
||||
value="resource:/WSJ_8gau_13dCep_16k_40mel_130Hz_6800Hz/noisedict"/>
|
||||
<property name="addSilEndingPronunciation" value="true"/>
|
||||
<property name="wordReplacement" value="<sil>"/>
|
||||
<property name="allowMissingWords" value="true"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The acoustic model configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="wsj"
|
||||
type="edu.cmu.sphinx.linguist.acoustic.tiedstate.TiedStateAcousticModel">
|
||||
<property name="loader" value="wsjLoader"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
</component>
|
||||
|
||||
<component name="wsjLoader" type="edu.cmu.sphinx.linguist.acoustic.tiedstate.Sphinx3Loader">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
<property name="location" value="resource:/WSJ_8gau_13dCep_16k_40mel_130Hz_6800Hz"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- trivialPruner -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="trivialPruner"
|
||||
type="edu.cmu.sphinx.decoder.pruner.SimplePruner">
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- simpleScorer -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="simpleScorer"
|
||||
type="edu.cmu.sphinx.decoder.scorer.SimpleAcousticScorer">
|
||||
<property name="frontend" value="mfcFrontEnd"/>
|
||||
</component>
|
||||
|
||||
<component name="threadedScorer"
|
||||
type="edu.cmu.sphinx.decoder.scorer.ThreadedAcousticScorer">
|
||||
<property name="frontend" value="mfcFrontEnd"/>
|
||||
</component>
|
||||
|
||||
<!-- ******************************************************** -->
|
||||
<!-- The unit manager configuration -->
|
||||
<!-- ******************************************************** -->
|
||||
|
||||
<component name="unitManager"
|
||||
type="edu.cmu.sphinx.linguist.acoustic.UnitManager"/>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- mfcFrontEnd -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="mfcFrontEnd"
|
||||
type="edu.cmu.sphinx.frontend.FrontEnd">
|
||||
<propertylist name="pipeline">
|
||||
<item>streamDataSource</item>
|
||||
<item>preemphasizer</item>
|
||||
<item>windower</item>
|
||||
<item>fft</item>
|
||||
<item>melFilterBank</item>
|
||||
<item>dct</item>
|
||||
<item>cmn</item>
|
||||
<item>featureExtraction</item>
|
||||
</propertylist>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- streamDataSource -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="streamDataSource"
|
||||
type="edu.cmu.sphinx.frontend.util.StreamDataSource">
|
||||
<property name="sampleRate" value="16000"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- preemphasizer -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="preemphasizer"
|
||||
type="edu.cmu.sphinx.frontend.filter.Preemphasizer">
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- windower -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="windower"
|
||||
type="edu.cmu.sphinx.frontend.window.RaisedCosineWindower">
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- fft -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="fft"
|
||||
type="edu.cmu.sphinx.frontend.transform.DiscreteFourierTransform">
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- melFilterBank -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="melFilterBank"
|
||||
type="edu.cmu.sphinx.frontend.frequencywarp.MelFrequencyFilterBank">
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- dct -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="dct"
|
||||
type="edu.cmu.sphinx.frontend.transform.DiscreteCosineTransform">
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- cmn -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="cmn"
|
||||
type="edu.cmu.sphinx.frontend.feature.BatchCMN">
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- featureExtraction -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="featureExtraction"
|
||||
type="edu.cmu.sphinx.frontend.feature.DeltasFeatureExtractor">
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- activeListManager -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="activeListManager"
|
||||
type="edu.cmu.sphinx.decoder.search.SimpleActiveListManager">
|
||||
<propertylist name="activeListFactories">
|
||||
<item>unitExitActiveList</item>
|
||||
<item>wordActiveList</item>
|
||||
<item>wordActiveList</item>
|
||||
<item>activeList</item>
|
||||
<item>activeList</item>
|
||||
<item>activeList</item>
|
||||
</propertylist>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- unitExitActiveList -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="unitExitActiveList"
|
||||
type="edu.cmu.sphinx.decoder.search.PartitionActiveListFactory">
|
||||
<property name="absoluteBeamWidth" value="-1"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="relativeBeamWidth" value="1E-80"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- wordActiveList -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="wordActiveList"
|
||||
type="edu.cmu.sphinx.decoder.search.PartitionActiveListFactory">
|
||||
<property name="absoluteBeamWidth" value="20"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="relativeBeamWidth" value="1E-37"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- activeList -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="activeList"
|
||||
type="edu.cmu.sphinx.decoder.search.PartitionActiveListFactory">
|
||||
<property name="absoluteBeamWidth" value="-1"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="relativeBeamWidth" value="1E-80"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- accuracyTracker -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="accuracyTracker"
|
||||
type="edu.cmu.sphinx.instrumentation.BestPathAccuracyTracker">
|
||||
<property name="showRawResults" value="false"/>
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
<property name="showAlignedResults" value="false"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- speedTracker -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="speedTracker"
|
||||
type="edu.cmu.sphinx.instrumentation.SpeedTracker">
|
||||
<property name="frontend" value="mfcFrontEnd"/>
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- memoryTracker -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="memoryTracker"
|
||||
type="edu.cmu.sphinx.instrumentation.MemoryTracker">
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- recognizerMonitor -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="recognizerMonitor"
|
||||
type="edu.cmu.sphinx.instrumentation.RecognizerMonitor">
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
<propertylist name="allocatedMonitors">
|
||||
<item>configMonitor</item>
|
||||
</propertylist>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- configMonitor -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="configMonitor"
|
||||
type="edu.cmu.sphinx.instrumentation.ConfigMonitor">
|
||||
<property name="saveConfigAsXML" value="true"/>
|
||||
<property name="showConfig" value="true"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- beamFinder -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="beamFinder"
|
||||
type="edu.cmu.sphinx.instrumentation.BeamFinder">
|
||||
<property name="showDetails" value="true"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="showSummary" value="true"/>
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
<property name="enable" value="false"/>
|
||||
</component>
|
||||
|
||||
</config>
|
||||
<!-- Generated on Mon Apr 19 08:48:01 EDT 2004-->
|
||||
742
lib/sphinx4-5prealpha-src/tests/performance/an4/build.xml
Normal file
742
lib/sphinx4-5prealpha-src/tests/performance/an4/build.xml
Normal file
|
|
@ -0,0 +1,742 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<project basedir="." default="none" name="AN4 Tests">
|
||||
<description>
|
||||
This file is used to run the AN4 performance tests.
|
||||
|
||||
NOTE: Before running the tests, you must have already built
|
||||
the sphinx-4 sources by typing "ant" in the top level
|
||||
sphinx4 directory.
|
||||
|
||||
Run ant with -Dskip=5 to do the standard 'quick' version of a test.
|
||||
</description>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * Properties common to all tests * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<property name="top_dir" value="../../.."/>
|
||||
<property name="build_dir" value="${top_dir}/bld"/>
|
||||
<property name="classes_dir" value="${build_dir}"/>
|
||||
<property name="lib_dir" value="${build_dir}/lib"/>
|
||||
<property name="classpath" value="${classes_dir}:${top_dir}/lib/WSJ_8gau_13dCep_16k_40mel_130Hz_6800Hz.jar:${top_dir}/lib/batch.jar"/>
|
||||
|
||||
<property name="skip" value="0"/>
|
||||
<property name="logger_props" value=""/>
|
||||
|
||||
<property name="initial_heap_size" value="128m"/>
|
||||
<property name="maximum_heap_size" value="1024m"/>
|
||||
<property name="jit" value="server"/>
|
||||
<property name="gc_log_file" value="gc.txt"/>
|
||||
<property name="batch_main"
|
||||
value="edu.cmu.sphinx.tools.batch.BatchModeRecognizer"/>
|
||||
<property name="live_main"
|
||||
value="edu.cmu.sphinx.tools.live.LiveModeRecognizer"/>
|
||||
<property name="config" value="an4.config.xml"/>
|
||||
<property name="batch" value="an4.batch"/>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * Displays minimal help. * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="none">
|
||||
<echo>Type 'ant -p' for possible targets.</echo>
|
||||
</target>
|
||||
|
||||
<!-- dummy target for automated test compilation -->
|
||||
<target name="compile" />
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_words_wordlist * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_words_wordlist"
|
||||
description="AN4 words test set with a word list language model">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammarPath" value="an4_words.wordlist"/>
|
||||
<sysproperty key="wordInsertionProbability" value="1.0E-25"/>
|
||||
<sysproperty key="relativeBeamWidth" value="1.0E-250"/>
|
||||
<sysproperty key="languageWeight" value="10"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_words.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_words_flat_unigram * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_words_flat_unigram"
|
||||
description="AN4 words test set with a flat unigram language model">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammar" value="lmGrammar"/>
|
||||
<sysproperty key="ngramLanguageModel[location]"
|
||||
value="an4_words.flat_unigram.lm"/>
|
||||
<sysproperty key="ngramLanguageModel[maxDepth]" value="1"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_words.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_words_unigram * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_words_unigram"
|
||||
description="AN4 words test set with a unigram language model">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammar" value="lmGrammar"/>
|
||||
<sysproperty key="ngramLanguageModel[location]"
|
||||
value="an4_words.unigram.lm"/>
|
||||
<sysproperty key="ngramLanguageModel[maxDepth]" value="1"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_words.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_words_bigram * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_words_bigram"
|
||||
description="AN4 words test set with a bigram language model">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammar" value="lmGrammar"/>
|
||||
<sysproperty key="ngramLanguageModel[location]"
|
||||
value="an4_words.bigram.lm"/>
|
||||
<sysproperty key="ngramLanguageModel[maxDepth]" value="1"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_words.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_words_flat_unigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_words_flat_unigram_fst"
|
||||
description="AN4 words test set with a flat unigram FST language model">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_words.flat_unigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_words.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_words_unigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_words_unigram_fst"
|
||||
description="AN4 words test set with a unigram FST language model">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_words.unigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_words.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_words_bigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_words_bigram_fst"
|
||||
description="AN4 words test set with a bigram FST language model">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_words.bigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_words.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_words_trigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_words_trigram_fst"
|
||||
description="AN4 words test set with a trigram FST language model">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_words.trigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_words.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_spelling_wordlist * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_spelling_wordlist"
|
||||
description="AN4 spelling test set with a wordlist grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammarPath" value="an4_spelling.wordlist"/>
|
||||
<sysproperty key="wordInsertionProbability" value="1.0E-25"/>
|
||||
<sysproperty key="relativeBeamWidth" value="1.0E-250"/>
|
||||
<sysproperty key="languageWeight" value="10"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_spelling.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_spelling_flat_unigram * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_spelling_flat_unigram"
|
||||
description="AN4 spelling test set with a flat unigram grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammar" value="lmGrammar"/>
|
||||
<sysproperty key="ngramLanguageModel[location]"
|
||||
value="an4_spelling.flat_unigram.lm"/>
|
||||
<sysproperty key="ngramLanguageModel[maxDepth]" value="1"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_spelling.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_spelling_unigram * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_spelling_unigram"
|
||||
description="AN4 spelling test set with a unigram grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammar" value="lmGrammar"/>
|
||||
<sysproperty key="ngramLanguageModel[location]"
|
||||
value="an4_spelling.unigram.lm"/>
|
||||
<sysproperty key="ngramLanguageModel[maxDepth]" value="1"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_spelling.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_spelling_bigram * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_spelling_bigram"
|
||||
description="AN4 spelling test set with a bigram grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammar" value="lmGrammar"/>
|
||||
<sysproperty key="ngramLanguageModel[location]"
|
||||
value="an4_spelling.bigram.lm"/>
|
||||
<sysproperty key="ngramLanguageModel[maxDepth]" value="1"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_spelling.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_spelling_flat_unigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_spelling_flat_unigram_fst"
|
||||
description="AN4 spelling test set with a flat unigram fst grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_spelling.flat_unigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_spelling.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_spelling_unigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_spelling_unigram_fst"
|
||||
description="AN4 spelling test set with a unigram fst grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_spelling.unigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_spelling.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_spelling_bigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_spelling_bigram_fst"
|
||||
description="AN4 spelling test set with a bigram fst grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_spelling.bigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_spelling.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_spelling_trigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_spelling_trigram_fst"
|
||||
description="AN4 spelling test set with a trigram fst grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_spelling.trigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_spelling.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_full_wordlist * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_full_wordlist"
|
||||
description="AN4 full test set with a wordlist grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammarPath" value="an4_full.wordlist"/>
|
||||
<sysproperty key="relativeBeamWidth" value="1.0E-250"/>
|
||||
<sysproperty key="languageWeight" value="10"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_full.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_full_flat_unigram * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_full_flat_unigram"
|
||||
description="AN4 full test set with a flat unigram grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammar" value="lmGrammar"/>
|
||||
<sysproperty key="ngramLanguageModel[location]"
|
||||
value="an4_full.flat_unigram.lm"/>
|
||||
<sysproperty key="ngramLanguageModel[maxDepth]" value="1"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_full.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_full_unigram * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_full_unigram"
|
||||
description="AN4 full test set with a unigram grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammar" value="lmGrammar"/>
|
||||
<sysproperty key="ngramLanguageModel[location]"
|
||||
value="an4_full.unigram.lm"/>
|
||||
<sysproperty key="ngramLanguageModel[maxDepth]" value="1"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_full.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_full_bigram * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_full_bigram"
|
||||
description="AN4 full test set with a bigram grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammar" value="lmGrammar"/>
|
||||
<sysproperty key="ngramLanguageModel[location]"
|
||||
value="an4_full.bigram.lm"/>
|
||||
<sysproperty key="ngramLanguageModel[maxDepth]" value="1"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_full.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_full_flat_unigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_full_flat_unigram_fst"
|
||||
description="AN4 full test set with a flat unigram fst grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_full.flat_unigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_full.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_full_unigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_full_unigram_fst"
|
||||
description="AN4 full test set with a unigram fst grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_full.unigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_full.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_full_bigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_full_bigram_fst"
|
||||
description="AN4 full test set with a bigram fst grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_full.bigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_full.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_full_trigram_fst * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_full_trigram_fst"
|
||||
description="AN4 full test set with a trigram fst grammar">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xprof"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="languageWeight" value="10.0"/>
|
||||
<sysproperty key="grammar" value="fstGrammar"/>
|
||||
<sysproperty key="fstGrammar[path]" value="an4_full.trigram.fst"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_full.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_words_bigram_live * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_words_bigram_live"
|
||||
description="AN4 live words test with a bigram grammar">
|
||||
<exec executable="rm">
|
||||
<arg line="-f reference.txt hypothesis.txt transcript.txt"/>
|
||||
</exec>
|
||||
<java classpath="${classpath}"
|
||||
classname="${live_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<sysproperty key="live[skip]" value="${skip}"/>
|
||||
<sysproperty key="concatDataSource[skip]" value="${skip}"/>
|
||||
<sysproperty key="speedTracker[showResponseTime]" value="true"/>
|
||||
<sysproperty key="frontend" value="mfcLiveFrontEnd"/>
|
||||
<sysproperty key="grammar" value="lmGrammar"/>
|
||||
<sysproperty key="ngramLanguageModel[location]"
|
||||
value="an4_words.bigram.lm"/>
|
||||
<sysproperty key="ngramLanguageModel[maxDepth]" value="1"/>
|
||||
<arg value="${config}"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_words_trigram * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_words_trigram"
|
||||
description="trigram decode of an4 words using the word pruning breadth first search manager ">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<arg value="an4_words_trigram.config.xml"/>
|
||||
<arg value="an4_words.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
|
||||
<!-- ********************************************************** -->
|
||||
<!-- * * -->
|
||||
<!-- * an4_words_rejection * -->
|
||||
<!-- * * -->
|
||||
<!-- ********************************************************** -->
|
||||
<target name="an4_words_rejection"
|
||||
description="AN4 words test set with a word list language model (that is, non-digit words are out-of-grammar, and a rejection CI phone loop.">
|
||||
<java classpath="${classpath}"
|
||||
classname="${batch_main}"
|
||||
fork="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<jvmarg value="-Xloggc:${gc_log_file}"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
<sysproperty key="grammarPath"
|
||||
value="../tidigits/tidigits.wordlist"/>
|
||||
<sysproperty key="recognizer" value="rejectionRecognizer"/>
|
||||
<sysproperty key="wordInsertionProbability" value="1.0E-25"/>
|
||||
<sysproperty key="relativeBeamWidth" value="1.0E-250"/>
|
||||
<sysproperty key="languageWeight" value="10"/>
|
||||
<sysproperty key="flatLinguist[addOutOfGrammarBranch]"
|
||||
value="true"/>
|
||||
<arg value="${config}"/>
|
||||
<arg value="an4_words_rejection.batch"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
make an4_words_unigram | tee an4_words_unigram.out
|
||||
make an4_words_trigram | tee an4_words_trigram.out
|
||||
make an4_words_fst | tee an4_words_fst.out
|
||||
make an4_spelling_unigram | tee an4_spelling_unigram.out
|
||||
make an4_spelling_journey_trigram | tee an4_spelling_journey_trigram.out
|
||||
make an4_spelling_journey_fst | tee an4_spelling_journey_fst.out
|
||||
make an4_spelling_trigram | tee an4_spelling_trigram.out
|
||||
make an4_spelling_fst | tee an4_spelling_fst.out
|
||||
make an4_full_unigram | tee an4_full_unigram.out
|
||||
make an4_full_trigram | tee an4_full_trigram.out
|
||||
make an4_full_fst | tee an4_full_fst.out
|
||||
make an4_plus_unigram | tee an4_plus_unigram.out
|
||||
make an4_plus_trigram | tee an4_plus_trigram.out
|
||||
# make an4_plus_fst | tee an4_plus_fst.out
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<project basedir="." default="test" name="Voxforge Tests">
|
||||
<description>
|
||||
This file is used to run the voxforge performance tests.
|
||||
|
||||
NOTE: Before running the tests, you must have already built
|
||||
the sphinx-4 sources by typing "ant" in the top level
|
||||
sphinx4 directory.
|
||||
|
||||
Run ant with -Dskip=5 to do the standard 'quick' version of a test.
|
||||
</description>
|
||||
|
||||
<property name="classpath" value="../../../sphinx4-core/target/classes"/>
|
||||
|
||||
<property name="skip" value="40"/>
|
||||
<property name="logger_props" value=""/>
|
||||
|
||||
<property name="initial_heap_size" value="512m"/>
|
||||
<property name="maximum_heap_size" value="2048m"/>
|
||||
<property name="jit" value="server"/>
|
||||
<property name="gc_log_file" value="gc.txt"/>
|
||||
|
||||
<target name="compile" />
|
||||
|
||||
<target name="test"
|
||||
description="trigram decoding of Voxforge test data">
|
||||
<java classpath="${classpath}"
|
||||
classname="edu.cmu.sphinx.tools.batch.BatchModeRecognizer"
|
||||
fork="true">
|
||||
<jvmarg value="-${jit}"/>
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<arg value="voxforge.config.xml"/>
|
||||
<arg value="voxforge_en_test.batch"/>
|
||||
<sysproperty key="batch[skip]" value="${skip}"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
|
@ -0,0 +1,255 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- Sphinx-4 Configuration File -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
|
||||
<config>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- Global Properties -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<property name="absoluteBeamWidth" value="30000"/>
|
||||
<property name="relativeBeamWidth" value="1E-80"/>
|
||||
<property name="absoluteWordBeamWidth" value="40"/>
|
||||
<property name="relativeWordBeamWidth" value="1E-40"/>
|
||||
<property name="wordInsertionProbability" value="0.5"/>
|
||||
<property name="languageWeight" value="10.5"/>
|
||||
<property name="silenceInsertionProbability" value=".1"/>
|
||||
<property name="fillerInsertionProbability" value="1e-6"/>
|
||||
<property name="acousticLookahead" value="1.7"/>
|
||||
<property name="lookaheadBeam" value="1e-80"/>
|
||||
<property name="frontend" value="mfcFrontEnd"/>
|
||||
<property name="recognizer" value="wordRecognizer"/>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- Components -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="batch"
|
||||
type="edu.cmu.sphinx.tools.batch.BatchModeRecognizer">
|
||||
<propertylist name="inputDataProcessors">
|
||||
<item>streamDataSource</item>
|
||||
</propertylist>
|
||||
<property name="skip" value="0"/>
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
</component>
|
||||
|
||||
<component name="wordRecognizer"
|
||||
type="edu.cmu.sphinx.recognizer.Recognizer">
|
||||
<propertylist name="monitors">
|
||||
<item>accuracyTracker</item>
|
||||
<item>speedTracker</item>
|
||||
<item>memoryTracker</item>
|
||||
</propertylist>
|
||||
<property name="decoder" value="decoder"/>
|
||||
</component>
|
||||
|
||||
<component name="decoder"
|
||||
type="edu.cmu.sphinx.decoder.Decoder">
|
||||
<property name="searchManager" value="wordPruningSearchManager"/>
|
||||
</component>
|
||||
|
||||
<component name="wordPruningSearchManager"
|
||||
type="edu.cmu.sphinx.decoder.search.WordPruningBreadthFirstSearchManager">
|
||||
<property name="scorer" value="threadedScorer"/>
|
||||
<property name="pruner" value="trivialPruner"/>
|
||||
<property name="activeListManager" value="activeListManager"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
|
||||
<property name="buildWordLattice" value="false"/>
|
||||
<property name="growSkipInterval" value="0"/>
|
||||
<property name="linguist" value="lexTreeLinguist"/>
|
||||
<property name="checkStateOrder" value="false"/>
|
||||
|
||||
<property name="acousticLookaheadFrames" value="${acousticLookahead}"/>
|
||||
<property name="relativeBeamWidth" value="${lookaheadBeam}"/>
|
||||
</component>
|
||||
|
||||
<component name="activeListManager"
|
||||
type="edu.cmu.sphinx.decoder.search.SimpleActiveListManager">
|
||||
<propertylist name="activeListFactories">
|
||||
<item>unitExitActiveList</item>
|
||||
<item>wordActiveList</item>
|
||||
<item>wordActiveList</item>
|
||||
<item>activeList</item>
|
||||
<item>activeList</item>
|
||||
<item>activeList</item>
|
||||
</propertylist>
|
||||
</component>
|
||||
|
||||
<component name="unitExitActiveList"
|
||||
type="edu.cmu.sphinx.decoder.search.PartitionActiveListFactory">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="absoluteBeamWidth" value="${absoluteBeamWidth}"/>
|
||||
<property name="relativeBeamWidth" value="${relativeBeamWidth}"/>
|
||||
</component>
|
||||
|
||||
<component name="wordActiveList"
|
||||
type="edu.cmu.sphinx.decoder.search.PartitionActiveListFactory">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="absoluteBeamWidth" value="${absoluteWordBeamWidth}"/>
|
||||
<property name="relativeBeamWidth" value="${relativeWordBeamWidth}"/>
|
||||
</component>
|
||||
|
||||
<component name="activeList"
|
||||
type="edu.cmu.sphinx.decoder.search.PartitionActiveListFactory">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="absoluteBeamWidth" value="${absoluteBeamWidth}"/>
|
||||
<property name="relativeBeamWidth" value="${relativeBeamWidth}"/>
|
||||
</component>
|
||||
|
||||
<component name="lexTreeLinguist"
|
||||
type="edu.cmu.sphinx.linguist.lextree.LexTreeLinguist">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="dictionary" value="dictionary"/>
|
||||
<property name="addFillerWords" value="false"/>
|
||||
<property name="acousticModel" value="voxforge"/>
|
||||
<property name="languageModel" value="trigramModel"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
|
||||
<property name="languageWeight" value="${languageWeight}"/>
|
||||
<property name="silenceInsertionProbability" value="${silenceInsertionProbability}"/>
|
||||
<property name="wordInsertionProbability" value="${wordInsertionProbability}"/>
|
||||
<property name="fillerInsertionProbability" value="${fillerInsertionProbability}"/>
|
||||
|
||||
<property name="wantUnigramSmear" value="true"/>
|
||||
<property name="unigramSmearWeight" value="1"/>
|
||||
<property name="cacheSize" value="0"/>
|
||||
</component>
|
||||
|
||||
<component name="trigramModel"
|
||||
type="edu.cmu.sphinx.linguist.language.ngram.large.LargeTrigramModel">
|
||||
<property name="unigramWeight" value=".7"/>
|
||||
<property name="maxDepth" value="3"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="dictionary" value="dictionary"/>
|
||||
<property name="location"
|
||||
value="etc/voxforge_en_sphinx.transcription.test.txt.lm.DMP"/>
|
||||
</component>
|
||||
|
||||
<component name="dictionary"
|
||||
type="edu.cmu.sphinx.linguist.dictionary.FullDictionary">
|
||||
<property name="dictionaryPath" value="etc/cmudict.0.7a"/>
|
||||
<property name="fillerPath" value="etc/voxforge_en_sphinx.filler"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
</component>
|
||||
|
||||
<component name="voxforge"
|
||||
type="edu.cmu.sphinx.linguist.acoustic.tiedstate.TiedStateAcousticModel">
|
||||
<property name="loader" value="modelLoader"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
</component>
|
||||
|
||||
<component name="modelLoader" type="edu.cmu.sphinx.linguist.acoustic.tiedstate.Sphinx3Loader">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
<property name="location" value="voxforge_en_sphinx.cd_cont_3000"/>
|
||||
<property name="vectorLength" value="29"/>
|
||||
</component>
|
||||
|
||||
<component name="trivialPruner"
|
||||
type="edu.cmu.sphinx.decoder.pruner.SimplePruner">
|
||||
</component>
|
||||
|
||||
<component name="threadedScorer"
|
||||
type="edu.cmu.sphinx.decoder.scorer.ThreadedAcousticScorer">
|
||||
<property name="frontend" value="${frontend}"/>
|
||||
</component>
|
||||
|
||||
<component name="logMath"
|
||||
type="edu.cmu.sphinx.util.LogMath">
|
||||
<property name="logBase" value="1.0001"/>
|
||||
<property name="useAddTable" value="true"/>
|
||||
</component>
|
||||
|
||||
<component name="unitManager"
|
||||
type="edu.cmu.sphinx.linguist.acoustic.UnitManager"/>
|
||||
|
||||
<component name="mfcFrontEnd"
|
||||
type="edu.cmu.sphinx.frontend.FrontEnd">
|
||||
<propertylist name="pipeline">
|
||||
<item>streamDataSource</item>
|
||||
<item>dither</item>
|
||||
<item>preemphasizer</item>
|
||||
<item>windower</item>
|
||||
<item>fft</item>
|
||||
<item>melFilterBank</item>
|
||||
<item>dct</item>
|
||||
<item>batchCMN</item>
|
||||
<item>featureExtraction</item>
|
||||
<item>featureTransform</item>
|
||||
</propertylist>
|
||||
</component>
|
||||
|
||||
<component name="streamDataSource"
|
||||
type="edu.cmu.sphinx.frontend.util.StreamDataSource">
|
||||
<property name="sampleRate" value="16000"/>
|
||||
</component>
|
||||
|
||||
<component name="preemphasizer"
|
||||
type="edu.cmu.sphinx.frontend.filter.Preemphasizer">
|
||||
</component>
|
||||
|
||||
<component name="dither"
|
||||
type="edu.cmu.sphinx.frontend.filter.Dither">
|
||||
</component>
|
||||
|
||||
<component name="windower"
|
||||
type="edu.cmu.sphinx.frontend.window.RaisedCosineWindower">
|
||||
</component>
|
||||
|
||||
<component name="fft"
|
||||
type="edu.cmu.sphinx.frontend.transform.DiscreteFourierTransform">
|
||||
</component>
|
||||
|
||||
<component name="melFilterBank"
|
||||
type="edu.cmu.sphinx.frontend.frequencywarp.MelFrequencyFilterBank">
|
||||
<property name="numberFilters" value="31"/>
|
||||
<property name="minimumFrequency" value="200"/>
|
||||
<property name="maximumFrequency" value="3500"/>
|
||||
</component>
|
||||
|
||||
<component name="dct"
|
||||
type="edu.cmu.sphinx.frontend.transform.DiscreteCosineTransform">
|
||||
</component>
|
||||
|
||||
<component name="batchCMN"
|
||||
type="edu.cmu.sphinx.frontend.feature.BatchCMN">
|
||||
</component>
|
||||
|
||||
<component name="featureExtraction"
|
||||
type="edu.cmu.sphinx.frontend.feature.DeltasFeatureExtractor">
|
||||
</component>
|
||||
|
||||
<component name="featureTransform"
|
||||
type="edu.cmu.sphinx.frontend.feature.FeatureTransform">
|
||||
<property name="loader" value="modelLoader"/>
|
||||
</component>
|
||||
|
||||
<!-- ************************************************** -->
|
||||
<!-- Instrumentation -->
|
||||
<!-- ************************************************** -->
|
||||
|
||||
<component name="accuracyTracker"
|
||||
type="edu.cmu.sphinx.instrumentation.BestPathAccuracyTracker">
|
||||
<property name="showRawResults" value="false"/>
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
<property name="showAlignedResults" value="false"/>
|
||||
</component>
|
||||
|
||||
<component name="speedTracker"
|
||||
type="edu.cmu.sphinx.instrumentation.SpeedTracker">
|
||||
<property name="showTimers" value="true"/>
|
||||
<property name="frontend" value="${frontend}"/>
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
</component>
|
||||
|
||||
<component name="memoryTracker"
|
||||
type="edu.cmu.sphinx.instrumentation.MemoryTracker">
|
||||
<property name="recognizer" value="${recognizer}"/>
|
||||
</component>
|
||||
|
||||
</config>
|
||||
File diff suppressed because it is too large
Load diff
40
lib/sphinx4-5prealpha-src/tests/trainer/build.xml
Normal file
40
lib/sphinx4-5prealpha-src/tests/trainer/build.xml
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<project basedir="." default="none" name="Runs the trainer tests.">
|
||||
|
||||
<description>
|
||||
This file is used to run the trainer tests.
|
||||
|
||||
NOTE: Before running the tests, you must have already built
|
||||
the sphinx-4 sources by typing "ant" in the top level
|
||||
sphinx4 directory.
|
||||
|
||||
</description>
|
||||
|
||||
<property name="top_dir" value="../.."/>
|
||||
<property name="build_dir" value="${top_dir}/bld"/>
|
||||
<property name="classes_dir" value="${build_dir}"/>
|
||||
|
||||
<property name="initial_heap_size" value="256m"/>
|
||||
<property name="maximum_heap_size" value="1g"/>
|
||||
|
||||
<property name="trainer_class"
|
||||
value="edu.cmu.sphinx.trainer.Trainer"/>
|
||||
|
||||
<target name="none">
|
||||
<echo>Type 'ant -p' for possible targets.</echo>
|
||||
</target>
|
||||
|
||||
<target name="compile" />
|
||||
|
||||
<target name="trainer"
|
||||
description="Runs the Trainer test.">
|
||||
<java classname="${trainer_class}"
|
||||
classpath="${classes_dir}"
|
||||
fork="true">
|
||||
<jvmarg value="-ms${initial_heap_size}"/>
|
||||
<jvmarg value="-mx${maximum_heap_size}"/>
|
||||
<arg value="trainer.xml"/>
|
||||
</java>
|
||||
</target>
|
||||
</project>
|
||||
38
lib/sphinx4-5prealpha-src/tests/trainer/phonelist
Normal file
38
lib/sphinx4-5prealpha-src/tests/trainer/phonelist
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
version 0.1
|
||||
same_sized_models yes
|
||||
n_state 3
|
||||
tmat_skip no
|
||||
AA
|
||||
AE
|
||||
AH
|
||||
AO
|
||||
AW
|
||||
AY
|
||||
B
|
||||
CH
|
||||
D
|
||||
EH
|
||||
ER
|
||||
EY
|
||||
F
|
||||
G
|
||||
HH
|
||||
IH
|
||||
IY
|
||||
JH
|
||||
K
|
||||
L
|
||||
M
|
||||
N
|
||||
OW
|
||||
P
|
||||
R
|
||||
S
|
||||
SIL
|
||||
T
|
||||
TH
|
||||
UW
|
||||
V
|
||||
W
|
||||
Y
|
||||
Z
|
||||
62
lib/sphinx4-5prealpha-src/tests/trainer/trainer.xml
Normal file
62
lib/sphinx4-5prealpha-src/tests/trainer/trainer.xml
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
<?xml version="1.0"?>
|
||||
<config>
|
||||
<property name="logLevel" value="INFO"/>
|
||||
<component name="trainer" type="edu.cmu.sphinx.trainer.Trainer">
|
||||
<property name="trainManager" value="trainManager"/>
|
||||
</component>
|
||||
<component name="trainManager" type="edu.cmu.sphinx.trainer.SimpleTrainManager">
|
||||
<propertylist name="models">
|
||||
<item>model </item>
|
||||
</propertylist>
|
||||
<property name="initLearner" value="initLearner"/>
|
||||
<property name="learner" value="learner"/>
|
||||
<property name="control" value="control"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
</component>
|
||||
<component name="control" type="edu.cmu.sphinx.trainer.SimpleControlFile">
|
||||
<property name="dictionary" value="dictionary"/>
|
||||
</component>
|
||||
<component name="dictionary" type="edu.cmu.sphinx.trainer.TrainerDictionary">
|
||||
<property name="dictionaryPath" value="../../models/acoustic/wsj/dict/cmudict.0.6d"/>
|
||||
<property name="fillerPath" value="../../models/acoustic/wsj/noisedict"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
</component>
|
||||
<component name="initLearner" type="edu.cmu.sphinx.trainer.FlatInitializerLearner">
|
||||
<property name="frontend" value="frontend"/>
|
||||
<property name="source" value="streamCepstrumSource"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
</component>
|
||||
<component name="learner" type="edu.cmu.sphinx.trainer.BaumWelchLearner">
|
||||
<property name="frontend" value="frontend"/>
|
||||
<property name="source" value="streamCepstrumSource"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
</component>
|
||||
<component name="frontend" type="edu.cmu.sphinx.frontend.FrontEnd">
|
||||
<propertylist name="pipeline">
|
||||
<item>streamCepstrumSource </item>
|
||||
<item>liveCMN </item>
|
||||
<item>featureExtraction </item>
|
||||
</propertylist>
|
||||
</component>
|
||||
<component name="streamCepstrumSource" type="edu.cmu.sphinx.frontend.util.StreamCepstrumSource"/>
|
||||
<component name="liveCMN" type="edu.cmu.sphinx.frontend.feature.LiveCMN"/>
|
||||
<component name="featureExtraction" type="edu.cmu.sphinx.frontend.feature.DeltasFeatureExtractor"/>
|
||||
<component name="logMath" type="edu.cmu.sphinx.util.LogMath"/>
|
||||
<component name="model" type="edu.cmu.sphinx.linguist.acoustic.tiedstate.trainer.TrainerAcousticModel">
|
||||
<property name="loader" value="loader"/>
|
||||
<property name="saver" value="saver"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
</component>
|
||||
<component name="loader" type="edu.cmu.sphinx.linguist.acoustic.tiedstate.trainer.ModelInitializerLoader">
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
<property name="phonelist" value="phonelist"/>
|
||||
</component>
|
||||
<component name="saver" type="edu.cmu.sphinx.linguist.acoustic.tiedstate.trainer.Sphinx3Saver">
|
||||
<property name="loader" value="loader"/>
|
||||
<property name="logMath" value="logMath"/>
|
||||
<property name="unitManager" value="unitManager"/>
|
||||
<property name="saveLocation" value="output"/>
|
||||
</component>
|
||||
<component name="unitManager" type="edu.cmu.sphinx.linguist.acoustic.UnitManager"/>
|
||||
</config>
|
||||
Loading…
Add table
Add a link
Reference in a new issue