mozilla-foundation/common_voice_13_0
Updated • 2.55k • 4
How to use rahafvii/ABG_STT with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="rahafvii/ABG_STT") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("rahafvii/ABG_STT")
model = AutoModelForSpeechSeq2Seq.from_pretrained("rahafvii/ABG_STT")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("rahafvii/ABG_STT")
model = AutoModelForSpeechSeq2Seq.from_pretrained("rahafvii/ABG_STT")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 | Wer |
|---|---|---|---|---|
| 0.3476 | 0.4148 | 1000 | 0.4130 | 52.3435 |
| 0.2522 | 0.8295 | 2000 | 0.3676 | 49.2305 |
| 0.1606 | 1.2443 | 3000 | 0.3475 | 44.8855 |
| 0.161 | 1.6591 | 4000 | 0.3384 | 44.4075 |
Base model
openai/whisper-small
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="rahafvii/ABG_STT")