openslr/openslr
Updated • 453 • 29
This model is a fine-tuned version of openai/whisper-medium on the OpenSLR 54 (Nepali Speech Corpus) dataset.
from transformers import pipeline
transcriber = pipeline(
"automatic-speech-recognition",
model="Dragneel/whisper-medium-nepali-openslr"
)
text = transcriber("path_to_audio.mp3")
print(text["text"])