mozilla-foundation/common_voice_17_0
Updated • 4.86k • 36
How to use pother/whisper-th-small-bio-finetuned with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="pother/whisper-th-small-bio-finetuned") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("pother/whisper-th-small-bio-finetuned")
model = AutoModelForSpeechSeq2Seq.from_pretrained("pother/whisper-th-small-bio-finetuned", device_map="auto")This model is a fine-tuned version of biodatlab/whisper-th-small-combined on the Common Voice 17.0 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.3362 | 0.2175 | 1000 | 0.1439 | 0.6061 |
| 0.2993 | 0.4349 | 2000 | 0.1230 | 0.5645 |
| 0.2523 | 0.6524 | 3000 | 0.1080 | 0.5299 |
| 0.2823 | 0.8698 | 4000 | 0.0939 | 0.4914 |
| 0.2459 | 1.0873 | 5000 | 0.0840 | 0.4570 |
| 0.2005 | 1.3047 | 6000 | 0.0776 | 0.4364 |
| 0.2081 | 1.5222 | 7000 | 0.0724 | 0.4157 |
| 0.1918 | 1.7396 | 8000 | 0.0702 | 0.4132 |
Base model
openai/whisper-small