intronhealth/afrispeech-200
Updated • 1.32k • 33
How to use Ru3ll/dsn_afrispeech-shuffle with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Ru3ll/dsn_afrispeech-shuffle") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Ru3ll/dsn_afrispeech-shuffle")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Ru3ll/dsn_afrispeech-shuffle")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Ru3ll/dsn_afrispeech-shuffle")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Ru3ll/dsn_afrispeech-shuffle")This model is a fine-tuned version of ru3ll/dsn_afrispeech2/whisper-small on the Afrispeech-200 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.6516 | 0.5 | 249 | 0.6065 | 23.3294 |
| 0.8152 | 1.0 | 498 | 0.5952 | 23.8251 |
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Ru3ll/dsn_afrispeech-shuffle")