Hi @lissyx,
I have downloaded tar file of deepspeech-0.5.1 and deepspeech-0.5.1 model.
I have extracted deepspeech-0.5.1 and followed the steps.
virtualenv -p python3 $HOME/tmp/deepspeech-0.5.1-venv/
source $HOME/tmp/deepspeech-0.5.1-venv/bin/activate
pip3 install -r requirements.txt
python3 util/taskcluster.py --target .
pip3 install $(python3 util/taskcluster.py --decoder)
then I tried to run the deepspeech from the tar file (I thin C++) not from the python binaries and i am getting following error.
./deepspeech --model /home/javi/deepspeech/deepspeech-models/output_graph.pbmm --alphabet /home/javi/deepspeech/deepspeech-models/alphabet.txt --lm /home/javi/deepspeech/deepspeech-models/lm.binary --trie /home/javi/deepspeech/deepspeech-models/trie --audio /home/javi/deepspeech/audio/2830-3980-0043.wav
TensorFlow: v1.14.0-18-g351a98a
DeepSpeech: v0.6.0-alpha.11-21-gc1da680
2019-11-21 00:17:19.576991: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
Unable to fetch metadata: Invalid argument: Session was not created with a graph before Run()!
Could not create model.
tensorflow installed which is in the requirements.txt is tensorflow 1.13.1 but while using client and check version of deepspeech (./deepspeech) looks like
TensorFlow: v1.14.0-18-g351a98a
DeepSpeech: v0.6.0-alpha.11-21-gc1da680
But deepspeech-0.5.1 needed tensorflow 1.13.1 and deepspeech 0.5.1.
What i have done wrong here? any -arch problem?