Hi, I am trying to implement a command recognizer to recognize simple words.
For the first test I am using only “yes” and “no”. I trained my own model with the audio data from https://research.googleblog.com/2017/08/launching-speech-commands-dataset.html
Testing with my own voice it could recognize “yes” and “no” very well, so in general it seems to work nicely.
The problem is that if I give another input where other words are spoken (“test”,“check”,…) the deepspeech algorithm recognizes them as “yes”, what I dont’t want -> it should be shown that no words are recognized.
I use my own language model where only the 2 words yes and no are allowed.
Is there a way to solve this?