google/fleurs
Viewer • Updated • 768k • 67.4k • 411
How to use mohamedsaeed823/whisper-small-arbyeg with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="mohamedsaeed823/whisper-small-arbyeg") # Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM
processor = AutoProcessor.from_pretrained("mohamedsaeed823/whisper-small-arbyeg")
model = AutoModelForMultimodalLM.from_pretrained("mohamedsaeed823/whisper-small-arbyeg")# Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM
processor = AutoProcessor.from_pretrained("mohamedsaeed823/whisper-small-arbyeg")
model = AutoModelForMultimodalLM.from_pretrained("mohamedsaeed823/whisper-small-arbyeg")This model is a fine-tuned version of openai/whisper-small on the Fleurs ar_eg 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.058 | 6.6667 | 1000 | 0.3934 | 23.6625 |
| 0.0014 | 13.3333 | 2000 | 0.4452 | 22.9875 |
| 0.0005 | 20.0 | 3000 | 0.4719 | 22.9375 |
| 0.0004 | 26.6667 | 4000 | 0.4820 | 23.1 |
Base model
openai/whisper-small
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="mohamedsaeed823/whisper-small-arbyeg")