I use Anaconda3 with python 3.6 and use pip install tensorflow deepspeech.
When I run the following command I get errors:
deepspeech --model models/output_graph.pb --alphabet models/alphabet.txt --audio voice.wav
Loading model from file models/output_graph.pb
TensorFlow: v1.11.0-9-g97d851f04e
DeepSpeech: unknown
Warning: reading entire model file into memory. Transform model file into an mmapped graph to reduce heap usage.
2018-12-26 18:19:30.748212: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
Note that I am using the pretrained model obtained from the instructions using this command:
wget -O - https://github.com/mozilla/DeepSpeech/releases/download/v0.3.0/deepspeech-0.3.0-models.tar.gz | tar xvfz -
Where is the Tensorflow v1.11.0 coming from? pip freeze shows Tensorflow as v0.12.0? How do I get around this?