sapinsapin/pld
Viewer • Updated • 334k • 35
How to use sapinsapin/whisper-small-pld-eng with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="sapinsapin/whisper-small-pld-eng") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("sapinsapin/whisper-small-pld-eng")
model = AutoModelForSpeechSeq2Seq.from_pretrained("sapinsapin/whisper-small-pld-eng", device_map="auto")openai/whisper-small finetuned on
sapinsapin/pld.
Trained for 2000 steps on 10000 clips (batch 8×2, lr 1e-05, fp16 + gradient checkpointing). WER/CER are on the held-out split, lowercased; CER is the model-selection metric (Taglish orthography varies at the word level).
| metric | value |
|---|---|
| loss | 0.1049 |
| wer | 0.0588 |
| cer | 0.0307 |
Trained with finetune_asr.py from the
halohalo pipeline; the dataset
adapter normalizes each corpus to (audio@16k, text, speaker_id) so corpora
are swappable with a --dataset flag.
Base model
openai/whisper-small