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