Dev372/Medical_STT_Dataset_1.0
Viewer • Updated • 2.22k • 21 • 2
How to use Dev372/Medical_tiny_en_1_0v with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Dev372/Medical_tiny_en_1_0v") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Dev372/Medical_tiny_en_1_0v")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Dev372/Medical_tiny_en_1_0v")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Dev372/Medical_tiny_en_1_0v")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Dev372/Medical_tiny_en_1_0v")This model is a fine-tuned version of openai/whisper-tiny.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.0554 | 5.0505 | 500 | 0.0921 | 5.2253 |
| 0.0044 | 10.1010 | 1000 | 0.0996 | 5.8059 |
| 0.0015 | 15.1515 | 1500 | 0.1018 | 6.2007 |
Base model
openai/whisper-tiny.en
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Dev372/Medical_tiny_en_1_0v")