mozilla-foundation/common_voice_17_0
Updated • 5.41k • 17
How to use alexantonov/whisper-medium-chv-pre with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="alexantonov/whisper-medium-chv-pre") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("alexantonov/whisper-medium-chv-pre")
model = AutoModelForSpeechSeq2Seq.from_pretrained("alexantonov/whisper-medium-chv-pre")This model is a fine-tuned version of openai/whisper-medium on the Common Voice 17.0 (Chuvash part) and the Chuvash Voice datasets.