SEACrowd/jv_id_tts
Updated • 76
How to use bagasshw/whisper-large-v2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="bagasshw/whisper-large-v2") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("bagasshw/whisper-large-v2")
model = AutoModelForSpeechSeq2Seq.from_pretrained("bagasshw/whisper-large-v2")This model is a fine-tuned version of openai/whisper-large-v2 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.2752 | 0.8587 | 1000 | 0.2629 | 18.0899 |
| 0.1117 | 1.7170 | 2000 | 0.2091 | 14.7071 |
| 0.0656 | 2.5754 | 3000 | 0.1855 | 12.2112 |
| 0.0294 | 3.4337 | 4000 | 0.1709 | 10.8911 |
| 0.0182 | 4.2920 | 5000 | 0.1662 | 10.4992 |
| 0.01 | 5.1503 | 6000 | 0.1709 | 10.0660 |
| 0.0084 | 6.0086 | 7000 | 0.1681 | 9.6328 |
| 0.0057 | 6.8673 | 8000 | 0.1689 | 9.0965 |
| 0.0019 | 7.7256 | 9000 | 0.1780 | 9.2409 |
| 0.0005 | 8.5839 | 10000 | 0.1792 | 9.2409 |
Base model
openai/whisper-large-v2