legacy-datasets/common_voice
Updated • 1.52k • 144
How to use Arnold/wav2vec2-large-xlsr-hausa2-demo-colab with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Arnold/wav2vec2-large-xlsr-hausa2-demo-colab") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("Arnold/wav2vec2-large-xlsr-hausa2-demo-colab")
model = AutoModelForCTC.from_pretrained("Arnold/wav2vec2-large-xlsr-hausa2-demo-colab")This model is a fine-tuned version of facebook/wav2vec2-large-xlsr-53 on the common_voice 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 |
|---|---|---|---|---|
| 6.1549 | 12.5 | 400 | 2.7289 | 1.0 |
| 2.0566 | 25.0 | 800 | 0.4582 | 0.6768 |
| 0.4423 | 37.5 | 1200 | 0.3037 | 0.5138 |
| 0.2991 | 50.0 | 1600 | 0.2993 | 0.4826 |