Bingsu/zeroth-korean
Viewer • Updated • 22.7k • 521 • 45
How to use deemboi/whisper-small-kr with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="deemboi/whisper-small-kr") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("deemboi/whisper-small-kr")
model = AutoModelForSpeechSeq2Seq.from_pretrained("deemboi/whisper-small-kr")This model is a fine-tuned version of openai/whisper-small on the Bingsu korean dataset. It achieves the following results:
| Step | Training Loss | Validation Loss | Wer |
|---|---|---|---|
| 1000 | 0.1141 | 0.145484 | 10.811625 |
| 2000 | 0.0369 | 0.106371 | 7.72474 |
| 3000 | 0.0153 | 0.095729 | 6.520102 |
The following hyperparameters were used during training: