SEACrowd/jv_id_tts
Updated • 76
How to use bagasshw/whisper-tiny with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="bagasshw/whisper-tiny") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("bagasshw/whisper-tiny")
model = AutoModelForSpeechSeq2Seq.from_pretrained("bagasshw/whisper-tiny")This model is a fine-tuned version of openai/whisper-tiny on the jv_id_tts 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 |
|---|---|---|---|---|
| 0.3173 | 1.7123 | 500 | 0.4364 | 30.1774 |
| 0.0564 | 3.4247 | 1000 | 0.3388 | 22.7929 |
| 0.0202 | 5.1370 | 1500 | 0.3240 | 20.8746 |
| 0.0055 | 6.8493 | 2000 | 0.3174 | 20.4620 |
| 0.003 | 8.5616 | 2500 | 0.3168 | 20.1526 |
Base model
openai/whisper-tiny