google/fleurs
Viewer • Updated • 768k • 91.9k • 439
How to use Prateekjain24/whisper-large-v2.vi2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Prateekjain24/whisper-large-v2.vi2") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Prateekjain24/whisper-large-v2.vi2")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Prateekjain24/whisper-large-v2.vi2", device_map="auto")This model is a fine-tuned version of openai/whisper-large-v2 on the None 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.0284 | 2.66 | 500 | 0.2743 | 21.3778 |
| 0.0047 | 5.32 | 1000 | 0.2707 | 16.1299 |
| 0.0007 | 7.98 | 1500 | 0.2929 | 12.4846 |
| 0.0004 | 10.64 | 2000 | 0.3040 | 13.3418 |
| 0.0003 | 13.3 | 2500 | 0.3125 | 13.9983 |
| 0.0003 | 15.96 | 3000 | 0.3148 | 13.9211 |
Base model
openai/whisper-large-v2