mozilla-foundation/common_voice_17_0
Updated • 5.52k • 15
How to use shiimi/whisper-small-dv-syn with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="shiimi/whisper-small-dv-syn") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("shiimi/whisper-small-dv-syn")
model = AutoModelForSpeechSeq2Seq.from_pretrained("shiimi/whisper-small-dv-syn")Base model
openai/whisper-small