Hello Everyone,
May be it’s a dumb question but I don’t see any doc or response which satisfies me regarding the right version of CUDA.
I saw in the documentation that you need CUDA 10.0 and CUDNN 7.5 in order to make deepspeech-gpu work. Currently with TensorFlow 1.13 it depends on CUDA 10.0 and CuDNN v7.5.
But in this topic they used CUDA 10.2, just like me.
Following the ouput of nvida-smi command:
±----------------------------------------------------------------------------+
| NVIDIA-SMI 430.26 Driver Version: 430.26 CUDA Version: 10.2 |
|-------------------------------±---------------------±---------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 Quadro P3000 Off | 00000000:01:00.0 Off | N/A |
| N/A 37C P5 7W / N/A | 206MiB / 6078MiB | 9% Default |
±------------------------------±---------------------±---------------------+
What I did is install deepspeech-gpu and tensorflow-gpu with pip3 in a virtualenv just as the doc said, and after I used deepspeech with the pre-trained model I got the following error:
deepspeech --model models/output_graph.pbmm --alphabet models/alphabet.txt --lm models/lm.binary --trie models/trie --audio agni1.wav
Traceback (most recent call last):
File “/home/leopaul/tmp/deepspeech-venv/lib/python3.7/site-packages/deepspeech/impl.py”, line 14, in swig_import_helper
return importlib.import_module(mname)
File “/home/leopaul/tmp/deepspeech-venv/lib/python3.7/importlib/init.py”, line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File “”, line 1006, in _gcd_import
File “”, line 983, in _find_and_load
File “”, line 967, in _find_and_load_unlocked
File “”, line 670, in _load_unlocked
File “”, line 583, in module_from_spec
File “”, line 1043, in create_module
File “”, line 219, in _call_with_frames_removed
ImportError: libcublas.so.10.0: cannot open shared object file: No such file or directory
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “/home/leopaul/tmp/deepspeech-venv/bin/deepspeech”, line 6, in
from deepspeech.client import main
File “/home/leopaul/tmp/deepspeech-venv/lib/python3.7/site-packages/deepspeech/init.py”, line 14, in
from deepspeech.impl import PrintVersions as printVersions
File “/home/leopaul/tmp/deepspeech-venv/lib/python3.7/site-packages/deepspeech/impl.py”, line 17, in
_impl = swig_import_helper()
File “/home/leopaul/tmp/deepspeech-venv/lib/python3.7/site-packages/deepspeech/impl.py”, line 16, in swig_import_helper
return importlib.import_module(’_impl’)
File “/home/leopaul/tmp/deepspeech-venv/lib/python3.7/importlib/init.py”, line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
ModuleNotFoundError: No module named ‘_impl’
Did I get something wrong ? I’m relatively new to ubuntu…
Is it have something to do with the fact that my Nvidia card may not be powerful enough ?
Thank you !