CoolFace
Modelpublic

hamaada/whisper-finetuned-somali-stt

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
1likes51downloads
Model Card

Somali ASR (Whisper)

This is a Whisper-based Automatic Speech Recognition (ASR) model fine-tuned on Somali language using the 8 Hours dataset. The model converts Somali speech to text.

๐Ÿง  Model Details

  • โ€”Language: Somali (so)
  • โ€”Trained on: 8 hours of Somali speech data
  • โ€”Framework: ๐Ÿค— Transformers

๐Ÿ“ˆ Key Metrics:

  • โ€”Final WER: 0.231513
  • โ€”Final Training Loss: 0.042500
  • โ€”Final Validation Loss: 0.2177218

๐Ÿ—ฃ๏ธ Usage

To use the model, simply load it via the Hugging Face pipeline:

python
from transformers import pipeline

# Load the Somali ASR model
asr = pipeline("automatic-speech-recognition", model="hamaada/whisper-finetuned-somali-stt")

# Transcribe audio file to text
result = asr("path_to_somali_audio.wav")

# Output the transcribed text
print(result['text'])