PolyAI/minds14
Viewer • Updated • 16.3k • 6.57k • 103
How to use sugafree/whisper-tiny-en with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="sugafree/whisper-tiny-en") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("sugafree/whisper-tiny-en")
model = AutoModelForSpeechSeq2Seq.from_pretrained("sugafree/whisper-tiny-en")This model is a fine-tuned version of openai/whisper-tiny on the PolyAI minds14 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 Ortho | Wer |
|---|---|---|---|---|---|
| No log | 0.54 | 15 | 0.5404 | 0.3646 | 0.3512 |
| 0.2486 | 1.07 | 30 | 0.5320 | 0.3664 | 0.3554 |
| 0.2486 | 1.61 | 45 | 0.5354 | 0.3603 | 0.3512 |
Base model
openai/whisper-tiny