openslr/librispeech_asr
Viewer • Updated • 585k • 99.5k • 222
How to use Pageee/FT-English-10mb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Pageee/FT-English-10mb") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Pageee/FT-English-10mb")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Pageee/FT-English-10mb")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.0142 | 18.1818 | 100 | 0.2208 | 4.0237 |
| 0.0005 | 36.3636 | 200 | 0.2145 | 4.1583 |
| 0.0002 | 54.5455 | 300 | 0.2162 | 4.2214 |
| 0.0001 | 72.7273 | 400 | 0.2175 | 4.2418 |
| 0.0001 | 90.9091 | 500 | 0.2180 | 4.2581 |
Base model
openai/whisper-small