mozilla-foundation/common_voice_13_0
Updated • 1.68k • 5
How to use Adbhut/whisper-small-dv with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Adbhut/whisper-small-dv") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Adbhut/whisper-small-dv")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Adbhut/whisper-small-dv")This is whisper-small finetuned for 500 steps on Common Voice 13, lang=Divehi. Achieves normalized wer=12.66 on test set.