VoxForge
Hi. I created .grammar file like this below;
S : NS_B DIGIT_LOOP NS_E
DIGIT_LOOP: DIGIT_LOOP DIGIT
DIGIT_LOOP: DIGIT
So. When run julius i expect to recognize my voice up to <sil> like up to end of speech. However, it only prints one word and prints wheter my first word or immediate ones or last and it changes . It is like for continuous speech it takes randomly. My grammar has ability to continuous speech recognition from given .voca file. Okey, it is wait until i finish talking. By if i speech only 1 word, it recognize trully.
But why it doesnt print more than 1 word as output?
--- (Edited on 12/19/2015 5:48 pm [GMT-0600] by Visitor) ---
> it only prints one word
How well does it work with a keyword (like "DIAL" to start the loop):
S : NS_B DIAL DIGIT_LOOP NS_E
DIGIT_LOOP: DIGIT_LOOP DIGIT
DIGIT_LOOP: DIGIT
--- (Edited on 12/21/2015 10:02 am [GMT-0500] by kmaclean) ---