VoxForge
As many of you already may know, given a .grammar and a .voca we can see some examples of utterances the system will be able to recognize, thanks to the generate tool.
While there's no prob with tabs in the .voca file, I experienced some problem when you use tab instead of spaces inside the .grammar file.
Just to let you know that if you have .grammar a
S : NS_B SOMETHING SOMETHING2 NS_E
...
and you expect
<s> SOMETHING SOMETHING2 </s>
but get output like
SOMETHING <s> SOMETHING2 </s>
or whatsoever case of misplaced silence tag <s> and </s>, the problem may be because of the tabs between NS_B and something and something2. Or this is what i experienced.
hope will help.
M