whisper-jax
whisper-jax copied to clipboard
how to install on Apple Silicon ?
Hi any easy way to run this locally on my Apple silicon mac ? Any standalone installers for the normal end user ?
JAX doesn't support Apple silicon - probably the easiest way to get a performance win over OpenAI is to use the Hugging Face Transformers implementation in PyTorch with batching (since you can easily install PyTorch with mps support), see https://huggingface.co/openai/whisper-large-v2#long-form-transcription for details
ok thanks will check it out. Currently whisper jax only tackles EN right ? I'd be interested in FR transcription.
Nope - both the Transformers and Whisper JAX implementation can handle any language! The language is either inferred from the audio sample, or set by the language argument:
# for French transcription
pred_text = pipeline("audio.mp3", task="transcribe", language="fr")
ok that's definitely interesting then. Thanks.
does it work on intel macs?
I'm looking into how I could get it to run locally and essentially try to get it to replace dictation on mac.