devrahulbanjara/ne-en-codeswitching-asr-technical-interview
Viewer • Updated • 799 • 17 • 3
How to use e-horizon/whisper-small-ne-en with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="e-horizon/whisper-small-ne-en") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("e-horizon/whisper-small-ne-en")
model = AutoModelForSpeechSeq2Seq.from_pretrained("e-horizon/whisper-small-ne-en")This model is a fine-tuned version of openai/whisper-small on the ne-en-codeswitching-asr-technical-interview 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 |
|---|---|---|---|---|
| 1.4745 | 2.1739 | 50 | 0.7265 | 49.7521 |
| 0.5425 | 4.3478 | 100 | 0.4280 | 35.2066 |
| 0.1929 | 6.5217 | 150 | 0.3774 | 33.9945 |
| 0.0776 | 8.6957 | 200 | 0.3845 | 33.0028 |
| 0.0324 | 10.8696 | 250 | 0.3955 | 36.7493 |
| 0.0125 | 13.0435 | 300 | 0.3997 | 33.6088 |
| 0.0063 | 15.2174 | 350 | 0.4029 | 32.5620 |
| 0.0045 | 17.3913 | 400 | 0.4103 | 32.2865 |
| 0.0031 | 19.5652 | 450 | 0.4123 | 32.2314 |
| 0.0032 | 21.7391 | 500 | 0.4139 | 32.1763 |
Base model
openai/whisper-small