okezieowen/misc_naija_english_audio
Viewer • Updated • 3.36k • 20 • 1
How to use EYEDOL/english-ASR2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="EYEDOL/english-ASR2") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("EYEDOL/english-ASR2")
model = AutoModelForSpeechSeq2Seq.from_pretrained("EYEDOL/english-ASR2")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("EYEDOL/english-ASR2")
model = AutoModelForSpeechSeq2Seq.from_pretrained("EYEDOL/english-ASR2")This model is a fine-tuned version of EYEDOL/english-ASR on the misc_naija_english 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.0001 | 8.9286 | 3000 | 0.0001 | 0.8855 |
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="EYEDOL/english-ASR2")