Wordcab / wordcab-transcribe

💬 ASR FastAPI server using faster-whisper and Multi-Scale Auto-Tuning Spectral Clustering for diarization.
https://wordcab.github.io/wordcab-transcribe/
MIT License
198 stars 29 forks source link

How do we use a fine-tuned model with Wordcab Transcribe? #279

Closed mathiasfoster closed 1 year ago

mathiasfoster commented 1 year ago

I have a Whisper model which I've fine-tuned, and converted to CTranslate2 format. How can I use it with Wordcab?

chainyo commented 1 year ago

Hi @mathiasfoster, check this in the .env file: https://github.com/Wordcab/wordcab-transcribe/blob/8c967bd0fdb29a8496ab9d32caa6d6c9a7649c03/.env#L29-L34

You can also host the model on Hugging face and just pass the org-name/model-name, it should work if the model is public.

mathiasfoster commented 1 year ago

Thank you!