openslr/librispeech_asr
Viewer • Updated • 585k • 101k • 222
How to use tluo23/speech with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="tluo23/speech") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("tluo23/speech")
model = AutoModelForSpeechSeq2Seq.from_pretrained("tluo23/speech")This model is a fine-tuned version of openai/whisper-small 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 |
|---|---|---|---|---|
| 0.0956 | 0.12 | 1000 | 0.1065 | 3.6519 |
| 0.1002 | 0.24 | 2000 | 0.0997 | 3.5453 |
| 0.0841 | 0.36 | 3000 | 0.0941 | 3.3057 |
| 0.0839 | 0.48 | 4000 | 0.0905 | 3.1783 |
| 0.0821 | 0.6 | 5000 | 0.0855 | 2.9595 |
| 0.0626 | 0.72 | 6000 | 0.0839 | 2.9310 |
| 0.0643 | 0.84 | 7000 | 0.0821 | 2.8112 |
| 0.0908 | 0.97 | 8000 | 0.0813 | 2.8093 |
Base model
openai/whisper-small