10 comments

[ 0.17 ms ] story [ 343 ms ] thread
Tangential, but I kinda miss the days when this would be SFM, Simple Foundation Models.
Asking because I’m lazy: if I need to transcribe audio in real-time, is there a state of the art model I can plug into?
I saw whisper recommended, but I was curious how it compares to the other robust ASR systems (like nvidia's Nemo + Riva). I found this Twitter thread that seemed relevant: https://nitter.net/lunixbochs/status/1574848899897884672

Long story short, it depends on what you want to use it for. Different models and different training sets can help optimize for different things. Also, if you're in a domain with very uncommon speech patterns (think doctor shorthand or radio lingo), you'll need to understand how difficult it will be to customize generated models to do better in your space. I think Nemo + Riva does well at this; but I'm not as familiar with other options.

Yeah I fine tuned a model 2 years ago but it was a big pain and performance didn’t get better than 85%
whisper from OpenAI works great for me.
If you want to use this but are tired of waiting for the SDKs to get updated you can do this:

```

curl -sS https://cdn.caylent.com/bedrock_new.zip > bedrock.zip

mkdir -p ~/.aws/models/

unzip bedrock.zip -d ~/.aws/models

```