Hani89/medical_asr_recording_dataset
Viewer • Updated • 6.66k • 1.07k • 11
How to use Dev372/HarshDev-whisper-base-English_2000 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Dev372/HarshDev-whisper-base-English_2000") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Dev372/HarshDev-whisper-base-English_2000")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Dev372/HarshDev-whisper-base-English_2000")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Dev372/HarshDev-whisper-base-English_2000")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Dev372/HarshDev-whisper-base-English_2000")This model is a fine-tuned version of openai/whisper-small.en on the Medical 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.0566 | 3.0030 | 1000 | 0.1344 | 9.0419 |
| 0.009 | 6.0060 | 2000 | 0.1242 | 8.5027 |
Base model
openai/whisper-small.en
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Dev372/HarshDev-whisper-base-English_2000")