-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to load any of {libcudnn_cnn.so.9.1.0, libcudnn_cnn.so.9.1, libcudnn_cnn.so.9, libcudnn_cnn.so} #902
Comments
Same issue here. Started today |
I encountered the same issue. A temporary fix can be found here: SYSTRAN/faster-whisper#1083 In my case, I added the following to my requirements.txt, and it is working now:
|
I solved by downgrading ctranslate 2. I used this command: pip install ctranslate2==4.4.0 |
This works. Thanks |
Thanks, @Leandrocnf, this helped me:
|
Thanks, @Leandrocnf, it works!!! |
didn't work |
Didn't work for me either :/ ctranslate2==4.4.0 |
@jon-fox This error occurred because your cuDNN file is not set in the environment.
If the files are missing, you need to reinstall cuDNN.
Copy these lines and add them to ~/.bashrc or ~/.zshrc. Then run:
These steps worked for me. |
Yeah I've tried these with no luck. My app was working for a few months with whisperx until the lib updates. I ended up just switching over to using faster whisper and am not having any issues. |
I was able to fix this problem while using ctranslate2 version 4.5.0. First I create a virtual python environment.
Then I activate the environment.
I install whisperx
Install ctranslate2 4.5.0
Then I export the cuDNN libraries that are located in the virtual python enviroment
Now I can launch it.
I open the bashrc file to create a alias command so I make a shorcut out of it.
I'm using torch and torchaudio version 2.6.0 and cuda 12.8.0-1 on my artix linux distro. |
Please, help me. I don't know much about programming, but I use whisperx via google colab because it helps me a lot with my work subtitling, but yesterday it started giving me this message:
/usr/local/lib/python3.10/dist-packages/pyannote/audio/utils/reproducibility.py:74: ReproducibilityWarning: TensorFloat-32 (TF32) has been disabled as it might lead to reproducibility issues and lower accuracy.
It can be re-enabled by calling
warnings.warn(
Unable to load any of {libcudnn_cnn.so.9.1.0, libcudnn_cnn.so.9.1, libcudnn_cnn.so.9, libcudnn_cnn.so}
Invalid handle. Cannot load symbol cudnnCreateConvolutionDescriptor
I don't know what happened. I didn't change anything. I always use a simple command, it's just:
! whisperx (path to the videofile) --model large-v3 --output_dir (path where the file will be saved) --language en --output_format srt
I tried using another model, but it's still not working and I can't really understand the error message to try to fix whatever the problem is. If anyone could help me, I really need this to make my work easier.
The text was updated successfully, but these errors were encountered: