mozilla-foundation/common_voice_17_0
Updated • 4.91k • 36
How to use imTak/whisper_large_v3_turbo_Korean2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="imTak/whisper_large_v3_turbo_Korean2") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("imTak/whisper_large_v3_turbo_Korean2")
model = AutoModelForSpeechSeq2Seq.from_pretrained("imTak/whisper_large_v3_turbo_Korean2", device_map="auto")This model is a fine-tuned version of imTak/whisper_large_v3_ko_ft on the Zeroth-Korean 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 | Wer |
|---|---|---|---|---|
| 0.1068 | 0.7184 | 1000 | 0.1216 | 8.6132 |
| 0.0388 | 1.4368 | 2000 | 0.0905 | 5.3606 |
| 0.0089 | 2.1552 | 3000 | 0.0707 | 4.7282 |
| 0.0082 | 2.8736 | 4000 | 0.0670 | 5.2703 |