-
I have to run whisper every single day and it downloads the model (medium in my case so pretty long download on slow internet) almost every time I run it. How can I stop that behaviour? It also gets stuck on 19kiB/s whearas my internet is about 6 or 7 mB/s |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
It should not download the model each time once it is fully downloaded. It appears that the Azure CDN that we're using is not particularly friendly with your network. Does it download any faster if you try this address in your browser: Alternatively, you could try this non-CDN address which is typically slower: Once downloaded, Whisper can use the model if you copy them to |
Beta Was this translation helpful? Give feedback.
It should not download the model each time once it is fully downloaded. It appears that the Azure CDN that we're using is not particularly friendly with your network. Does it download any faster if you try this address in your browser:
https://openaipublic.azureedge.net/main/whisper/models/345ae4da62f9b3d59415adc60127b97c714f32e89e936602e85993674d08dcb1/medium.pt
Alternatively, you could try this non-CDN address which is typically slower:
https://openaipublic.blob.core.windows.net/main/whisper/models/345ae4da62f9b3d59415adc60127b97c714f32e89e936602e85993674d08dcb1/medium.pt
Once downloaded, Whisper can use the model if you copy them to
~/.cache/whisper/medium.pt
.