collabora / WhisperLive

A nearly-live implementation of OpenAI's Whisper.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

replace the model on Hugging Face

Ye83 opened this issue · comments

commented

How can I replace the model on Hugging Face? Could you please give me specific guidance? I've been puzzled by this for several days.

commented

image
I want to use this model from HuggingFace, but it doesn't have a model.bin file. Does that mean it can't be replaced?

@Ye83 you should follow model conversion guide in the faster_whisper readme and once you have your custom model converted to faster_whisper format i.e. ctranslate you should be able to start the server with you custom faster_whisper model as follows:

python3 run_server.py --port 9090 \
                      --backend faster_whisper
                      -fw "/path/to/custom/faster/whisper/model"
commented

@makaveli10 I appreciate your response

commented

The issue has been resolved.