openslr/librispeech_asr
Viewer • Updated • 585k • 99.5k • 222
How to use Pageee/FT-English-10mc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Pageee/FT-English-10mc") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Pageee/FT-English-10mc")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Pageee/FT-English-10mc")This model is a fine-tuned version of openai/whisper-small on the librispeech 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.513 | 18.1818 | 100 | 0.7542 | 3.4448 |
| 0.2777 | 36.3636 | 200 | 0.6097 | 3.4693 |
| 0.0349 | 54.5455 | 300 | 0.3976 | 3.5732 |
| 0.0049 | 72.7273 | 400 | 0.3744 | 3.6324 |
| 0.0035 | 90.9091 | 500 | 0.3711 | 3.6527 |
Base model
openai/whisper-small