google/fleurs
Viewer • Updated • 768k • 64.2k • 407
How to use steja/whisper-small-sindhi with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="steja/whisper-small-sindhi") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("steja/whisper-small-sindhi")
model = AutoModelForSpeechSeq2Seq.from_pretrained("steja/whisper-small-sindhi")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("steja/whisper-small-sindhi")
model = AutoModelForSpeechSeq2Seq.from_pretrained("steja/whisper-small-sindhi")This model is a fine-tuned version of openai/whisper-small on the google/fleurs sd_in 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.0125 | 30.74 | 400 | 0.7639 | 43.5485 |
| 0.0007 | 61.52 | 800 | 0.8301 | 39.4873 |
| 0.0003 | 92.3 | 1200 | 0.8761 | 39.3604 |
| 0.0002 | 123.07 | 1600 | 0.8949 | 39.3604 |
| 0.0002 | 153.81 | 2000 | 0.9013 | 39.4196 |
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="steja/whisper-small-sindhi")