Reply To: update English dic to latest from pocketsphinx

Home Forums OpenEars update English dic to latest from pocketsphinx Reply To: update English dic to latest from pocketsphinx

#1032117
Coeur
Participant

Note that for compatibility with OpenEars, I had to replace the first space of each line with a tab:

Either with sed:

sed 's/ /'$'\t''/' cmudict-en-us.dict > LanguageModelGeneratorLookupList.text

Or with perl:

perl -pe 's/ /\t/' cmudict-en-us.dict > LanguageModelGeneratorLookupList.text

  • This reply was modified 6 years, 5 months ago by Coeur.
  • This reply was modified 6 years, 5 months ago by Coeur.