Federated finetuning of Whisper on Raspberry Pi 5
1–10 of 21 posts
Re: Federated finetuning of Whisper on Raspberry Pi 5
#2Re: Federated finetuning of Whisper on Raspberry Pi 5
#3Re: Federated finetuning of Whisper on Raspberry Pi 5
#4The Holy Grail would be to train the model while using it, without any friction. I don't think these methods support that though.
Re: Federated finetuning of Whisper on Raspberry Pi 5
#5I don't think the article mentions it, how well does the rpi 4 and 5 do for inference with whisper especially v3?
Re: Federated finetuning of Whisper on Raspberry Pi 5
#6I don't think the article mentions it, how well does the rpi 4 and 5 do for inference with whisper especially v3?
Re: Federated finetuning of Whisper on Raspberry Pi 5
#7How would this actually work in practice? Do I ask the user to utter specific words then train on that? How is it different from the traditional speech recognition that I need to 'train' to work better on my voice? The Holy Grail would be to train the model while using it, without any friction. I don't think these methods support that though.
The bigger takeaway is that we're close to being able to train/fine-tune models with much better performance by accessing vastly more data on the edge, in a federated way.
Re: Federated finetuning of Whisper on Raspberry Pi 5
#8I’m guessing this will also help with thick accents?
Re: Federated finetuning of Whisper on Raspberry Pi 5
#9I don't think the article mentions it, how well does the rpi 4 and 5 do for inference with whisper especially v3?
I don’t think you’re going to have a good time running the large model on a Pi of any kind.
The large models are 32x slower than the tiny models, roughly.[0]
I just tested, and whisper.cpp on my Pi 4 can transcribe the 30-second a13.wav sample (“make samples” to fetch it) in 18.5 seconds.
You can do the math… 32x = 10 minutes transcribe 30 seconds of audio with the large model. Not a good time for most people.
The Pi 5 could be 2x to 3x faster.
[0]: https://github.com/openai/whisper/blob/main/README.md#availa...
Re: Federated finetuning of Whisper on Raspberry Pi 5
#10I don't think the article mentions it, how well does the rpi 4 and 5 do for inference with whisper especially v3?
v3 only comes in one flavor: large. I don’t think you’re going to have a good time running the large model on a Pi of any kind. The large models are 32x slower than the tiny models, roughly.[0] I just tested, and whisper.cpp on my Pi 4 can transcribe the 30-second a13.wav sample (“make samples” to fetch it) in 18.5 seconds. You can do the math… 32x = 10 minutes transcribe 30 seconds of audio with the large model. Not…