Whenever I run the command python mic_vad_streaming.py -m ./deepspeech-0.0.3-models.pbmm -s ./deepspeech-0.9.3-models.scorer
it gives me this error: raise RuntimeError("CreateModel failed with '{}' (0x{:X})".format(deepspeech.impl.ErrorCodeToErrorMessage(status),status))
. I’m running on Windows, following this tutorial. Why does it give me this error & how do I fix it?
Initializing model...
INFO:root:ARGS.model: ./deepspeech-0.0.3-models.pbmm
TensorFlow: v2.3.0-6-g23ad988fcd
DeepSpeech: v0.9.3-0-gf2e9c858
Not found: NewReadOnlyMemoryRegionFromFile failed to Create/Open: ./deepspeech-0.0.3-models.pbmm : The system cannot find the file specified.
; No such file or directory
Traceback (most recent call last):
File "C:\Users\Me\deepspeech\mic_vad_streaming\mic_vad_streaming.py", line 224, in <module>
main(ARGS)
File "C:\Users\Me\deepspeech\mic_vad_streaming\mic_vad_streaming.py", line 163, in main
model = deepspeech.Model(ARGS.model)
File "C:\Users\Me\deepspeech\lib\site-packages\deepspeech\__init__.py", line 38, in __init__
raise RuntimeError("CreateModel failed with '{}' (0x{:X})".format(deepspeech.impl.ErrorCodeToErrorMessage(status),status))
RuntimeError: CreateModel failed with 'Failed to initialize memory mapped model.' (0x3000)