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 |
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 |
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.
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.
All reactions