Where does faster-whisper downloads the model ? #1173
shrangideqode
started this conversation in
General
Replies: 2 comments
-
it's downloaded from huggingface to the huggingface cache dir |
Beta Was this translation helpful? Give feedback.
0 replies
-
If you are in Linux that would be in (
For a list of model names see: faster-whisper/faster_whisper/utils.py Line 12 in 97a4785 HTHs |
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
-
When initialising the whisper model
model = WhisperModel("distil-large-v3", device="cuda", compute_type='float16')
What path does it download the model ?
How can i download the model beforehand so that while initialising it does not download and only load the model.
I want to download the model in Docker image so that i start my application without waiting for it to downlaod.
Beta Was this translation helpful? Give feedback.
All reactions