mozilla-foundation/common_voice_17_0
Updated • 5.28k • 17
How to use JayYH/whisper-medium-ko with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="JayYH/whisper-medium-ko") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("JayYH/whisper-medium-ko")
model = AutoModelForSpeechSeq2Seq.from_pretrained("JayYH/whisper-medium-ko")This model is a fine-tuned version of openai/whisper-medium on the Common Voice 17.0 dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Cer |
|---|---|---|---|---|
| 0.0045 | 11.1111 | 500 | 0.3555 | 8.8374 |
| 0.0006 | 22.2222 | 1000 | 0.3709 | 8.6970 |
Base model
openai/whisper-medium