mozilla-foundation/common_voice_17_0
Updated • 5.16k • 33
How to use hyangilam/0.0.2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="hyangilam/0.0.2") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("hyangilam/0.0.2")
model = AutoModelForSpeechSeq2Seq.from_pretrained("hyangilam/0.0.2", device_map="auto")This model is a fine-tuned version of openai/whisper-large-v3-turbo 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 | Cer |
|---|---|---|---|---|
| 0.0024 | 43.4783 | 1000 | 0.5080 | 11.2617 |
| 0.0001 | 86.9565 | 2000 | 0.5336 | 10.3515 |
| 0.0001 | 130.4348 | 3000 | 0.5476 | 10.3031 |
| 0.0 | 173.9130 | 4000 | 0.5527 | 10.4193 |
Base model
openai/whisper-large-v3