mozilla-foundation/common_voice_13_0
Updated • 1.68k • 5
How to use tjddn0402/following-whisper-tutorial with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="tjddn0402/following-whisper-tutorial") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("tjddn0402/following-whisper-tutorial")
model = AutoModelForSpeechSeq2Seq.from_pretrained("tjddn0402/following-whisper-tutorial")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:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Cer | Wer |
|---|---|---|---|---|---|
| 0.2858 | 5.26 | 100 | 0.4512 | 1.1681 | 0.9869 |
| 0.0058 | 10.53 | 200 | 0.3578 | 1.0637 | 0.8610 |
| 0.0012 | 15.79 | 300 | 0.3699 | 0.9535 | 0.9225 |
| 0.0009 | 21.05 | 400 | 0.3759 | 1.0149 | 0.9809 |
| 0.0008 | 26.32 | 500 | 0.3779 | 1.0055 | 0.9688 |
Base model
openai/whisper-small