openslr/librispeech_asr
Viewer • Updated • 585k • 99.5k • 222
How to use Pageee/FT-English-10me with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Pageee/FT-English-10me") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Pageee/FT-English-10me")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Pageee/FT-English-10me")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.6138 | 18.1818 | 100 | 0.8199 | 3.4102 |
| 0.5068 | 36.3636 | 200 | 0.7678 | 3.4367 |
| 0.3871 | 54.5455 | 300 | 0.6937 | 3.4632 |
| 0.3179 | 72.7273 | 400 | 0.6497 | 3.4530 |
| 0.277 | 90.9091 | 500 | 0.6270 | 3.4591 |
| 0.2598 | 109.0909 | 600 | 0.6197 | 3.4591 |
Base model
openai/whisper-small