eai6/bungoma_training
Viewer • Updated • 351 • 9
How to use eai6/whisper-tiny-exp.en with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="eai6/whisper-tiny-exp.en") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("eai6/whisper-tiny-exp.en")
model = AutoModelForSpeechSeq2Seq.from_pretrained("eai6/whisper-tiny-exp.en")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("eai6/whisper-tiny-exp.en")
model = AutoModelForSpeechSeq2Seq.from_pretrained("eai6/whisper-tiny-exp.en")This model is a fine-tuned version of openai/whisper-tiny.en on the Nyansapo AI Dataset 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 |
|---|---|---|---|---|
| 3.2224 | 1.38 | 250 | 0.6100 | 153.0630 |
| 0.545 | 2.76 | 500 | 0.0995 | 662.3814 |
| 0.2906 | 4.14 | 750 | 0.0822 | 650.7334 |
| 0.2063 | 5.52 | 1000 | 0.4549 | 379.5513 |
Base model
openai/whisper-tiny.en
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="eai6/whisper-tiny-exp.en")