hf-internal-testing/librispeech_asr_dummy
Viewer • Updated • 73 • 96.2k • 10
How to use JacobLinCool/wft-test-model-merged with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="JacobLinCool/wft-test-model-merged") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("JacobLinCool/wft-test-model-merged")
model = AutoModelForSpeechSeq2Seq.from_pretrained("JacobLinCool/wft-test-model-merged")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("JacobLinCool/wft-test-model-merged")
model = AutoModelForSpeechSeq2Seq.from_pretrained("JacobLinCool/wft-test-model-merged")This model is a fine-tuned version of openai/whisper-tiny on the hf-internal-testing/librispeech_asr_dummy 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 | Cer | Decode Time | Wer Time | Cer Time |
|---|---|---|---|---|---|---|---|---|
| 2.4107 | 0.1 | 10 | 1.9892 | 303.5433 | 117.1875 | 0.5449 | 0.0307 | 0.0039 |
| 1.2109 | 1.01 | 20 | 1.1659 | 155.1181 | 91.2642 | 0.5278 | 0.0062 | 0.0036 |
| 0.8855 | 1.11 | 30 | 0.8104 | 30.7087 | 56.8182 | 0.4832 | 0.0069 | 0.0041 |
| 0.4367 | 2.02 | 40 | 0.6315 | 25.1969 | 74.5739 | 0.5295 | 0.0058 | 0.0034 |
| 0.4398 | 2.12 | 50 | 0.4566 | 17.3228 | 91.9744 | 0.6078 | 0.0055 | 0.0030 |
| 0.2291 | 3.03 | 60 | 0.3006 | 9.0551 | 100.7102 | 0.5659 | 0.0058 | 0.0031 |
| 0.2281 | 3.13 | 70 | 0.2144 | 7.4803 | 90.4830 | 0.5507 | 0.0046 | 0.0030 |
| 0.111 | 4.04 | 80 | 0.1736 | 5.9055 | 89.3466 | 0.6595 | 0.0063 | 0.0032 |
| 0.0695 | 4.14 | 90 | 0.1345 | 4.7244 | 87.9261 | 0.6369 | 0.0402 | 0.0182 |
| 0.0761 | 5.05 | 100 | 0.1248 | 4.7244 | 92.6847 | 0.5481 | 0.0069 | 0.0040 |
Base model
openai/whisper-tiny
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="JacobLinCool/wft-test-model-merged")