How do you efficiently create a grammar file for speech recognition given a large list of words? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:26:44Z http://stackoverflow.com/feeds/question/653262 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/653262/how-do-you-efficiently-create-a-grammar-file-for-speech-recognition-given-a-large 0 How do you efficiently create a grammar file for speech recognition given a large list of words? Hertanto Lie 2009-03-17T07:05:14Z 2009-09-18T20:38:06Z <p>It's easy to write a grammar file for speech recognition from only 50 words because you can just do it manually. What is the easiest, most efficient way to do it if you have 10,000 or 100,000 words?</p> <p>Example:<br /> Say we have "RC cola" and "Pepsi cola". We would have grammar file consisting of 2 rules:<br /> DRINK: (COLANAME ?[coke cola soda])<br /> COLANAME: [rc pepsi]<br /> It will recognizes "RC","RC Coke","RC Cola","RC Soda", "Pepsi", "Pepsi Coke", "Pepsi Cola" and "Pepsi Soda". </p> <p>Edit: I'm talking about grammar for speech recognition. Speech recognition systems need an accompanying grammar file so they know what to recognize (gsl, grxml). And I was actually also thinking about not just any words but something like names where you can't classify into categories.</p> http://stackoverflow.com/questions/653262/how-do-you-efficiently-create-a-grammar-file-for-speech-recognition-given-a-large/653279#653279 -1 Answer by Pete for How do you efficiently create a grammar file for speech recognition given a large list of words? Pete 2009-03-17T07:18:14Z 2009-03-17T07:18:14Z <p>Totally random/vauge ideas off the top of my head:</p> <p>-You could try to classify words into categories (noun, verb, etc.) and then form potentially correct forms for whole statements/sentences based on the classes of words. You could then try to fit new test data to a previously defined model based on the words and the order in which their used. </p> <p>-I'd also be curious about using some sort of machine learning algorithm to learn proper use of words based off of some sort of training data or literature. Once you've trained your algorithm some you could try to classify new incoming data based off of previous results. </p> http://stackoverflow.com/questions/653262/how-do-you-efficiently-create-a-grammar-file-for-speech-recognition-given-a-large/653363#653363 0 Answer by christoffer for How do you efficiently create a grammar file for speech recognition given a large list of words? christoffer 2009-03-17T08:08:26Z 2009-03-17T08:08:26Z <p>I assume you mean part-of-speech tagging; the fastest approach is to use an automated tagger and manually verify (and correct) the results. Even if the tagger has a hitrate as low as 60-70% it will still significantly reduce the amount of work.</p> http://stackoverflow.com/questions/653262/how-do-you-efficiently-create-a-grammar-file-for-speech-recognition-given-a-large/653464#653464 3 Answer by Yuval F for How do you efficiently create a grammar file for speech recognition given a large list of words? Yuval F 2009-03-17T09:05:57Z 2009-03-17T17:01:07Z <p>Now I see. You do mean grammars. The grammar formats you specify are cousins of context-free grammars. There exists a research field around automatic learning of context-free grammars. <a href="http://en.wikipedia.org/wiki/PCFG" rel="nofollow">Probabilistic Context-free grammars</a> are central to this field. See <a href="http://www.cs.cmu.edu/~roni/11761-s01/PreviousYearsHandouts/pcfg-notes.ps" rel="nofollow">Roni rosenfeld's Notes (PostScript)</a> on learning PCFGs, the <a href="http://www.cs.cmu.edu/~sfc/papers/acl95.ps.gz" rel="nofollow">Bayesian version (zipped postscript)</a> and <a href="http://www.demarcken.org/carl/papers/sigdat.pdf" rel="nofollow">unsupervised PCFG learning (PDF)</a>. This is an active research fields, and has changed since these papers were written. <a href="http://www.informatik.uni-trier.de/~ley/db/indices/a-tree/c/Charniak:Eugene.html" rel="nofollow">Eugene Charniak</a> is a prolific researcher in this field.</p> http://stackoverflow.com/questions/653262/how-do-you-efficiently-create-a-grammar-file-for-speech-recognition-given-a-large/700329#700329 0 Answer by Hertanto Lie for How do you efficiently create a grammar file for speech recognition given a large list of words? Hertanto Lie 2009-03-31T06:53:50Z 2009-03-31T06:53:50Z <p>I don't have an answer that will solve my problems but Yuval's answer clearly suggests that this is a subject that's still under development and it is not a mature enough subject. I understand that there's probably no easy grammar fix that exists right now (at least outside the research labs). The only solution to doing a good grammar right now is probably constant learning of user inputs and agile refactoring of the grammar files.</p> http://stackoverflow.com/questions/653262/how-do-you-efficiently-create-a-grammar-file-for-speech-recognition-given-a-large/1231398#1231398 0 Answer by catalist4u for How do you efficiently create a grammar file for speech recognition given a large list of words? catalist4u 2009-08-05T05:47:57Z 2009-08-05T05:47:57Z <p>Can anyone show here some example for how to load and form a grammar file grxml or gsl??</p> <p>Actually I am working on SAPI 5.1 project and felt in very crucial deadlines, only a week and my task is to acheive and recognize names or some proper noun. I trying my approach using xml files and successfully integrated it within my script but SAPI 5.1 isn't recognizing my own words from xml files.</p> <p>I tried cfg files also but did't work. Actually the names arn't in English, these are Arabic names, so Is there any support for Arabic in SAPI? But I want these names to be displayed to me in English language.</p> <p>Any help will be highly appreciated. email : umaid_rulz@yahoo.com. Plz send a copy for solution to my email also.</p> <p>Thnx.</p> http://stackoverflow.com/questions/653262/how-do-you-efficiently-create-a-grammar-file-for-speech-recognition-given-a-large/1446726#1446726 1 Answer by Eric Brown for How do you efficiently create a grammar file for speech recognition given a large list of words? Eric Brown 2009-09-18T20:38:06Z 2009-09-18T20:38:06Z <p>For a 50-100 thousand word lexicon, you're almost certainly better off building a dictation grammar, rather than trying to build a context-free grammar. Microsoft has their <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=b5920ef3-ff03-453f-902c-eae618987ff9&amp;DisplayLang=en" rel="nofollow">Dictation Resource Kit</a> available for free; I haven't used it, so I can't comment on how usable it is.</p>