AILAB-VNUHCM/vivos
Updated • 479 • 18
How to use DuyTa/vi_whisper with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="DuyTa/vi_whisper") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("DuyTa/vi_whisper")
model = AutoModelForSpeechSeq2Seq.from_pretrained("DuyTa/vi_whisper")This model is a fine-tuned version of openai/whisper-base on the Vivos dataset. It achieves the following results on the evaluation set:
Finetune Whisper model on Vietnamese Dataset
More information needed
Vivos
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Wer |
|---|---|---|---|---|
| 0.2096 | 1.37 | 1000 | 0.2949 | 32.0383 |
| 0.1205 | 2.74 | 2000 | 0.2548 | 26.8583 |
| 0.0767 | 4.12 | 3000 | 0.2549 | 25.3432 |
| 0.0532 | 5.49 | 4000 | 0.2565 | 25.0583 |
Base model
openai/whisper-base