|
Open Source Toolkit For Speech Recognition Project by Carnegie Mellon University |
There are two types of models that describe language - grammars and statistical language models. Grammars describe very simple types of languages for command and control, and they are usually written by hand or generated automatically with plain code.
There are many ways to build the statistical language models. When your data set is large, there is sense to use CMU language modeling toolkit. When a model is small, you can use an online quick web service. When you need specific options or you just want to use your favorite toolkit which builds ARPA models, you can use it.
Grammars are usually written manually in JSGF format:
#JSGF V1.0; /** * JSGF Grammar for Hello World example */ grammar hello; public <greet> = (Good morning | Hello) ( Bhiksha | Evandro | Paul | Philip | Rita | Will );
For more information on JSGF format see the documentation
http://java.sun.com/products/java-media/speech/forDevelopers/JSGF/
You need to download and install cmuclmtk. See CMU Sphinx Downloads for details.
First of all you need to cleanup text. Expand abbreviations, convert numbers to words, clean non-word items. For example to clean Wikipedia XML dump you can use special python scripts. To clean HTML pages you can try http://code.google.com/p/boilerpipe/ a nice package specifically created to extract text from HTML
Language modeling for Mandarin is largely the same as in English, with one addditional consideration, which is that the input text must be word segmented. A segmentation tool and associated word list is provided to accomplish this.
The process for creating a language model is as follows:
1) Prepare a reference text that will be used to generate the language model. The language model toolkit expects its input to be in the form of normalized text files, with utterances delimited by <s> and </s> tags. A number of input filters are available for specific corpora such as Switchboard, ISL and NIST meetings, and HUB5 transcripts.
The result should be the set of sentences that are bounded by the start and end sentence markers: <s> and </s>. Here's an example:
<s> generally cloudy today with scattered outbreaks of rain and drizzle persistent and heavy at times </s> <s> some dry intervals also with hazy sunshine especially in eastern parts in the morning </s> <s> highest temperatures nine to thirteen Celsius in a light or moderate mainly east south east breeze </s> <s> cloudy damp and misty today with spells of rain and drizzle in most places much of this rain will be light and patchy but heavier rain may develop in the west later </s>
More data will generate better language models. The weather.txt file from sphinx4 (used to generate the weather language model) contains nearly 100,000 sentences.
2) Generate the vocabulary file. This is a list of all the words in the file:
text2wfreq < weather.txt | wfreq2vocab > weather.tmp.vocab
3) You may want to edit the vocabulary file to remove words (numbers, misspellings, names). If you find misspellings, it is a good idea to fix them in the input transcript.
4) If you want a closed vocabulary language model (a language model that has no provisions for unknown words), then you should remove sentences from your input transcript that contain words that are not in your vocabulary file.
5) Generate the arpa format language model with the commands:
% text2idngram -vocab weather.vocab -idngram weather.idngram < weather.closed.txt
% idngram2lm -vocab_type 0 -idngram weather.idngram -vocab \
weather.vocab -arpa weather.arpa
6) Generate the CMU binary form (DMP)
sphinx_lm_convert -i weather.arpa -o weather.lm.DMP
The CMUCLTK tools and commands are documented at The CMU-Cambridge Language Modeling Toolkit page.
You can also use any other toolkit that generates ARPA text files. However, the resulting files must be sorted in order to work with the Sphinx decoders. You can use the sphinx_lm_sort utility included with SphinxBase to sort an ARPA format language model file for use with Sphinx, e.g.:
sphinx_lm_sort < unsorted.arpa > sorted.arpa
Then you can convert the model to DMP format and use it as usual.
Some toolkits you can try:
They are usually pretty convenient to use.
If your language is English and text is small it's sometimes more convenient to use web service to build it. Language models built in this way are quite functional for simple command and control tasks. First of all you need to create a corpus.
The “corpus” is just a list of sentences that you will use to train the language model. As an example,
we will use a hypothetical voice control task for a mobile Internet device. We'd like to tell it things
like “open browser”, “new e-mail”, “forward”, “backward”, “next window”, “last window”, “open music player”,
and so forth. So, we'll start by creating a file called corpus.txt:
open browser new e-mail forward backward next window last window open music player
Then go to the page http://www.speech.cs.cmu.edu/tools/lmtool.html. Simply click on the “Browse…” button, select
the corpus.txt file you created, then click “COMPILE KNOWLEDGE BASE”.
You should see a page with some status messages, followed by a page entitled “Sphinx knowledge base”.
This page will contain links entitled “Dictionary” and “Language Model”. Download these files and
make a note of their names (they should consist of a 4-digit number followed by the extensions
.dic and .lm). You can now test your newly created language model with PocketSphinx.
To quickly load large models you probably would like to convert them to binary format that
will save your decoder initialization time. That's not necessary with small models. Pocketsphinx
and sphinx3 can handle both of them with -lm option. Sphinx4 requires you
to submit DMP model into TrigramModel component and ARPA model to SimpleNGramModel component.
ARPA format and DMP format are mutually convertable. You can produce other file with sphinx_lm_convert command from sphinxbase:
sphinx_lm_convert -i model.lm -o model.dmp sphinx_lm_convert -i model.dmp -ifmt dmp -o model.lm -ofmt arpa
This section will show you how to use, test, and improve the language model you created.
If you have installed PocketSphinx, you will have a program called pocketsphinx_continuous which can be
run from the command-line to recognize speech. Assuming it is installed under /usr/local, and your language model and dictionary are called 8521.dic and 8521.lm, try running the following command:
pocketsphinx_continuous -lm 8521.lm -dict 8521.dic
You will see a lot of diagnostic messages, followed by a pause, then “READY…”. Now you can try speaking some of the commands. It should be able to recognize them with complete accuracy. If not, you may have problems with your microphone or sound card.
You just need to edit the configuration file and put a proper file name there. Sphinx-4 mostly works with DMP format. See the documentation for details:
http://cmusphinx.sourceforge.net/sphinx4/doc/UsingSphinxTrainModels.html