Hani89/medical_asr_recording_dataset
Viewer • Updated • 6.66k • 1.05k • 11
How to use Dev372/HarshDev-whisper-tiny-English_2000_new with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Dev372/HarshDev-whisper-tiny-English_2000_new") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Dev372/HarshDev-whisper-tiny-English_2000_new")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Dev372/HarshDev-whisper-tiny-English_2000_new")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Dev372/HarshDev-whisper-tiny-English_2000_new")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Dev372/HarshDev-whisper-tiny-English_2000_new")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.0076 | 3.0030 | 1000 | 0.1181 | 7.3734 |
| 0.0003 | 6.0060 | 2000 | 0.1122 | 7.0237 |
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-tiny-English_2000_new")