CoolFace
Modelpublic

Menhaz/distil-whisper-torgo-dysarthric

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes3downloads
Model Card

distil-whisper fine-tuned on TORGO (Dysarthric Speech)

Fine-tuned from distil-whisper/distil-large-v3 on the TORGO dysarthric speech corpus. Only dysarthric speakers were used for training and evaluation.

Usage

python
from transformers import pipeline

pipe = pipeline(
    "automatic-speech-recognition",
    model="Menhaz/distil-whisper-torgo-dysarthric",
)
result = pipe("your_audio.wav")
print(result["text"])