Hello,
Not sure if this is allowed or not but I wanted to share this solution in case someone else is having the same error.
while trying to run deepspeech I kept on having this error message:
RuntimeError: CreateModel failed with error code 12293
solution:
I changed the tensorflow ver to match EXACTLY the one in the requirement file (currently tensorflow == 1.13.1). I tried ver 14.0 & it didn’t work.
The normal pip install tensorflow == 1.13.1
didn’t work for me so I had to install the whl file from here
& run (in the directory where the file is):
pip install tensorflow-1.13.1-cp34-cp34m-manylinux1_x86_64.whl
Hope this helps someone,