show/hide this revision's text 3 fix example

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?

Example:
Say we have "RC", "RC Coke", "RC Colacola" and "RC Soda"Pepsi cola". We would have grammar file consisting of 2 rules:
DRINK: (RC COLANAME ?[Coke Cola Soda][coke cola soda])
COLANAME: [rc pepsi]
It will recognizes "RC" or RC","RC Coke","RC Cola","RC Soda", "RC CokePepsi", "or Pepsi Coke", "RC Pepsi Cola" or and "RC Pepsi Soda".

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.

show/hide this revision's text 2 clarify, example

How do you efficiently create a grammar file for speech recognition given a large list of words?

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?

Example:
Say we have "RC", "RC Coke", "RC Cola" and "RC Soda". We would have grammar file consisting of 2 rules:
(RC ?[Coke Cola Soda])
It will recognizes "RC" or "RC Coke" or "RC Cola" or "RC Soda".

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.

show/hide this revision's text 1

How do you efficiently create a grammar file given a large list of words?

It's easy to write a grammar file 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?