mozilla-foundation/common_voice_13_0
Updated • 2.5k • 4
How to use JunWorks/whisper-small-zhTW with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="JunWorks/whisper-small-zhTW") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("JunWorks/whisper-small-zhTW")
model = AutoModelForSpeechSeq2Seq.from_pretrained("JunWorks/whisper-small-zhTW")This model is a fine-tuned version of openai/whisper-small on the Common Voice 13.0 dataset. It achieves the following results on the evaluation set:
Loss: 0.2504
Cer: 10.4045
But when loaded CER = 10.3295
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Cer |
|---|---|---|---|---|
| 0.0898 | 1.38 | 1000 | 0.1981 | 11.5149 |
| 0.0283 | 2.75 | 2000 | 0.1991 | 10.3994 |
| 0.0037 | 4.13 | 3000 | 0.2141 | 10.5107 |
| 0.0038 | 5.5 | 4000 | 0.2237 | 10.4252 |
| 0.0033 | 6.88 | 5000 | 0.2263 | 10.3062 |
| 0.0004 | 8.25 | 6000 | 0.2339 | 10.8238 |
| 0.0003 | 9.63 | 7000 | 0.2400 | 10.4252 |
| 0.0002 | 11.0 | 8000 | 0.2451 | 10.5262 |
| 0.0002 | 12.38 | 9000 | 0.2487 | 10.3605 |
| 0.0002 | 13.76 | 10000 | 0.2504 | 10.4045 |
Base model
openai/whisper-small