sapinsapin/filipinospeechcorpus
Viewer • Updated • 305k • 922 • 2
How to use sapinsapin/whisper-small-fsc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="sapinsapin/whisper-small-fsc") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("sapinsapin/whisper-small-fsc")
model = AutoModelForSpeechSeq2Seq.from_pretrained("sapinsapin/whisper-small-fsc", device_map="auto")openai/whisper-small finetuned for Filipino
(Tagalog/Taglish) on
sapinsapin/filipinospeechcorpus.
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.1793 |
| wer | 0.1591 |
| cer | 0.0706 |
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