Open sms-astanley opened 2 months ago
Thanks for sharing your solution. As an fyi, lines 128-130 in summarize.py
call this out.
# 1. Something about cuda nn library missing, even though cuda is installed...
# https://github.com/tensorflow/tensorflow/issues/54784 - Basically, installing zlib made it go away. idk.
# Or https://github.com/SYSTRAN/faster-whisper/issues/85
From the thread, for ubuntu:
For me installing the cuDNN 8 libraries using sudo apt install libcudnn8 on Ubuntu 22.04 fixed the issue!
Alternatively include the in your PATH the path to torch:
export LD_LIBRARY_PATH=`python3 -c 'import os; import nvidia.cublas.lib; import nvidia.cudnn.lib; import torch; print(os.path.dirname(nvidia.cublas.lib.__file__) + ":" + os.path.dirname(nvidia.cudnn.lib.__file__) + ":" + os.path.dirname(torch.__file__) +"/lib")'`
For Windows: In order of attempts:
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124 --force-reinstall --no-cache
tldw
folder.
There's an issue with faster-whisper. Posting here for visibility and to see if there might be a better workaround.
I was able to work around the issue by following:
https://github.com/SYSTRAN/faster-whisper/issues/516