PolyAI/minds14
Viewer • Updated • 16.3k • 9.96k • 105
How to use EbisuRyu/whisper-tiny with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="EbisuRyu/whisper-tiny") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("EbisuRyu/whisper-tiny")
model = AutoModelForSpeechSeq2Seq.from_pretrained("EbisuRyu/whisper-tiny")This model is a fine-tuned version of openai/whisper-tiny on the 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 |
|---|---|---|---|---|---|
| 0.7132 | 7.1429 | 200 | 0.4647 | 0.3554 | 0.3477 |
| 0.0044 | 14.2857 | 400 | 0.5662 | 0.3520 | 0.3471 |
| 0.0006 | 21.4286 | 600 | 0.5970 | 0.3540 | 0.3509 |
| 0.0004 | 28.5714 | 800 | 0.6191 | 0.3547 | 0.3515 |
| 0.0002 | 35.7143 | 1000 | 0.6368 | 0.3540 | 0.3522 |
Base model
openai/whisper-tiny