yashtiwari/PaulMooney-Medical-ASR-Data
Viewer • Updated • 6.66k • 470 • 9
How to use davidwei111/whisper-medium-medical with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="davidwei111/whisper-medium-medical") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("davidwei111/whisper-medium-medical")
model = AutoModelForSpeechSeq2Seq.from_pretrained("davidwei111/whisper-medium-medical")This model is a fine-tuned version of openai/whisper-medium on the Medical ASR 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.4859 | 0.5405 | 100 | 0.1945 | 15.5926 |
| 0.1037 | 1.0811 | 200 | 0.0849 | 12.5754 |
| 0.0558 | 1.6216 | 300 | 0.0633 | 17.3787 |
| 0.0244 | 2.1622 | 400 | 0.0631 | 13.7581 |
| 0.0123 | 2.7027 | 500 | 0.0577 | 16.0270 |
Base model
openai/whisper-medium