I tried vosk model 'en-us-lgraph' and it's working fine:
from vosk import Model, KaldiRecognizer
rec=KaldiRecognizer(Model('path/to/my/en-us-0.22-lgraph', 16000)
the code above works, but when i try to use the acculate model:
from vosk import Model, KaldiRecognizer
rec=KaldiRecognizer(Model('path\to\my'en-us-0.22', 16000)
threre is no error rised but the log level is stuck on
LOG (VoskAPI:ReadDataFiles():model.cc:318) Loading RNNLM model from WORKSPACE/IVA/modules/vosk-model-en-us-0.22/rnnlm/final.raw
and the computer will stop responding until i restate it, i think some thing is wrong with the final.raw file, so, do enybody have a solution, or know eny good replace for vosk?(offline),
thank you.