Dev372/Medical_STT_Dataset_1.1
Viewer • Updated • 7.96k • 64 • 2
How to use Dev372/Medical_tiny_en_1_1v_check_train 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_1v_check_train") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Dev372/Medical_tiny_en_1_1v_check_train")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Dev372/Medical_tiny_en_1_1v_check_train")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Dev372/Medical_tiny_en_1_1v_check_train")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Dev372/Medical_tiny_en_1_1v_check_train")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 |
|---|---|---|---|---|
| 1.3263 | 0.2825 | 100 | 1.1474 | 12.0219 |
| 0.8292 | 0.5650 | 200 | 0.8086 | 9.9840 |
| 0.5971 | 0.8475 | 300 | 0.5736 | 9.0597 |
| 0.2888 | 1.1299 | 400 | 0.3038 | 8.2465 |
| 0.172 | 1.4124 | 500 | 0.2112 | 7.5835 |
| 0.1499 | 1.6949 | 600 | 0.1839 | 7.0773 |
| 0.1347 | 1.9774 | 700 | 0.1693 | 6.6691 |
| 0.0977 | 2.2599 | 800 | 0.1650 | 6.7834 |
| 0.0966 | 2.5424 | 900 | 0.1578 | 7.0381 |
| 0.0877 | 2.8249 | 1000 | 0.1542 | 6.6462 |
| 0.0587 | 3.1073 | 1100 | 0.1539 | 6.5090 |
| 0.0642 | 3.3898 | 1200 | 0.1531 | 6.5646 |
| 0.0597 | 3.6723 | 1300 | 0.1518 | 6.5090 |
| 0.0754 | 3.9548 | 1400 | 0.1511 | 6.5254 |
| 0.0506 | 4.2373 | 1500 | 0.1509 | 6.5548 |
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_1v_check_train")