Adding a comment to promote clarity as I read this post before and didn’t realize it would have solved a problem I was having.
When I got this in output
Not found: output_model.pb; No such file or directory
It was solved by going to
-
https://github.com/mozilla/DeepSpeech/releases
and downloading the language model (which wasn’t downloaded for me when I did "git clone or “pip install deepspeech” at - https://github.com/mozilla/DeepSpeech/releases/download/v0.1.0/deepspeech-0.1.0-models.tar.gz
- and expanding it inside your deepspeech folder
- and then (assuming you’ve install python bindings vis pip install deepspeech) running the command
deepspeech output_model.pb my_audio_file.wav alphabet.txt lm.binary trie
- or alternatively change the name of the .pb file in the command above from output_model.pb to output_graph.bp… if that is what it unpacked to… and run the command above
- I had to run that command from inside the new models folder created when you expanded the result of step 2