openslr/librispeech_asr
Viewer • Updated • 585k • 86.8k • 228
How to use ashesicsis1/xlsr-english with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="ashesicsis1/xlsr-english") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("ashesicsis1/xlsr-english")
model = AutoModelForCTC.from_pretrained("ashesicsis1/xlsr-english")This model is a fine-tuned version of facebook/wav2vec2-xls-r-300m on the librispeech_asr 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 |
|---|---|---|---|---|
| 3.2453 | 2.37 | 400 | 0.5789 | 0.4447 |
| 0.3736 | 4.73 | 800 | 0.3737 | 0.2850 |
| 0.1712 | 7.1 | 1200 | 0.3038 | 0.2136 |
| 0.117 | 9.47 | 1600 | 0.3016 | 0.2072 |
| 0.0897 | 11.83 | 2000 | 0.3158 | 0.1920 |
| 0.074 | 14.2 | 2400 | 0.3137 | 0.1831 |
| 0.0595 | 16.57 | 2800 | 0.2967 | 0.1745 |
| 0.0493 | 18.93 | 3200 | 0.3192 | 0.1670 |
| 0.0413 | 21.3 | 3600 | 0.3176 | 0.1644 |
| 0.0322 | 23.67 | 4000 | 0.3079 | 0.1598 |
| 0.0296 | 26.04 | 4400 | 0.2978 | 0.1511 |
| 0.0235 | 28.4 | 4800 | 0.3098 | 0.1451 |