mozilla-foundation/common_voice_17_0
Updated • 6.1k • 18
How to use conevonce/whisper-small-id3 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="conevonce/whisper-small-id3") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("conevonce/whisper-small-id3")
model = AutoModelForSpeechSeq2Seq.from_pretrained("conevonce/whisper-small-id3")This model is a fine-tuned version of openai/whisper-small on the Common Voice 17.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 | Wer |
|---|---|---|---|---|
| 0.2139 | 1.9231 | 1000 | 0.2519 | 17.5089 |
| 0.0278 | 3.8462 | 2000 | 0.2925 | 17.9359 |
| 0.0052 | 5.7692 | 3000 | 0.3140 | 17.5043 |
| 0.0017 | 7.6923 | 4000 | 0.3356 | 17.4857 |
| 0.0013 | 9.6154 | 5000 | 0.3414 | 17.3697 |
Base model
openai/whisper-small