SherwinDesouza/pashto-common-voice-20
Viewer • Updated • 49.9k • 18
How to use afaaaak/whisper-base-ps with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="afaaaak/whisper-base-ps") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("afaaaak/whisper-base-ps")
model = AutoModelForSpeechSeq2Seq.from_pretrained("afaaaak/whisper-base-ps")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("afaaaak/whisper-base-ps")
model = AutoModelForSpeechSeq2Seq.from_pretrained("afaaaak/whisper-base-ps")This model is a fine-tuned version of openai/whisper-base on the Common Voice 20.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.2602 | 5.9199 | 1000 | 0.6856 | 54.0707 |
Base model
openai/whisper-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="afaaaak/whisper-base-ps")