Replies: 1 comment
-
|
I've been getting the same error. Have you figured it out? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I am a user using whisper Ai with google corab.
What settings do I need to modify in order to leave the contents as default and run them?
output_dir /content/drive/MyDrive/Whisper
model large
output_format "srt"
An error code occurs when I run Colab with the code. What steps should I take to prevent the error from occurring?
The order of execution is:
1.from google.colab import drive
drive.mount(‘/content/drive’,force_remount=True)
2.!pip install git+https://github.com/openai/whisper.git
!sudo apt update && sudo apt install ffmpeg
!pip install git+https://github.com/jianfch/stable-ts.git
!pip install tensorflow
!pip install --upgrade setuptools pip wheel
!pip install nvidia-pyindex
!pip install nvidia-cuda-runtime-cu12
!sudo apt-get install docker-ce
3.!whisper --model large --language ja --output_dir /content/drive/MyDrive/Whisper --output_format "srt" "sample"
2023-02-13 12:30:15.230263: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 AVX512F FMA
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
2023-02-13 12:30:16.870635: W tensorflow/compiler/xla/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library ‘libnvinfer.so.7’; dlerror: libnvinfer.so.7: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: /usr/lib64-nvidia
2023-02-13 12:30:16.870769: W tensorflow/compiler/xla/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library ‘libnvinfer_plugin.so.7’; dlerror: libnvinfer_plugin.so.7: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: /usr/lib64-nvidia
2023-02-13 12:30:16.870790: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Cannot dlopen some TensorRT libraries. If you would like to use Nvidia GPU with TensorRT, please make sure the missing libraries mentioned above are installed properly.
Beta Was this translation helpful? Give feedback.
All reactions