Vaibhavs10 / insanely-fast-whisper

Apache License 2.0
6.94k stars 505 forks source link

Does this project support other models of whisper base tiny #149

Closed MiningIrving closed 6 months ago

MiningIrving commented 6 months ago

I want to run whisper on my low hash rate terminal device and speed it up, but does the project only speed up for the large model

riffov commented 6 months ago

Changue this code line:

from faster_whisper import WhisperModel
model_size = "large-v2"

to

from faster_whisper import WhisperModel
model_size = "tiny"

Try switching to the whisper model that best suits your needs, being the following:

Vaibhavs10 commented 6 months ago

Hi @MiningIrving - you can pass any other Whisper model via --model-name parameter mentioned here

(closing this issue now, since this is mostly now fixed).