Views
No views yet
whisper-Marathi-small-finetuned is trained on curated Marathi audio datasets to improve transcription quality while keeping the Whisper Small efficiency.1from transformers import pipeline, AutoProcessor
2
3model_name = "Prasad12344321/whisper-Marathi-small-finetuned"
4
5processor = AutoProcessor.from_pretrained(model_name)
6
7pipe = pipeline(
8 "automatic-speech-recognition",
9 model=model_name,
10 chunk_length_s=30, # long audio support
11 stride_length_s=(4, 2)
12)
13
14print(pipe("/content/test100.mp3")["text"])