usage of language model file while creating a dictionary

后端 未结 1 1132
故里飘歌
故里飘歌 2021-01-17 01:35

I created a speech to text recognition app.For that purpose i developed a dictionary using CMULanguage tool.For creating the dictionary for my project,i added two files to m

相关标签:
1条回答
  • 2021-01-17 02:24

    The dictionary and the language model are two separate items -- you can not convert one into the other, and you can't just delete / not provide one of them -- both are needed!

    The dictionary is used to tell the search algorithm what the valid words are and how they relate to phonemes / the phonetic transcription.

    The language model is used during the recognition of an utterance, by using the probability of a uni-gram, bi-gram, n-gram .. when the search algorithm is considering a word-transition.

    0 讨论(0)
提交回复
热议问题