mozilla-foundation/common_voice_13_0
Updated • 2.45k • 4
How to use JunWorks/whisper-base-zhTW with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="JunWorks/whisper-base-zhTW") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("JunWorks/whisper-base-zhTW")
model = AutoModelForSpeechSeq2Seq.from_pretrained("JunWorks/whisper-base-zhTW")This model is a fine-tuned version of openai/whisper-base on the Common Voice 13.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.0772 | 1.38 | 1000 | 0.3230 | 17.4367 |
| 0.0436 | 2.75 | 2000 | 0.3191 | 16.4661 |
| 0.0111 | 4.13 | 3000 | 0.3343 | 16.5334 |
| 0.0078 | 5.5 | 4000 | 0.3403 | 16.6369 |
Base model
openai/whisper-base