I am using PocketsphinxDemo successfully on Android. I have a very limited set of words to be recognized, say 3 different words. I currently get lots of false positives - while talking, Pocketsphinx recognizes one of my 3 words although they have not been spoken.
As I can't find any reference for the parameters pocketsphinx is using, here's my question:
Is there a parameter to make Pocketsphinx react more restrictive?
I want it to return its recognition guess only if Pocketsphinx is highly "sure" to match the correct word.
Here are the default parameters I am currently using:
c.setFloat("-samprate", 8000.0);
c.setInt("-maxhmmpf", 2000);
c.setInt("-maxwpf", 10);
c.setInt("-pl_window", 2);
c.setBoolean("-backtrace", true);
c.setBoolean("-bestpath", false);