openslr/librispeech_asr
Viewer • Updated • 585k • 109k • 228
How to use suhas-hegde5/wav2vec2-librispeech-demo with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="suhas-hegde5/wav2vec2-librispeech-demo") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("suhas-hegde5/wav2vec2-librispeech-demo")
model = AutoModelForCTC.from_pretrained("suhas-hegde5/wav2vec2-librispeech-demo")This model is a fine-tuned version of facebook/wav2vec2-large-lv60 on the LIBRISPEECH_ASR - CLEAN 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 |
|---|---|---|---|---|
| No log | 0.6329 | 100 | 3.9409 | 1.0 |
| No log | 1.2658 | 200 | 3.0441 | 1.0 |
| No log | 1.8987 | 300 | 2.9165 | 1.0 |
| No log | 2.5316 | 400 | 1.4925 | 1.9968 |
| 3.7012 | 3.1646 | 500 | 0.3010 | 1.9446 |
| 3.7012 | 3.7975 | 600 | 0.1713 | 1.8259 |
| 3.7012 | 4.4304 | 700 | 0.0990 | 1.6163 |
| 3.7012 | 5.0633 | 800 | 0.0692 | 1.5439 |
| 3.7012 | 5.6962 | 900 | 0.0463 | 1.4233 |
| 0.1686 | 6.3291 | 1000 | 0.0389 | 1.3469 |
| 0.1686 | 6.9620 | 1100 | 0.0290 | 1.3101 |
| 0.1686 | 7.5949 | 1200 | 0.0204 | 1.1994 |
| 0.1686 | 8.2278 | 1300 | 0.0161 | 1.1839 |
| 0.1686 | 8.8608 | 1400 | 0.0143 | 1.1499 |
| 0.0553 | 9.4937 | 1500 | 0.0110 | 1.1460 |
| 0.0553 | 10.1266 | 1600 | 0.0082 | 1.0953 |
| 0.0553 | 10.7595 | 1700 | 0.0088 | 1.1119 |
| 0.0553 | 11.3924 | 1800 | 0.0059 | 1.0574 |
| 0.0553 | 12.0253 | 1900 | 0.0054 | 1.0510 |
| 0.0295 | 12.6582 | 2000 | 0.0042 | 1.0356 |
| 0.0295 | 13.2911 | 2100 | 0.0039 | 1.0360 |
| 0.0295 | 13.9241 | 2200 | 0.0033 | 1.0269 |
| 0.0295 | 14.5570 | 2300 | 0.0031 | 1.0237 |
Base model
facebook/wav2vec2-large-lv60